-
Notifications
You must be signed in to change notification settings - Fork 0
/
WinPatch.ps1
95 lines (74 loc) · 2.47 KB
/
WinPatch.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<#
.SYNOPSIS
Patch Windows using PowerShell
.DESCRIPTION
Set the following
Use this if Windows Update is not working
Also update Windows Defender
.NOTES
Created by Jauder Ho
Last modified 11/1/2019
https://www.carumba.com
BSD License
Pull requests are welcome.
.LINK
https://www.carumba.com
#>
# Elevate as needed
# https://superuser.com/questions/108207/how-to-run-a-powershell-script-as-administrator
param([switch]$Elevated)
function Test-Admin {
$currentUser = New-Object Security.Principal.WindowsPrincipal $([Security.Principal.WindowsIdentity]::GetCurrent())
$currentUser.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)
}
if ((Test-Admin) -eq $false) {
if ($elevated) {
# tried to elevate, did not work, aborting
}
else {
Start-Process powershell.exe -Verb RunAs -ArgumentList ('-noprofile -noexit -file "{0}" -elevated' -f ($myinvocation.MyCommand.Definition))
}
exit
}
Write-Output 'Running with full privileges...'
function WinPatch {
# Check the version of Windows currently running
#$osVersion = (Get-WmiObject -Class Win32_OperatingSystem).Caption
#$osVersion = (Get-CimInstance -ClassName Win32_OperatingSystem).Caption
$osVersion = [System.Environment]::OSVersion.VersionString
Write-Host "Current OS Version: $osVersion"
# Check if the PSWindowsUpdate module is installed
$module = Get-Module -ListAvailable -Name PSWindowsUpdate
if ($module -eq $null) {
# Install the PSWindowsUpdate module
Install-Module -Name PSWindowsUpdate -Force
}
else {
Update-Module -Name PSWindowsUpdate -Force
}
# Get the list of available updates
$updates = Get-WindowsUpdate
# Display the latest KB
if ($updates.Count -gt 0) {
$latestKB = $updates[0].KB
Write-Host "Latest KB: $latestKB"
}
else {
Write-Host "No updates available."
}
# Download and install the latest patch
Get-WindowsUpdate -AcceptAll -Download
# Get confirmation to proceed with the installation
$confirmation = Read-Host "Do you want to proceed with the installation? (y/n)"
if ($confirmation -eq 'y') {
# Install the updates
Install-WindowsUpdate -AcceptAll -Install
}
else {
Write-Host "Installation cancelled by user."
}
Write-Output 'Patching complete...'
}
WinPatch
Update-MpSignature
Write-Output 'Adjustments complete...'