使用 Powershell invoke-expression 在所有域计算机上卸载 Java
Using Powershell invoke-expression to uninstall Java on all domain computers
我可以ps-session到远程机器,运行以下,并成功卸载Java:
invoke-expression "msiexec /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}' "
我正在尝试创建一个将从所有域计算机卸载的脚本:
Import-Module ActiveDirectory
function uninstallJava {
$badcomp = @()
$CompList = Get-ADComputer -Filter 'name -like "*"' | select -ExpandProperty Name
foreach ($c in $CompList) {
Try {
Enter-PSSession -ComputerName $computer
Invoke-expression "msiexec.exe /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}' "
}
Catch {
$badcomp += $c
}
}
}
uninstallJava
"the following servers could not be reached:"
$badcomp
我没有收到任何错误,但它不会从远程计算机上卸载 Java。
任何想法表示赞赏。
Import-Module ActiveDirectory
$badcomp = @()
Function uninstallJava {
$CompList = Get-ADComputer -Filter 'name -like "*"' | Select -ExpandProperty Name
ForEach ($c In $CompList) {
Try {
Invoke-Command -ComputerName $c {
C:\Windows\System32\cmd.exe /C msiexec.exe /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}'
}
} Catch {
$badcomp += $c
}
}
}
uninstallJava
Write-Host "the following servers could not be reached:"
$badcomp
您应该使用 Invoke-Command
,而不是 Enter-PSSession
。后者用于在另一台机器上交互工作。前者用于 运行 另一台机器中的命令并返回结果(如果有)。
基本上,您的 try 块应该如下所示:
Try {
Invoke-Command -ComputerName $c -ScriptBlock { msiexec.exe /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}' }
}
如果您想要更详细的控制和错误信息,请考虑 using WMI to uninstall the product 而不是去 msiexec
。
我可以ps-session到远程机器,运行以下,并成功卸载Java:
invoke-expression "msiexec /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}' "
我正在尝试创建一个将从所有域计算机卸载的脚本:
Import-Module ActiveDirectory
function uninstallJava {
$badcomp = @()
$CompList = Get-ADComputer -Filter 'name -like "*"' | select -ExpandProperty Name
foreach ($c in $CompList) {
Try {
Enter-PSSession -ComputerName $computer
Invoke-expression "msiexec.exe /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}' "
}
Catch {
$badcomp += $c
}
}
}
uninstallJava
"the following servers could not be reached:"
$badcomp
我没有收到任何错误,但它不会从远程计算机上卸载 Java。
任何想法表示赞赏。
Import-Module ActiveDirectory
$badcomp = @()
Function uninstallJava {
$CompList = Get-ADComputer -Filter 'name -like "*"' | Select -ExpandProperty Name
ForEach ($c In $CompList) {
Try {
Invoke-Command -ComputerName $c {
C:\Windows\System32\cmd.exe /C msiexec.exe /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}'
}
} Catch {
$badcomp += $c
}
}
}
uninstallJava
Write-Host "the following servers could not be reached:"
$badcomp
您应该使用 Invoke-Command
,而不是 Enter-PSSession
。后者用于在另一台机器上交互工作。前者用于 运行 另一台机器中的命令并返回结果(如果有)。
基本上,您的 try 块应该如下所示:
Try {
Invoke-Command -ComputerName $c -ScriptBlock { msiexec.exe /q /x '{26A24AE4-039D-4CA4-87B4-2F83218025F0}' }
}
如果您想要更详细的控制和错误信息,请考虑 using WMI to uninstall the product 而不是去 msiexec
。