Skip to content

Instantly share code, notes, and snippets.

@nanoDBA
Last active February 27, 2019 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanoDBA/5d112fc2e3600954779ff1f5b82e4b4b to your computer and use it in GitHub Desktop.
Save nanoDBA/5d112fc2e3600954779ff1f5b82e4b4b to your computer and use it in GitHub Desktop.
Install Nuget if it's not already there - haven't tested this yet
<# Install Nuget for Allusers if it's not already there #>if (-not (Get-PackageProvider -Name NuGet -ListAvailable -ErrorAction:SilentlyContinue )) { Install-PackageProvider -Name NuGet -Force -Scope AllUsers }
# modified from https://gist.github.com/RobCannon/12f338f00ce906fb4d43ee472c6a1389
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment