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?
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.