Remote Install MSI: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
K
Zeile 21: Zeile 21:
 
</source>
 
</source>
  
 
+
''Alternative: [[PowerShell Sysinternals-Tools]]''
  
  

Version vom 13. Februar 2017, 10:01 Uhr

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

Alternative: PowerShell Sysinternals-Tools