Here is a list of stuff I routinely find useful.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PowerShell Module for uploading files to FileLocker | |
# Greg McCoy gmccoy@purdue.edu | |
# 15 May 2020 | |
function Sign-In { | |
param( | |
[Parameter(Mandatory=$true)] [string]$Key, | |
[Parameter(Mandatory=$true)] [string]$User | |
) | |