MhermanNBME
Posts: 78
Score: 3 Joined: 4/4/2007 Status: offline
|
I use a script to bring up an input box, you can either make a package out of it, or map a network drive in the task sequence. I just put a simple run command line in the beginning of the task sequence (after restart in windows pe). I also checked the option to continue on error. Here is the run command line: "cscript z:\path\setname.vbs" Here is the setname.vbs: On Error Resume Next Set env = CreateObject("Microsoft.SMS.TSEnvironment") env("OSDComputerName") = InputBox("Enter Computername:","Computer Name",env("OSDComputerName"),50,50)
|