Commit the file renames

This commit is contained in:
silversword411 2021-03-30 23:43:18 -04:00
parent 63ebfd3210
commit a9b74aa69b
3 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
$ErrorActionPreference = 'silentlycontinue'
if (Get-Module -ListAvailable -Name NuGet) {
Write-Host "NuGet exists"
}
else {
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
}
if (Get-Module -ListAvailable -Name PSWindowsUpdate) {
Write-Host "PSWindowsUpdate exists"
}
else {
Install-Module -Name PSWindowsUpdate -force
}
Set-ExecutionPolicy -ExecutionPolicy Unrestricted
Get-WindowsUpdate -install -acceptall