Rename your computer using it’s service tag number

How to rename your computer using it’s service tag number

Below is a short script that is handy in renaming your computer using the service tag or serial number of the machine. To invoke this on multiple machines you may want to look into running psexec to copy the script locally to the machine, then run and finally reboot the machine.

setlocal
wmic bios get serialnumber | find /I /V “SerialNumber” > “%temp%\sn.txt”
set /p comp_name=<“%temp%\sn.txt”
wmic computersystem where name=”%computername%” rename name=%comp_name%
del “%temp%\sn.txt”
endlocal

Posted in Uncategorized and tagged .

2 Comments

  1. Greetings

    I would like to rename more than 20 computers using your script above.

    Can you assist on how my text file context should be.

    For instance i would like to capture all computer service tags and computer names on one text file for renaming.

    example J23RW3, Computer 1
    P24RW3, Computer 2

Leave a Reply to Dali Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.