Jump to content

slmgr.vbs problems


ondrovic
 Share

Recommended Posts

I have been trying to get slmgr.vbs to work from autoit but cant seem to get the darn thing to work

here is my code

$prodkey = "00000-00000-00000-00000-00000"
Func _rekey($key)
RunWait(@ComSpec & " /c " & "cscript %windir%\system32\slmgr.vbs /ipk " & $key, "", @SW_SHOW)
RunWait(@ComSpec & " /c " & "cscript %windir%\system32\slmgr.vbs /ato","",@SW_SHOW)
EndFunc
_rekey($prodkey)

I am sure I have the syntax correct

Windows Software Licensing Management Tool

Usage: slmgr.vbs [MachineName [user Password]] [<Option>]

MachineName: Name of remote machine (default is local machine)

User: Account with required privilege on remote machine

Password: password for the previous account

Global Options:

/ipk <Product Key>

Install product key (replaces existing key)

/ato [Activation ID]

Activate Windows

/dli [Activation ID | All]

Display license information (default: current license)

/dlv [Activation ID | All]

Display detailed license information (default: current license)

/xpr [Activation ID]

Expiration date for current license state

Edited by ondrovic
Link to comment
Share on other sites

  • 6 years later...

As a pointer, this works for me on widows 10 

$iPID = Run(@ComSpec & " /K " & "cscript %windir%\system32\slmgr.vbs /dlv", "", @SW_SHOW)

If you want to capture the output then this works

#include <AutoItConstants.au3>

$iPID = Run(@ComSpec & " /c " & "cscript %windir%\system32\slmgr.vbs /dlv", "", @SW_HIDE,  $STDOUT_CHILD)
$sOutput = ""

While 1
    $sOutput &= StdoutRead($iPID)
    If @error Then ExitLoop
WEnd

MsgBox(0, "Licencing Information", $sOutput)

To insert a product key you may need admin rights, I'm not sure.

Edited by bolthead
Better example
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...