+ Post New Thread
Results 1 to 8 of 8
Windows Thread, Changing XP License on every machine in the school...... in Technical; Hi, The VLK for the county has got out into the wild and now Microsoft says every one of our ...
  1. #1

    Join Date
    Dec 2009
    Posts
    483
    Thank Post
    60
    Thanked 98 Times in 86 Posts
    Rep Power
    32

    Changing XP License on every machine in the school......

    Hi,

    The VLK for the county has got out into the wild and now Microsoft says every one of our PC's has the wrong License Key. Is there a way to change this across the site in one swoop?

    We could use Jelly Bean but this requires logging onto each machine. Does anyone have any other solution?

    Thanks a lot


  2. IDG Tech News

  3. #2

    Join Date
    Jul 2009
    Posts
    368
    Thank Post
    34
    Thanked 67 Times in 57 Posts
    Rep Power
    43
    Take a look at this thread: XP Pro select Volume License Key - Fails Genuine Validation

    there are a few programs and scripts mentioned which may help you

  4. Thanks to computer_expert from:

    RTFM (14th June 2010)

  5. #3
    p858snake's Avatar
    Join Date
    Dec 2008
    Location
    Queensland
    Posts
    1,392
    Blog Entries
    2
    Thank Post
    28
    Thanked 166 Times in 142 Posts
    Rep Power
    46
    unattended install. stick it in the answer file then sysprep and capture the image and just reimage all the machines.

  6. Thanks to p858snake from:

    RTFM (14th June 2010)

  7. #4

    powdarrmonkey's Avatar
    Join Date
    Feb 2008
    Location
    Alcester, Warwickshire
    Posts
    4,855
    Thank Post
    412
    Thanked 774 Times in 647 Posts
    Rep Power
    168
    Quote Originally Posted by p858snake View Post
    unattended install. stick it in the answer file then sysprep and capture the image and just reimage all the machines.
    But the brief is to avoid visiting every machine.

  8. Thanks to powdarrmonkey from:

    RTFM (14th June 2010)

  9. #5

    Join Date
    Dec 2007
    Location
    cumbria
    Posts
    157
    Thank Post
    6
    Thanked 31 Times in 29 Posts
    Rep Power
    15
    How to change the Volume Licensing product key on a computer that is running Windows XP Service Pack 1 and later versions of Windows XP shows a simple VBScript to update it, which should work OK as a machine startup script.

  10. Thanks to tumbleweed from:

    RTFM (14th June 2010)

  11. #6

    Join Date
    Jun 2009
    Location
    Poole
    Posts
    89
    Thank Post
    3
    Thanked 22 Times in 18 Posts
    Rep Power
    12
    Use a script to copy the answer file to all machines. Then remotely execute the sysprep command. No re-imaging or visiting required.

    Edit: Better answer posted above while I was typing mine.

  12. #7

    Join Date
    Dec 2009
    Posts
    483
    Thank Post
    60
    Thanked 98 Times in 86 Posts
    Rep Power
    32
    Thanks to everyone, i am going to have a read through all the links and go from there, looks very good though!!!

  13. #8

    Join Date
    Jun 2009
    Location
    North
    Posts
    77
    Thank Post
    25
    Thanked 7 Times in 7 Posts
    Rep Power
    9
    Code:
    ' 
    ' WMI Script - ChangeVLKey.vbs
    '
    ' This script changes the product key on the computer
    '
    '***************************************************************************
     
    ON ERROR RESUME NEXT
     
     
    if Wscript.arguments.count<1 then
       Wscript.echo "Script can't run without VolumeProductKey argument"
       Wscript.echo "Correct usage: Cscript ChangeVLKey.vbs ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"
       Wscript.quit
    end if
     
    Dim VOL_PROD_KEY
    VOL_PROD_KEY = Wscript.arguments.Item(0)
    VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any
     
    for each Obj in GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf ("win32_WindowsProductActivation")
     
       result = Obj.SetProductKey (VOL_PROD_KEY)
     
       if err <> 0 then
          WScript.Echo Err.Description, "0x" & Hex(Err.Number)
          Err.Clear
       end if
     
    Next

    add script to computer config / windows / scripts startup Then add your VLK as a parameter

    that should do it please see attachment for screenie
    Attached Images Attached Images

  14. Thanks to ict_support from:

    RTFM (14th June 2010)

SHARE:
+ Post New Thread

Similar Threads

  1. License Question
    By linuxgirlie in forum Windows
    Replies: 10
    Last Post: 12th August 2011, 04:07 PM
  2. Replies: 0
    Last Post: 18th May 2010, 06:03 PM
  3. PTC Pro/Engineer Wildfire 4 License changing
    By Sean in forum Educational Software
    Replies: 0
    Last Post: 1st March 2010, 08:26 PM
  4. School answering machine message
    By Dos_Box in forum General Chat
    Replies: 20
    Last Post: 3rd October 2009, 05:40 PM
  5. license
    By sayf00 in forum EduGeek Joomla 1.0 Package
    Replies: 3
    Last Post: 14th February 2008, 09:58 AM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •