xneilpetersonx
Posts: 157
Score: 1 Joined: 7/18/2006 Status: offline
|
From what I can tell there a a few different ways in which to "on demand" populate the CM DB with unknown computer. I have tested both the MDT WDS PXE Filter and also the new R2 Unknown Computer capabilities. Both seem to work well. From my limited exposure with both the R2 method apears that it may work better when deploying using both PXE and Boot media - less to set up. As for naming mahcine - yeah I think the only method is a custom job. It is very simple - Create the following .HTA, add it to the scripts folder of your MDT package, remeber to update your DP, add a command line TS to run the following command %deployroot%\scripts\xxxxxxxx.hta Below is some code that may help. ---------------------------------------------------------------> <html> <head> <title>MMS 2009 WOOOHOOO</title> <HTA:APPLICATION ID="oWizard" APPLICATIONNAME="" ICON="Wizard.ico" SCROLL="no" SELECTION="no" INNERBORDER="no" BORDER="normal" SINGLEINSTANCE="no" SYSMENU="yes" MAXIMIZEBUTTON="no" MINIMIZEBUTTON="no" /> </head> <script language="vbscript" type="text/vbscript"> Sub ButtonFinishClick oEnvironment.Item("COMPUTERNAME") = ComputerName.value window.Close End Sub </script> <body> <p>Computer Name:</p><br /> <input type=text id="computerName" name=computerName size=40><br /> <button accesskey=N type=submit id=buttonFinish onclick=ButtonFinishClick ><U>F</U>inish</button> </body> </html> <--------------------------------------------------------------------- I jsut copied that out of the OSD "front end" script that I am working on, I may have missed something but it should get you going. neilp
< Message edited by xneilpetersonx -- 9/25/2008 10:17:33 AM >
|