Remote Install MSI

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche

Hier wird gezeigt wie man eine MSI oder PowerShell-Session, psexec.exe oder MSIexec.exe installiert -> So zusagen PowerShell-Only.


Remote Install MSI (Invoke-WmiMethod)

Beispiel-Hostnamen (Source/Share): xyz0001
Beispiel-Hostnamen (Destination): xyz0002
Beispiel-Software: Zabbix

# Variablen
$SourcePath="\\xyz0001\d$\temp\test-rhe\"
$SourceMSI="zabbix_agent-3.2.3_x64.msi"
$SourceFull=$SourcePath+$SourceMSI
$DestinationComputer="xyz0002"
$DestinationPath="\\$DestinationComputer\c$\Temp\test-rhe\zabbix_agent-3.2.3_x64.msi"
 
# Skript
Copy-Item -Path $SourceFull -Destination $DestinationPath
Invoke-WmiMethod -Path Win32_Product -Name Install -ComputerName $DestinationComputer -ArgumentList @($true,$null,"$DestinationPath")
Remove-Item -path  $DestinationPath

Alternative: PowerShell Sysinternals-Tools