bjsusol Posted August 23, 2013 Report post Posted August 23, 2013 So I have been building my OS Task sequence. I currently have most of my machine types available for PXE boot and deployment. However, I just tried to add a new machine type to the list, and its failing at the post install gather/apply windows settings phase. I added a line in the customsettings.ini for the X230 Laptop - see below. The problem is, it doesn't seem to be getting past this. When I look at the log folder, its clear that its not detecting the computer model properly because the name its trying to give the computer is %Computermodel%-PK0B1LZ (which is the serial number). That being said, I can open a command prompt right on the failed PXE boot and do a WMIC COMPUTERSYSTEM GET MODEL and see that the model type is correct. I can build all the other machine types no problem. Its just an issue with the X230... Does anyone have any thoughts why this might be failing? [4177Q5U] ComputerModel=T420 [2320KKU] ComputerModel=X230 [Default] OSInstall=Y OSDComputerName=%ComputerModel%-%ComputerSerialNumber% MachineObjectOU=CN=Computers,DC=firm,DC=goulstonstorrs,DC=com SLSHARE=\\firm.goulstonstorrs.com\sc\sccm\OSD\TSLogs$ ;SLShareDynamicLogging=\\firm.goulstonstorrs.com\sc\sccm\OSD\DynLogs$\%OSDComputername% TimeZoneName=Eastern Standard Time UserLocale=en-us Quote Share this post Link to post Share on other sites More sharing options...
Peter33 Posted August 26, 2013 Report post Posted August 26, 2013 [Settings] Priority=Default Properties=ComputerModel [Default] OSInstall=Y MachineObjectOU=CN=Computers,DC=firm,DC=goulstonstorrs,DC=com SLSHARE=\\firm.goulstonstorrs.com\sc\sccm\OSD\TSLogs$ ;SLShareDynamicLogging=\\firm.goulstonstorrs.com\sc\sccm\OSD\DynLogs$\%OSDComputername% TimeZoneName=Eastern Standard Time UserLocale=en-us Subsection=#Left("%MODEL%",4)# OSDComputerName=%ComputerModel%-#Replace("#Left("%SERIALNUMBER%",10)#"," ","")# [4177] ComputerModel=T420 [2320] ComputerModel=X230 This should do the trick. For Lenovo, you have only to care about the first 4 characters of the model. Quote Share this post Link to post Share on other sites More sharing options...