Jump to content

Recommended Posts

Posted

I am useless at CLI and such, I need t be able to execute the following commands via a batch file or something similar, how do I code te batch file so this executes when run?

 

c:\program files\Microsoft Office\Office14\cscript ospp.vbs /inpkey:xxxxxxxxxx
c:\program files\Microsoft Office\Office14\cscript ospp.vbs /sethst:xxxxxxxxxx
c:\program files\Microsoft Office\Office14\cscript ospp.vbs /act

 

It's so I can change all my office clients from MAK codes to KMS.

 

Also can anyone point me to a useful site that would enable me to learn this black art :)

Posted
I am useless at CLI and such, I need t be able to execute the following commands via a batch file or something similar, how do I code te batch file so this executes when run?

 

c:\program files\Microsoft Office\Office14\cscript ospp.vbs /inpkey:xxxxxxxxxx
c:\program files\Microsoft Office\Office14\cscript ospp.vbs /sethst:xxxxxxxxxx
c:\program files\Microsoft Office\Office14\cscript ospp.vbs /act

 

It's so I can change all my office clients from MAK codes to KMS.

 

Also can anyone point me to a useful site that would enable me to learn this black art :)

 

Try this...

 

CD "c:\program files\Microsoft Office\Office14"
cscript ospp.vbs /inpkey:xxxxxxxxxx
cscript ospp.vbs /sethst:xxxxxxxxxx
cscript ospp.vbs /act

 

HTH

  • Thanks 1
Posted

Even easier, put each line in inverted commas. As long as your path is correct it.

 

"c:\program files\Microsoft Office\Office14\cscript ospp.vbs /inpkey:xxxxxxxxxx"

"c:\program files\Microsoft Office\Office14\cscript ospp.vbs /sethst:xxxxxxxxxx"

"c:\program files\Microsoft Office\Office14\cscript ospp.vbs /act"

 

The issue you'll face is that everytime the computer starts, it will want to run this. This can have disastrous effects on your licence usage.

  • Thanks 1

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



×
×
  • Create New...