Saved Bookmarks
| 1. |
Solve : Dell Service Tag via BAT? |
|
Answer» I have searched the forums and could not find what i was looking for on this topic. I am looking to created a bat that will pull the dell service tag and express service code and SIMPLY add them to a .txt file. What is the "Dell Service Tag"? It is the unique id for Dell Systems. Service tags are used for everything from driver downloads to system service calls. working for a state office we use these all the time. you could TRY pulling the following key: HKEY_LOCAL_MACHINE\SOFTWARE\Dell Computer Corporation\SysInfo this will contain the following information: BIOS Release Date BIOS version Model Serial Number ext.I'd just write it down from the back of the machine...a bit faster than attempting to write a batch file to do it...You can retrieve the Service Tag by USING WMIC. Code: [Select]wmic bios get serialnumber >servicetag.txt |
|