-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstall-KBsFromList.ps1
50 lines (44 loc) · 1.16 KB
/
Install-KBsFromList.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
[CmdletBinding()]
Param(
[Parameter(position=0,mandatory=$true)]
[string]$ListFile,
[string]$KBPath = '.\',
[switch]$Install
)
. .\Write-Log.ps1
Write-Verbose "ListFile=`"$ListFile`""
Write-Verbose "KBPath=`"$KBPath`""
$list = Get-Content $ListFile
if ($Install -ne $true) {
Write-Log 'INFO: -Install switch not specified. Checking KBs exist only.'
}
foreach ($file in $list) {
if ($file.trim() -eq '') {
}
elseif ($file.substring(0,1) -eq '-') {
# do not process
}
elseif ($file.substring(0,1) -eq '#') {
$comment = $file.substring(1)
Write-Log INFO "$comment"
}
else {
$filepath = Join-Path -Path $KBPath -ChildPath $file
if ((Test-Path -Path $filepath -PathType Leaf) -eq $false) {
Write-Log ERROR "FILE NOT FOUND `"$filepath`""
# TODO: try to download it
}
else {
if ($Install -eq $true) {
$argumentList = "`"$filepath`" /quiet /norestart"
$out = Start-Process -FilePath "wusa.exe" -ArgumentList $argumentList -Wait -PassThru -NoNewWindow
if ($out.ExitCode -eq 0) {
Write-Log INFO "INSTALLED: `"$file`""
}
else {
Write-Log ERROR "Installation failed (0x$("{0:x8}" -f $out.ExitCode)) `"$file`""
}
}
}
}
}