aliala Posted September 11, 2014 Report post Posted September 11, 2014 Hello,I have trouble getting a VBS script to work in SCCM 2012, this script worked without problems in sccm in 2007.It is used when we want to install an operating system to harddrive to be installed to another computer of the same model.In Task sequence it runns before "Apply Operating System". The Command Line: cscript.exe %deployroot%\scripts\EnterComputerName.vbs Here is the script: 'Code SnippetDim env, objRegExDim Matches, MatchDim strPattern, strInputBox, strReasonDim boolLength, boolValidSet ProgressUI = CreateObject("Microsoft.SMS.TsProgressUI")ProgressUI.CloseProgressDialogSet env = CreateObject("Microsoft.SMS.TSEnvironment")Set objRegEx = New RegExp'Define valid patterns as and character not in (a-z, A-Z, 0-9, or -)strPattern = "[^a-zA-Z0-9-]"Do strReason = "" strInputBox = InputBox("Enter desired machine name." & VbCrLf & VbCrLf & "Machine names must be 3-14 characters, and include a-z, 0-9, - ONLY." & VbCrLf & VbCrLf & "Machine name WILL be upper case.","Machine Name") ' If strInputBox = "" Then TemplateQuit(0) ' Check length - must be less than 15 charatcers If Len(strInputBox) <= 14 Then boolLength = True Else strReason = strReason & "Machine name too long. Please choose a name from 3-14 characters in length." & VbCrLf boolLength = False End If ' Check character validity boolValid = True ' Return all matches for invalid characters objRegEx.Global = True objRegEx.Pattern = strPattern ' Generate collection of matches Set Matches = objRegEx.Execute(strInputBox) ' Check for matches on invalid characters For Each Match In Matches strReason = strReason & "Invalid character """ & Match.Value & """ found. Please use only a-z, A-Z, 0-9, and -." & VbCrLf boolValid = False Next If Not (boolLength And boolValid) Then MsgBox "Invalid name """ & strInputBox & """ entered!" & VbCrLf & VbCrLf & strReason,vbCritical+vbOKOnly,"Invalid Name Entered"Loop While Not (boolLength And boolValid)MsgBox "Computer name set to " & UCase(strInputBox) & ".",vbInformation+vbOKOnly,"Computer Name Set"env("OSDComputerName") = UCase(strInputBox) I hope someone can help me with this. Thanks! Quote Share this post Link to post Share on other sites More sharing options...
Peter van der Woude Posted September 11, 2014 Report post Posted September 11, 2014 You forgot to mention the problem you;re having. Theoraticaly this should work the same as with ConfigMgr 2007. Quote Share this post Link to post Share on other sites More sharing options...
aliala Posted September 12, 2014 Report post Posted September 12, 2014 This is working like charm now. I forgot to Update Distribution point. Quote Share this post Link to post Share on other sites More sharing options...