0 Pluspunkte 0 Minuspunkte

Ich möchte Windows Lizenzinformationen mit Powershell abfragen.

PS C:\WINDOWS\system32> slmgr.vbs /xpr
PS C:\WINDOWS\system32> slmgr.vbs /dlv

Wie kann ich das aber als Powershell Variablen abfragen?

von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Du kannst die Ausgabe der VBA Scripte in einer Variable speichern.

$licenseStatus = & cscript //nologo $env:SystemRoot\System32\slmgr.vbs /xpr

Die Ausgabe kannst du dann entsprechend parsen.

von (1.1k Punkte)