Remote Install MSI

Aus Wiki-WebPerfect
Version vom 13. Februar 2017, 09:57 Uhr von Admin (Diskussion | Beiträge)

(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Wechseln zu: Navigation, Suche

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


Install with 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