我编写了一个 ps1 脚本来自动安装一些软件包,但奇怪的是当我运行用于执行 SEP(Symantec Endpoint Protection)的 .exe 文件的命令片段时,它执行得很好,但是当我执行整个脚本时,它确实运行命令片段。我只运行一个简单的 .exe 文件,即使我手动运行它,它也不会显示任何安装程序,而是在后台静默安装。所以在脚本中,我只运行 .exe 文件,就是这样。我应该给出任何等待时间或任何其他输入吗?
Start-Process -Wait -FilePath "C:\Temp\Symantec-Windows\SEP 14.3.3384.1000 x64.exe" -passthru
$SymVersion = Get-WmiObject -Class Win32_Product -ComputerName $hostname | Where-Object -FilterScript {$_.Name -eq "symantec endpoint protection"} | Format-List -Property version, InstallState, name
echo $SymVersion
if($SymVersion)
{
echo 'Symantec is successfully installed' -ForegroundColor Green
}
else
{
echo 'Symantec is not successfully installed' -ForegroundColor Red
}