ฉันเขียนสคริปต์ PowerShell (ดูด้านล่าง) เพื่อติดตั้งการอัปเดต MSP จำนวนมาก (ไฟล์ที่มี.msp
นามสกุล, ปรับใช้ผ่าน Windows Installer) อย่างใดอย่างหนึ่ง ตอนนี้ฉันต้องการให้สคริปต์นี้บอกฉันด้วยเมื่อการติดตั้งอัพเดต MSP ล้มเหลว
สิ่งที่ฉันได้ลอง: การค้นหารหัสข้อผิดพลาด มีสองวิธี:
- หนึ่งคือการได้รับรหัสข้อผิดพลาดโดยใช้ $ LASTEXITCODE หลังจากทำงาน
MSIEXEC.EXE
โดยตรง มันน่าเบื่อ อื่น ๆ ที่เกี่ยวข้องกับการเพิ่ม
-PassThru
สวิทช์ในการStart-Process
จัดเก็บผลของมันเป็นวัตถุพูดและอ่านรหัสข้อผิดพลาดโดยใช้$a
$a.ExitCode
อย่างนี้:$a=Start-Process msiexec.exe -ArgumentList "/p `"$MspRelPath`" /log `"$LogRelPath`" /passive /norestart" -Wait -PassThru Write-Host $a.ExitCode
ไม่ได้พิสูจน์ว่ามีประโยชน์ ดูเหมือนว่าmsiexec.exe
จะส่งกลับศูนย์เสมอเป็นรหัสทางออก
ในกรณีที่ใครสนใจนี่คือสคริปต์:
param (
[parameter(mandatory=$false)][Switch]$BypassAdminPrompt
)
Try
{
Clear-Host
# Get script name
$ScriptFileObject=(Get-Item $PSCommandPath)
$ScriptName=$ScriptFileObject.Name
$ScriptPath=$ScriptFileObject.DirectoryName
# Load Windows Forms and initialize visual styles
[void][System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
[System.Windows.Forms.Application]::EnableVisualStyles()
# Is the script holding administrative privileges?
$wid=[System.Security.Principal.WindowsIdentity]::GetCurrent()
$prp=new-object System.Security.Principal.WindowsPrincipal($wid)
$adm=[System.Security.Principal.WindowsBuiltInRole]::Administrator
$IsAdmin=$prp.IsInRole($adm)
if ($IsAdmin -eq $false) {
if (!$BypassAdminPrompt) {
Start-Process powershell.exe -ArgumentList "-ExecutionPolicy $env:PSExecutionPolicyPreference -File `"$PSCommandPath`" -BypassAdminPrompt" -Verb RunAs
} else {
$result=[System.Windows.Forms.MessageBox]::Show("This script requires administrative privileges, which are absent.", $ScriptName, "OK", "Error");
}
break;
}
# Install...
Set-Location $ScriptPath
$MSP_list = Get-ChildItem *.msp -Recurse
if ($MSP_list -eq $null) {
$result=[System.Windows.Forms.MessageBox]::Show("Nothing found to install.`rSearch path was "+$ScriptPath, $ScriptName, "OK", "Error");
}
else
{
$MSP_list | ForEach-Object {
# Ordinarily, I'd pass the path in the form of ".\foldername\filename.msp" but Windows Installer does not accept that.
# It must be in "foldername\filename.msp" form.
$MspRelPath = $_.FullName.Substring($ScriptPath.Length+1)
$LogRelPath = $MspRelPath+".log"
Write-Host $MspRelPath
Start-Process msiexec.exe -ArgumentList "/p `"$MspRelPath`" /log `"$LogRelPath`" /passive /norestart" -Wait
}
Remove-Variable MspRelPath
Remove-Variable LogRelPath
Pause
}
Remove-Variable MSP_list
}
Catch
{
$result=[System.Windows.Forms.MessageBox]::Show("Error!`r`r"+$Error[0], $ScriptName, "OK", "Error");
break;
}