Jump to content

Recommended Posts

Posted

I have a KMS server running, some of my client machines activate fine off of it and other do not seem to activate.

 

I have written a batch file to manually activate certain machines but I want to automate the process silently when a user logs in, the problem I have is it requires elevated privs to complete and in win 7 you can not run batch files with E-Privs apparantly.

 

the batch file I am using contains commands to specify the KMS server to use, then change the key (even though it should have the built in KMS Key) and then finally the activate command.

 

echo off
%SystemDrive%\Windows\System32\cscript.exe %windir%\system32\slmgr.vbs /skms 10.xx.xx.xx:xxxx
%SystemDrive%\Windows\System32\cscript.exe %windir%\system32\slmgr.vbs /ipk xxxx-xxxx-xxxx-xxxx-xxxx
%SystemDrive%\Windows\System32\cscript.exe %windir%\system32\slmgr.vbs /ato

 

Anyone know of another way to silently complete this task?

 

Thanks

Posted

try this as a STARTUP Script on the pcs not a user script they run as full admin

if exist c:\kmsdone.txt goto end
%SystemDrive%\Windows\System32\cscript.exe %windir%\system32\slmgr.vbs /skms 10.xx.xx.xx:xxxx
%SystemDrive%\Windows\System32\cscript.exe %windir%\system32\slmgr.vbs /ipk xxxx-xxxx-xxxx-xxxx-xxxx
%SystemDrive%\Windows\System32\cscript.exe %windir%\system32\slmgr.vbs /ato
copy \\server\share\kmsdone.txt c:\kmsdone.txt /y

:end

  • Thanks 1
Posted
I ran the batch file as start up on a computer policy but it didn't seem to run, no file was created, if I just run the batch file while logged in as admin it works and everything is dandy. Does not seem to want to run at start up though :(
Posted

Enable this GPO on the machine should make it run

 

Computer Configuration > Policies > Admin Templates > System > Logon > "Always Wait for the network at computer startup and logon"

 

What permissions have you setup on the share the script lives in? Or is it in Netlogon?

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