Jump to content

Is there a way to set the Dell asset tag


Recommended Posts

WSNAME workstation renamer

http://mystuff.clarke.co.nz/wsname.asp

I've used this utility in the past for a sysprep cd I made. It was pretty basic but after imaging would use an ipconfig batch like Martin suggested then look up the mac address in a text file and rename the workstation as appropriate. It can also name the workstation based on the asset tag.

Link to comment
Share on other sites


Here is a VBS script that list the Network Adaptor Name and the IP address.

I have only tested it on Vista, I have not tried it on any other OS.

strComputer = "."

Dim Act : Set Act = CreateObject("Wscript.shell")

Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

Set colItems = objWMIService.ExecQuery("Select * From Win32_NetworkAdapterConfiguration " & _

        "Where IPEnabled = True")

For Each objItem in colItems

  NetAdp = Split(objItem.Caption, "]")

    Act.Popup "Network Adaptor Name : " & NetAdp(1) , 5, "Network Adaptor", 0 + 32

    For Each objAddress in objItem.IPAddress

        Act.Popup "IP Address: " & objAddress , 5, "Ip Address", 0 + 32

    Next

Next

Link to comment
Share on other sites

  • 2 weeks later...
  • 3 months later...
  • 3 years later...
I think I have found an ugly work around tho. A Boot CD that boots into DOS, sets asset tag, then fires up PE.

Can you tell me what is the ugly work around?

We are trying to do the same thing here at work, boot into DOS => sets asset tag => then to BartPE

Link to comment
Share on other sites

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...