Jump to content


Search the Community

Showing results for tags 'osd'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Cloud
    • Azure
    • Microsoft Intune
    • Office 365
    • Windows 365
  • General Stuff
    • General Chat
    • Events
    • Site News
    • Official Forum Supporters
    • Windows News
    • Suggestion box
    • Jobs
  • MDT, SMS, SCCM, Current Branch &Technical Preview
    • How do I ?
    • Microsoft Deployment Toolkit (MDT)
    • SMS 2003
    • Configuration Manager 2007
    • Configuration Manager 2012
    • System Center Configuration Manager (Current Branch)
    • Packaging
    • scripting
    • Endpoint Protection
  • Windows Client
    • how do I ?
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows Vista
    • Windows XP
    • windows screenshots
  • Windows Server
    • Windows Server General
    • Active Directory
    • Microsoft SQL Server
    • System Center Operations Manager
    • KMS
    • Windows Deployment Services
    • NAP
    • Failover Clustering
    • PKI
    • Hyper V
    • Exchange
    • IIS/apache/web server
    • System Center Data Protection Manager
    • System Center Service Manager
    • System Center App Controller
    • System Center Virtual Machine Manager
    • System Center Orchestrator
    • Lync
    • Application Virtualization
    • Sharepoint
    • WSUS

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Location


Interests

  1. Hi Guys, Does anyone have a HTA or powershell front end that i can use , or suggestions on how to use a current one out there, my requirements are pretty simple i think. We have about 100 different sites in 4 different countries, and we now name our computers with the following format OFFICE-Serial where office is a 7 digit identifier for the office, and serial is the last 7 digits of the serial number. Lets say i have the following. >England >>Manchester >>London >> South London >Scotland >>Inverness >>Edinburgh Names would be MANCHE-SERIAL STHLOND-SERIAL etc. I would like a drop down first to select the country, and then a drop down to select the site with results only from the country in question I would then need OSDComputer Name to prefix 7 digits of this name and then append "-" + serial number. Can anyone help me with this? i have this which is from technet and i have modified a bit, but dont know vb well enough to modify. <!--Script Settings <ScriptSettings xmlns="http://tempuri.org/ScriptSettings.xsd"> <ScriptPackager> <process /> <arguments /> <extractdir>%TEMP%</extractdir> <files /> <usedefaulticon>true</usedefaulticon> <showinsystray>false</showinsystray> <altcreds>false</altcreds> <efs>true</efs> <ntfs>true</ntfs> <local>false</local> <abortonfail>true</abortonfail> <product /> <version>1.0.0.1</version> <versionstring /> <comments /> <company /> <includeinterpreter>false</includeinterpreter> <forcecomregistration>false</forcecomregistration> <consolemode>false</consolemode> <EnableChangelog>false</EnableChangelog> <AutoBackup>false</AutoBackup> <snapinforce>false</snapinforce> <snapinshowprogress>false</snapinshowprogress> <snapinautoadd>2</snapinautoadd> <snapinpermanentpath /> <cpumode>1</cpumode> <hidepsconsole>false</hidepsconsole> </ScriptPackager> </ScriptSettings> endregion--> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html"> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <title>Imaging Solutions v2.3</title> <HTA:APPLICATION ID="maging Solutions" APPLICATIONNAME="Imaging Solutions" BORDER="none" CAPTION="yes" CONTEXTMENU="no" ICON="icon.ico" INNERBORDER="no" NAVIGABLE="true" SCROLL="no" SCROLLFLAT="yes" SELECTION="no" SHOWINTASKBAR="yes" SINGLEINSTANCE="yes" SYSMENU="yes" TITLEBAR="no" VERSION="2.2"/> <script type="text/vbscript"> '******************************************************************************' ' Global Variables ' '******************************************************************************' dim varPanel varPanel = 1 dim logHTA logHTA = "\\cm1\source files\\" & strSerialNum & ".log" Dim oTSProgressUI Set oTSProgressUI = CreateObject("Microsoft.SMS.TSProgressUI") oTSProgressUI.CloseProgressDialog() Dim strComputer strComputer = "." Dim strSerialNum Dim strUser Dim oTSEnvironment Set oTSEnvironment = CreateObject("Microsoft.SMS.TSEnvironment") '******************************************************************************' ' Window Onload Event ' '******************************************************************************' Sub Window_OnLoad '******************************************************************************' ' ComputerName Field Default Value ' '******************************************************************************' Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colSMBIOS = objWMIService.ExecQuery("Select * from Win32_BIOS") For Each objSMBIOS in colSMBIOS strSerialNum = objSMBIOS.SerialNumber Next window.document.getElementById("ComputerName").value = strSerialNum End Sub '******************************************************************************' ' Size & Positioning ' '******************************************************************************' winWidth=800 winHeight=600 window.resizeto winWidth,winHeight centerX=(screen.width-winWidth)/2 centerY=(screen.height-winHeight)/2 window.moveto centerX,centerY posX=0 posY=0 move=0 '******************************************************************************' ' Function for Dragging Window ' '******************************************************************************' Function setPos() posX=window.event.screenX posY=window.event.ScreenY move=1 End Function Function moving() If move=1 Then moveX=0 moveY=0 moveX=window.event.screenX-posX moveY=window.event.screenY-posY window.moveto(window.screenLeft+moveX),(window.screenTop+moveY) setPos() End if End Function Function stopMoving() move=0 End Function '******************************************************************************' ' Function to Close HTA ' '******************************************************************************' Function closeHTA() self.close End Function '******************************************************************************' ' Validate Variables ' '******************************************************************************' Sub runValidation If varPanel = 1 Then If ComputerName.value = "" Then msgbox("Please Enter a Computer Name") ElseIf Username.value = "" Then msgbox("Please Enter a Username") Else runInstall End If ElseIf varPanel = 2 Then runRefresh ElseIf varPanel = 3 Then runBackup End If End Sub '******************************************************************************' ' Configure Task Sequence Variables ' '******************************************************************************' Sub runInstall 'msgbox("Test: " & varPanel)' '************************************************************' ' Image Version ' '************************************************************' If ImageChoice.value = "1" Then oTSEnvironment("swn_OSPicker") = "Win7EntSP1x64" 'msgbox("OSImage Picker: " & oTSEnvironment("swn_OSPicker"))' End If '************************************************************' ' Computer Name ' '************************************************************' oTSEnvironment("OSDComputerName") = computername.value 'msgbox("ComputerName TSValue: " & oTSEnvironment("OSDCOMPUTERNAME"))' '************************************************************' ' AD OU ' '************************************************************' If ADOU.value = "1" Then oTSEnvironment("swn_ADOU") = "laptops" 'msgbox("AD OU TSValue: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "2" Then oTSEnvironment("swn_ADOU") = "laptopsnouac" 'msgbox("AD OU TSValue: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "3" Then oTSEnvironment("swn_ADOU") = "desktops" 'msgbox("AD OU TSValue: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "4" Then oTSEnvironment("swn_ADOU") = "desktopsnouac" 'msgbox("AD OU TSValue: " & oTSEnvironment("swn_ADOU"))' ElseIf ADOU.value = "5" Then oTSEnvironment("swn_ADOU") = "vdiworkstations" 'msgbox("AD OU TSValue: " & oTSEnvironment("swn_ADOU"))' End If '************************************************************' ' Set Primary User ' '************************************************************' oTSEnvironment("SMSTSUdaUsers") = Username.value '************************************************************' ' Job Role Picker ' '************************************************************' ' For Each oJobRole in rJobRole' ' If oJobRole.Checked Then' ' oTSEnvironment("swn_JobRole") = oJobRole.value' ' msgbox("You slected " & oJobRole.value & ".")' ' End If' ' Next' '************************************************************' ' Applications - Non-Licensed ' '************************************************************' '************************************************************' ' Applications - Licensed ' '************************************************************' closeHTA() End Sub Sub runRefresh msgbox("Test" & varPanel) End Sub Sub runBackup msgbox("Test" & varPanel) End Sub '******************************************************************************' ' Dump Variables ' '******************************************************************************' Sub dumpvariables Set objFSO=CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile(logHTA,8,True) For each varTSVar in oTSEnvironment.GetVariables objFile.WriteLine varTSVar & " = " & oTSEnvironment(varTSVar) Next objFile.Close End Sub '******************************************************************************' ' Panel Browsing - Change page and set variables ' '******************************************************************************' Sub setPanel1 Panel(1) varPanel = 1 End Sub Sub setPanel2 Panel(2) varPanel = 2 End Sub Sub setPanel3 Panel(3) varPanel = 3 End Sub </script> <script type="text/javascript"> '******************************************************************************' ' Panel Switching ' '******************************************************************************' var panels = new Array("","panel1","panel2","panel3"); function panel(tab) { for (i=1; i<panels.length; i++) { if (i == tab) { document.getElementById("tab"+i).className = "tabs tabs1"; document.getElementById("panel"+i).style.display = "block"; } else { document.getElementById("tab"+i).className = "tabs tabs0"; document.getElementById("panel"+i).style.display = "none"; } } } </script> <style type="text/css"> /* Layout Styles - for designing the overall template */ html,body { margin:0; padding:5px; position:relative; } html { border: 2px solid #00A6DE; } #divheader { width:100%; height:50px; position: relative; } #divcontent { width: 100%; } #divtopnav { height: 33px; width: 100%; position: relative; } #divbody { min-height: 414px; height: 100%; width:100%; position: relative; } #divbottomnav { height: 29px; width: 100%; position: relative; } #divfooter { height:50px; width:100%; position: relative; } body,td,th,h1 { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 10px; } /* Logo Styles - for branding */ #logo1 { width: 112px; height: 49px; float: left; } #tagline { position: absolute; bottom: 0px; right: 0px; font-size: 16px; font-weight:600; float: right; } #logo2 { position: absolute; bottom: 0px; right: 0px; width: 87px; height: 43px; float: right; } /* Navigation Styles - for creating navigation bar */ #topnav { width: 100%; float: left; background-color: #f2f2f2; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; border-top: 1px solid #ccc; } #topnav ul { list-style: none; width: 100%; margin: 0 auto; padding: 0; } #topnav li { float: left; } #topnav li a { display: block; padding: 8px 15px; text-decoration: none; font-weight: bold; color: #003050; border-right: 1px solid #ccc; } #topnav li:first-child a { border-left: 1px solid #ccc; } #topnav li a:hover { color: #00A6DE; background-color: #fff; } #topnav li a:active { color: #00A6DE; background-color: #FFF; } /* ------------------------ */ #bottomnav { position: absolute; bottom: 0px; width: 100%; float: left; background-color: #F2F2F2; border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; border-top: 1px solid #ccc; border-right: 1px solid #ccc; /* Remove this line if using more than one nav button */ } #bottomnav ul { list-style: none; width: 100%; margin: 0 auto; padding: 0; } #bottomnav li { float: right; } #bottomnav li a { display: block; padding: 6px 12px; text-decoration: none; font-weight: bold; color: #003050; border-left: 1px solid #ccc; } #bottomnav li:first-child a { border-right: 1px solid #ccc; } #bottomnav li a:hover { color: #FFF; background-color: #CCC; } /* Body Styles - for managing content in the body panels */ .bodypanel { height: 100%; padding: 0px; position: relative; width: 100%; z-index: 0; } #divbodysub { padding-top: 5px; } #divcontainer { width:773px; border: 1px solid #CCCCCC; float:left; padding: 0px; height: 105px; } #divcontainersplit { width:386px; border: 1px solid #CCCCCC; float:left; padding: 0px; height: 105px; } #divcontainersplit:first-child { border-right: 0px; } .divcontainersub { padding: 2px; } .containertitle { text-align:center; background-color: #F2F2F2; border-bottom: 1px solid #CCCCCC; } /* Input Styles - for changing the look of input fields */ .inputlabels { } .inputfields { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 10px; border: 1px solid #00a6de; } .helpbutton { padding-left: 2px; } </style> </head> <body> <div class="pagewrap"> <div id="divheader" onmousedown="VBScript:Call setPos()" onmousemove="VBScript:Call moving()" onmouseup="VBScript:Call stopMoving()"> <div> <img id="logo1" src="images/logo/logo.png" /> </div> <div id="tagline"> Imaging Solutions v2.3 </div> </div> <!-- BEGIN Browsing Tabs --> <div id="divcontent"> <div id="divtopnav"> <div id="topnav"> <ul> <li id="tab1" onclick="setpanel1"><a href="#" tabindex="1002">Install</a></li> <li id="tab2" onclick="setpanel2"><a href="#" tabindex="1003">Refresh</a></li> <li id="tab3" onclick="setpanel3"><a href="#" tabindex="1004">Backup</a></li> </ul> </div> </div> <!-- END Browsing Tabs --> <!-- BEGIN Install Page --> <div id="divbody"> <div id="panel1" class="bodypanel" style="display:block;"> <div id="divbodysub"> Description: This page is for install-only scenarios of a specific OS. No backups or user data migration will occur on the machine. </div> <div id="divbodysub"> <label for="ImageName">Choose the OS Image:</label> <select id="ImageName" class="inputfields" tabindex="1" name="ImageChoice" size="1"> <option value="1">Win 7 Ent x64</option> </select><img class="helpbutton" src="images/help.png"images/Metrostation/MB_0011_info3_blue.png"" width="16" height="16" alt="Choose the image to use"> <script type="text/javascript">ImageName.focus();</script> </div> <div id="divbodysub" style="float:left"> <div id="divcontainersplit"> <div class="containertitle"> Computer Information </div> <div class="divcontainersub"> <label for="ComputerName">Computer Name:</label> <input id="ComputerName" class="inputfields" name="ComputerName" tabindex="2" type="text" size="57" maxlength="15" disabled="true"> </div> <div class="divcontainersub"> <label for="ADOU">Active Directory OU:</label> <select id="ADOU" class="inputfields" tabindex="3" name="ADOU" size="1" style="width:278px;"> <option value="1">Laptops</option> <option value="2">Desktops</option> <option value="3">Servers</option> </select> </div> <div id="divcontainersplit"> <div class="containertitle"> Locale </div> <div class="divcontainersub"> <label for="ADOU">Select Region:</label> <select id="ADOU" class="inputfields" tabindex="3" name="ADOU" size="1" style="width:278px;"> <option value="1">Scotland</option> <option value="2">Wales</option> <option value="3">Ireland</option> <option value="4">England</option> </select> </div> </div> <div id="divcontainersplit"> <div class="containertitle"> Locale </div> <div class="divcontainersub"> <label for="ADOU">Select Region:</label> <select id="ADOU" class="inputfields" tabindex="3" name="ADOU" size="1" style="width:278px;"> <option value="1">London</option> <option value="2">Manchester</option> </select> </div> </div> <div id="divcontainersplit"> <div class="containertitle"> User Information </div> <div class="divcontainersub"> <label for="Username">Domain\Username:</label> <input id="Username" class="inputfields" name="Username" tabindex="4" type="text" size="55"/> </div> <div class="divcontainersub"> <div> Job Role: </div> <div class="divcontainersub"> The username entered in the above field will determine what role based applications are installed based on the Job Role collection they are apart of.</li> </div> </div> </div> <div id="divbodysub"> <div id="divcontainer" > <div class="containertitle"> Applications - Non-Licensed </div> <div class="divcontainersub"> <!-- <input type="checkbox" name="7zip" value="7zip" tabindex="9">7-zip <input type="checkbox" name="iTunes" value="iTunes" tabindex="10">iTunes --> </div> </div> </div> <div id="divbodysub"> <div id="divcontainer" > <div class="containertitle"> Applications - Licensed </div> <div class="divcontainersub"> <!-- <input type="checkbox" name="AdobeAcro9Pro" value="AdobeAcro9Pro" tabindex="51">Adobe Acrobat v9 Pro <input type="checkbox" name="Cygnet8" value="Cygnet8" tabindex="52">Cygnet v8 --> </div> </div> </div> </div> </div> <!-- END Install Page --> <!-- BEGIN Refresh Page --> <div id="panel2" class="bodypanel" style="display:none;"> <div id="divbodysub"> Description: This page is for the reinstallation of an OS to a machine that has been previously imaged. This process gives some options for data backup. </div> <div id="divbodysub"> <label for="ImageName">Choose the OS Image:</label> <select id="ImageName" class="inputfields" tabindex="1" name="ImageName" size="1"> <option value="1">Win 7 Ent x64</option> <option value="2">Other</option> </select><img class="helpbutton" src="images/help.png" width="15" height="15" alt="Choose the image to use"> </div> </div> <!-- END Refresh Page --> <!-- BEGIN Backup Page --> <div id="panel3" class="bodypanel" style="display:none;"> Backup </div> </div> <!-- END Backup Page --> <div id="divbottomnav"> <div id="bottomnav"> <ul> <li onclick="close ()"><a href="#" tabindex="1001">Quit</a></li> <li onClick="runValidation"><a href="#" tabindex="1000">Run</a></li> </ul> </div> </div> </div> <div id="divfooter"> <div> <img id="logo2" src="images/logo/sublogo.png" /> </div> </div> </div> </body> </html>
  2. I am trying to build and capture a Winddows 7 X64 Image using SCCM 2012 R2 (SP1). I have also installed Cumulative Updates 1 for R2 SP1 and made sure the client Patches CU1 during setup. I have been using Software Updates to clients on the Domain successfully but the OSD is failing to complete with the error "timeout period expired. Error: 800705B4" in the SMSTS.log (see attached). I have ensured the Client install includes the following (note the FQDN is different to this, trying to not publish to the world): SMSMP=server.com SMSSLP=server.com DNSSUFFIX=com I have added the hotfix KB2522623 and also included the following command prior to the updates: WMIC /namespace:\\root\ccm path sms_client CALL TriggerSchedule "{00000000-0000-0000-0000-000000000113}" /NOINTERACTIVE I have made sure the client correctly connects with an IP on the active Boundary. Also I have made sure the updates are correctly Distributed to the DP. I am at a loss for what is happening here? Please see SMSTS.log, SoftwareUpdates.log, UpdatesHandler.log, UpdatesDeployment.log, UpdatesStore.log, and WUAHandler.log below for more info. Here is excerpt from SMSTS.log when it fails: executing command: C:\Windows\system32\cmd.exe /k executed command: C:\Windows\system32\cmd.exe /k FALSE, HRESULT=800705b4 (e:\nts_sccm_release\sms\client\osdeployment\installswupdate\installswupdate.cpp,1273) Timedout waiting for updates refresh complete notification WaitForRefreshUpdatesComplete(spInstall), HRESULT=800705b4 (e:\nts_sccm_release\sms\client\osdeployment\installswupdate\installswupdate.cpp,1331) RefreshUpdates(), HRESULT=800705b4 (e:\nts_sccm_release\sms\client\osdeployment\installswupdate\installswupdate.cpp,923) InstallUpdates(pInstallUpdate, tType, sJobID, sActiveRequestHandle), HRESULT=800705b4 (e:\nts_sccm_release\sms\client\osdeployment\installswupdate\main.cpp,248) Setting TSEnv variable SMSTSInstallUpdateJobGUID= Process(pInstallUpdate, tType), HRESULT=800705b4 (e:\nts_sccm_release\sms\client\osdeployment\installswupdate\main.cpp,302) Process completed with exit code 2147943860 !--------------------------------------------------------------------------------------------! Failed to run the action: Install Software Updates 1st Pass. This operation returned because the timeout period expired. (Error: 800705B4; Source: Windows) MP server http://SERVER.comPorts 80,443. CRL=false. Setting authenticator Set authenticator in transport Sending StatusMessage Setting message signatures. Setting the authenticator. CLibSMSMessageWinHttpTransport::Send: URL: SERVER.com:80 CCM_POST /ccm_system/request Request was successful. Set a global environment variable _SMSTSLastActionRetCode=-2147023436 Set a global environment variable _SMSTSLastActionSucceeded=false Clear local default environment The execution engine ignored the failure of the action (Install Software Updates 1st Pass) and continues execution smsts.log UpdatesDeployment.log UpdatesHandler.log UpdatesStore.log WUAHandler.log WindowsUpdate.log
  3. Hi All, Recently I have been trying to bit locker devices during OSD on a 2008r2 domain, with sccm 2012 r2 sp1. the schema has been checked and is correct (the 5 entries are present) CN=ms-FVE-KeyPackage – attributeSchema object CN=ms-FVE-RecoveryGuid – attributeSchema object CN=ms-FVE-RecoveryInformation – classSchema object CN=ms-FVE-RecoveryPassword – attributeSchema object CN=ms-FVE-VolumeGuid – attributeSchema object CN=ms-TPM-OwnerInformation – attributeSchema object The ad DC's have the bitlocker tools installed, and I can see the 'bitlocker recovery key' tab for a device in ADUC. I have a AD GPO in place on an OU where the device exists in AD But my task sequence fails at the ENABLE BITLOCKER stage towards the end of the TS. The TS was created by sccm wizard, nothing special in it as yet. If I disable the DISABLE BITLOCKER, PREPROVISION BITLOCKER and ENABLED BITLOCKER steps in the TS and build the device, then enable bitlocker manually logged on to the device, it works and saves the key to AD, I am obviously missing something here, anyone know where I should look in the logs... The device is uefi and has secureboot enabled The OS is Windows 81 x32
  4. Hi All, I'm using the following group of products: Windows 2012 (not R2) SCCM 2012 R2 Win PE 4.0 My goal is to deploy a Linux distribution by created an OSD task sequence, following these model: http://blogs.msdn.com/b/steverac/archive/2014/01/02/osd-for-linux-imaging-yes-really.aspx http://systemcenter.no/?p=509 I recognize that this is not supported by design, but dd is a simple enough tool that I am hoping I can make this work easily. So the Order of operations is: 1) Attach to remote location with dd executable and image we're trying to deploy 2) Clean disk on client 3) run command : "dd if=image.bin of=\\?\harddisk0\partition0 bs=4M --progress" However I'm running into the error 80070057, among others you'll see in the logs. Some details: for reasons outside the scope of this task, I am aiming to deploy to the entire disk. Reserving a partition will, I think, break the update system on my linux distro. Willing to try anything - would love to get some help! Here's the log (also attached): https://gist.github.com/smithforrestr/a83d6b154bc459eea62e#file-smsts-log smsts.txt
  5. Hi Guys, I've been building my Win10 image lately and for some reason SCCM refuses to complete any OSD Task Sequences successfully (on Win 10, or our old Win8.1 TS). It seems to be failing to setup the SCCM Client and then rebooting to a half built OS. smsts.log is here: https://pastee.org/7dkq5 I don't have a CCMSetup.log, it doesn't get that far. Any ideas? The key line that seems to stick out for me is: <![LOG[The action (Setup Windows and Configuration Manager) requested a retry]LOG]!><time="13:16:09.927-60" date="08-14-2015" component="TSManager" context="" type="1" thread="1260" file="engine.cxx:271"> <![LOG[Reboot to local harddisk]LOG]!><time="13:16:09.927-60" date="08-14-2015" component="TSManager" context="" type="1" thread="1260" file="engine.cxx:469"> I've been trying to work this out for the past few days now and I'm tearing my hair out Thanks!!
  6. I am using an MDT integrated UDI task sequence to deploy an operating system (Win7 x64), install the SCCM client then install applications/packages. After the OS .wim file is applied the SCCM Client package is downloaded to C:\_SMSTaskSequence\OSD\SP100017\ The machine then reboots and goes back into the task sequence to install the client, but fails. The appropriate bit of ccmsetup.log is below and the full file is attached Despite copying the files locally to C:\_SMSTaskSequence\OSD\SP100017\ it is looking for them in C:\windows\ccmsetup\, when it doesnt find them it tries to download them via BITS. The SCCM server is serving these files up ok (if I stick the URL to the file in a browser it serves it up without needing authentication). From hitting F8 during the task sequence and running "bitsadmin /list /allusers /verbose" it shows the BITS jobs are there but in a suspended state. Running "bitsadmin /listfiles <ID of bits job>" it shows no files in any of the bits jobs. "bitsadmin /reset" won't cancel the jobs as they are running under SYSTEM. Also tried stopping the bits service, deleting the BITS related files under C:\ProgramData\Microsoft and starting the service, which clears the jobs from BITS but when ccmsetup.exe is rerun the jobs are readded as suspended and the same thing happens. I also tried pausing the TS, copying the client files from C:\_SMSTaskSequence\OSD\SP100017\ to where it is expecting (C:\Windows\ccmsetup\) then resuming. However even though client.msi is in C:\Windows\ccmsetup\ where it is looking for it, it still tries to grab it via BITS and fails C:\Windows\ccmsetup\client.msi defintately exists locally (tried with both 32 and 64 bit files) but for some reason it still wants to go off and grab it from the SCCM server via BITS. I've searched high and low over the internet and read all the suggestions but am stumped. ccmsetup.log
  7. I have a few Dell Lattitude E5550's that are new to our organization, and I dropped our image on one to see what devices I needed drivers for (turns out, A LOT). In either case, after downloading drivers from Intel and Dell, verified that they are correct for the hardware, and added them to CM like I always have...I re-imaged the workstation, but it still had a ton of devices without drivers. I thought this was odd...so I checked my WMI query, and it was good...I even set a single step in the TS to simply apply all drivers (unattended install of unsigned drivers was checked as well), but I still got the same result. So what to do at this point? Searching returns mostly articles regarding how to add drivers to CM, or driver "strategies", but not many address this issue. I found a similar post on these forums in which the NIC driver needed to be added to the boot.wim, but I already have that added. I just need ideas on what to troubleshoot, or what logs to look at...because, frankly, applying drivers in CM has always worked for me and I've never had to troubleshoot this I'm going to apply a driver package in the TS instead of the Apply Drivers step to see if that makes any difference...so here's hoping. Thanks!
  8. We just finished upgrading our SCCM Servers both our CAS and PS1 to SCCM 2012 R2 SP1. After the upgrade it seems that the new boot.wim file that is created is having issues. After the machine pxe boots and pulls down the wim file, it goes to windows is starting up then preparing network connections and then black screens and restarts. I opened up an F8 command prompt and pulled the SMSTS.log and I see an error during the TSMBootStrap.exe step. The error is Failed to download pxe variable file ... PxeGetPxeData failed with .... I have attached our SMSTS.LOG file. I verified that i have network connectivity by running IP config and then I was also able to ping our MP. I thought it might be driver related but I have tested from different dell models, Dell 9020, E3340, 7010, etc. and they all have the same problem. Any ideas/suggestions? smsts.log
  9. I'm trying to import and distribute a captured wim file but it fails when creating a snapshot. The wim file is on a network share that all the site systems have access to(verified). The wim is 145GB(I know, it is an absurd size) The primary site only has 50GB free between 2 drives. But since the content isn't being distributed to that server I don't think the space is an issue. Even if it creates a hash on that server it should be fill up any one of those drives. The DP I'm trying to distribute the wim has one drive that has 429GB free and another drive that has 1.8TB free. Quota's aren't enabled on the distribution point. I have tested with the default windows wim which is roughly around 3GB and that distributes fine to all the DPs. Here are the log entries from distmgr.log from the primary site: DPConnection::Connect: For $(PrimarySite), logged-on as $(SMSserviceAccount) SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:23 AM 10072 (0x2758) DPConnection::Disconnect: For $(PrimarySite), reverted to SYSTEM context SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:23 AM 10072 (0x2758) Failed to find space for 145000776127 bytes. SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) CFileLibrary::FindAvailableLibraryPath failed; 0x8007050f SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) CFileLibrary::AddFile failed; 0x8007050f SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) CContentDefinition::AddFile failed; 0x8007050f SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) Failed to add the file. Please check if this file exists. SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) SnapshotPackage() failed. Error = 0x8007050F SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) STATMSG: ID=2361 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=$(PrimarySite) SITE=$(Site) PID=4524 TID=10072 GMTDATE=Wed Jul 22 12:24:24.107 2015 ISTR0="$(share)\images\Win7\Lab\x64\Windows 7x64 Lab F2015R00.wim" ISTR1="Windows 7x64 Lab F2015R00" ISTR2="$(PackageID)" ISTR3="30" ISTR4="60" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="$(PackageID)" SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) CDistributionSrcSQL::UpdateAvailableVersion PackageID=$(PackageID), Version=1, Status=2302 SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) STATMSG: ID=2302 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=$(PrimarySite) SITE=$(Site) PID=4524 TID=10072 GMTDATE=Wed Jul 22 12:24:24.248 2015 ISTR0="Windows 7x64 Lab F2015R00" ISTR1="$(PackageID)" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="$(PackageID)" SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) Failed to process package $(PackageID) after 40 retries, will retry 60 more times SMS_DISTRIBUTION_MANAGER 7/22/2015 8:24:24 AM 10072 (0x2758) Any help would be greatly appreciated. Thanks
  10. Hello, Our School District is wanting to move to UEFI/Windows 7 environment. We are having problems laying down a Windows 7 x64 image using UEFI pxe boot. I think it has to do with the way we are partitioning the disk but I am not sure what I need to change. I have attached a copy of our smsts.log file and screenshots of our task sequence. We are not using MDT task sequence. We are using a SCCM task sequence. Please any help would be much appreciated. Thanks, Joe smsts.log
  11. We are running SCCM 2012 R2 with 1 CAS and 3 DP's. Starting approximately 3 weeks ago I started getting reports of computers failing OSD during driver provisioning with error code 0x80072ee2 (operation timed out). I cannot think of anything that changed during that time. The problems happens with any TS and only at the driver provision step. We are using auto driver provisioning and use categories to keep them organized. Here is what I have come up with so far: - I am able to ping the DP's during the TS failure. - The clients are able to see the DNS and DHCP servers. - I turned off antivirus and the firewall on the distribution point temporarily but this had no effect. - This is happening on several different models all of which have the proper drivers imported. - If I use driver packages then the TS finishes successfully. - All of our SCCM servers are virtual so I tried migrating DP2 to a different host but this had no change on the behavior. - I changed the Network Access account but saw no improvement. - I added the 2 variables SMSTSDownloadRetryCount and SMSTSDownloadRetryDelay as a work around so that the client will keep trying to get the drivers and this has helped but the underlying issue is still there. - Comparing the client SMSTS log and the MP_DriverMgr.log shows that the client sends a driver request and it is received by the DP. The DP executes a driver match but doesn't send a response back to the client for ~8 minutes. By that time the client has already failed the driver step with the Timed Out error. I have attached logs from the client and the DP. - This is only happening at Distribution Point 2. As a test, I changed our main boundary group to assign clients to Distribution Point 1 and imaged a couple computers. The computers looked to DP1 for drivers and DP executes the driver request and sends the response in under 2 minutes. I know that this confusing fast so if you have any questions just ask and I'll get more specific where needed. I have edited the hostnames out of the logs. SMSTSExample.log DP_DriverMGR.log
  12. Have a slight problem when trying to PXE boot a UEFI system. I can get it to PXE but then get it looping saying its looking for a boot image. I've made sure the boot images are copied to the DP and are enabled to deploy from PXE DP. The server is a server 2012 R2 DP so presume that wouldn't be an issue? any ideas gratefully received.
  13. Hi Guys, I'm having some issues with Install Updates Offline step with SCCM 2012 R2 CU5 and MDT 2012. I'm deploying Windows 7 Enterprise SP1 64bit. We have setup our Software Update deployment packages on monthly bases so each month has corresponding package to be deployed. Example would be "Windows 7 Updates - April 2015" and normal deployment of this package works fine to collection of workstations. Now, since Deployment packages for Windows updates are not available to "Install Updates Offline" step in OSD I have read one of the threads here on Technet as well as referenced on MYITFORUM here, that you can just create a regular package that points to the source where your Software Update Deployment Package is stored. I have tried this, however that didn't work. I received an error that stated that Empty package was found and therefore nothing was processed. Then I thought maybe the reason why this is the case is that I didn't use "Copy the content in this package to a package share on distribution points" option , so we tried that and it didn't work either. I am providing links to smsts.log, ztipatches_DISM.log below, if needed, so if you guys would be kind and look at them and let me know if anything looks out of place? What I would really like to know is how exactly to setup an updates package that can be used with "install updates offline" step in OSD. This would include package settings, and positioning in TS? Should I do this step in WinPE like I used to do in SCCM 2007 or should I do it after "Restart to OS" step? Currently I have following order in our TS: 1) Apply Operating System 2) Use Toolkit Package 3) Apply Windows Settings 4) Gather 5) Apply Network Settings 6, 7, 8) Windows 7 Updates - April, May June 2015 as separate steps. 9) installing other apps that work fine... All of the steps in TS execute without an error and TS finishes fine, however no updates get installed at all. Any help you can provide would be greatly appreciated. Thank you. smsts.log ZTIPatches.log ZTIPatches_DISM.log
  14. I updated from R2 to R2 SP1 last week and one of the new SP1 features is the deployment verification of High Risk Deployments like OSD task sequences. When users try to deploy a task sequence, they go to choose the collection and see the new High Risk Verification prompt. The user can hit OK and choose a collection as normal. The next screen on the deployment wizard asks if this is an available or required deployment. When choosing available everything works as normal but choosing required and hitting next should pop up another verification depending on the contents of the collection. The user can verify that they want to continue with the deployment wizard. However, I’ve found that if the user's security role does not have access scoped to it for the All Systems collection and the All Users and Groups collection, choosing required and hitting next in the deployment wizard does nothing; no verification popup, no advance to the next screen. Since we delegate access to our users based on collections querying their department specific OU, and they do not have access to the All Systems or All User and Groups collection, none of them are able to run required OS deployments. I opened a case with Microsoft today but am curious if anyone else has any workaround or has seen this issue as well.
  15. Hi all, Before I start off. This is a best-practice type of question. The situation below works but I'm unhappy because I need to enable the Continue on Error option for it to work and I was wondering if anyone has a better way of achieving my goals. In our organization we normally have 1 disk per system, be it workstation or laptop. All systems are Bitlockered during OSD. This week we purchased 2 new workstations however with 2 disks: 1 500GB SSD (Boot, OS - disk 0) and 1 2TB HDD (disk 1). I built a TS for OSD. Tweaked some steps for Bitlocker. Ran OSD. Crashed and burned. Status so far: - Pre-provisioning works for disk 0 and disk 1 - Bitlocker fails to encrypt disk 1 The failure code is : 0x000000FF (255) Log file and a screenshot of the TS are included. Short explanation of the TS. - Disk 0 is partitioned with a 300MB bootpart and remaining space is the OS partition. The latter receives variable: OSPART - Disk 1 is 1 partition, variable: DISK2 - @ Enable Bitlocker OS drive has the following options: Current OS drive, TPM only, ADDS backup, wait for BL to complete... - @ Enable Bitlocker D: Specific drive: D:, ADDS backup, wait for BL to complete... The step that fails (oddly) is the Enable BL OS Drive step, with the following message: Failed to run the action: Enable BitLocker OS Drive. The extended attributes are inconsistent. (Error: 000000FF; Source: Windows) TSManager 29-May-2015 11:58:29 3836 (0x0EFC). If you then boot to OS the funny thing you find is that the failure results in the OS drive being fully encrypted but the other disk has BL suspended. So technically it fails to encrypt the other disk. When the Continue on Error option is ticked at the Enable BL OS drive step: All good! Everything is encypted as it should be. Please have a look at the excerpt of the smsts.log and if anyone has any ideas: I'm all ears. BL.log
  16. Hello All, I am curious how you get a failed OSD advert to rerun in 2012. I want to be able to assign roles to our satellite offices so that they can refresh their PCs by moving them into a "refresh" collection. However i am trying to figure what the steps would be for them to rerun the advert if the OSD fails. The deployment is set to rerun if failed previous attempt. Is there a way for them to rerun the advert without deleting/recreating the deployment? In my test I tried removing/re-adding the machine from the collection, but that doesn't seem to have kicked off the rerun. Any help would be appreciated. Mike
  17. As the title suggests: I'm looking for guidance on how to wipe the MBR via Task Sequence during an OSD. Any suggestions? We use Symantec Encryption Desktop (aka PGP) and it adds a bootguard to the MBR which needs to be cleared out (we need to wipe the MBR) in order for the machines to boot successfully. If I boot a Win8.1 amd64 ISO, select Repair > Advanced > Command Prompt > Run bootrec.exe /fixmbr, it works fine and corrects the issue so I thought "Why not add bootrec to our amd64 WinPE.wim?" I copied what I thought were the necessary files into our amd64 winpe.wim, based on the following sites: https://channel9.msdn.com/forums/TechOff/456721-Windows-PE-with-BOOTRECEXE/ http://gregwoods.co.uk/2010/04/creating-a-winpe-boot-dvd-for-disk-cloning/ http://www.audiodude.nl/?p=1217 I even pulled in the MUI's from WinSxS into the WIM And although it appears to run successfully, it executes and produces no errors, it doesn't seem to actually be doing anything as the problem persists on a reboot. Running bootrec /fixmbr and/or bootrec /fixboot multiple times in our amd64 WinPE media doesn't work; but booting a amd64 Win8.1 ISO and running bootrec /fixmbr once works. I've tried the following with no positive results: Creating a diskpart script to sel dis 0 and clean isn't sufficient; doesn't wipe the MBR Converting the disk to GPT then back to MBR, but prior to the format & partition step, will remove bootguard. HOWEVER, it causes the TS to fail once it gets into Windows with the following error: "Wizard Error: Unable to find the SMS Task Sequencer. The deployment will not proceed." I've tried doing this two ways, and while it clears the MBR, I get the 'Wizard Error' above. 1) Via a Task Sequence step that runs a diskpart script (again, prior to the format & partition step), and 2) Adding 'oUtility.RunCommandWrite oExec, "CONVERT GPT NOERR"' to around line 340 of the ZTIDiskPart script. Symantec says that uninstrumenting the drive should correct this, but you cannot uninstrument an encrypted disk and the decryption process takes way too long. (About 24 hours) Secure wiping the disk (e.g.: via WipeDisk, DBAN) works but takes way too long. (Several hours) Thoughts?
  18. Hello, My question is regarding applying driver packages during OSD and issues after the image is laid down. I recently updated my Dell Latitude E6420 Windows 7 x86 driver package with the latest cab file from Dells website. After creating the new driver package and applying it to the OSD task sequence, I have had reports that some E6420's are having problems getting stuck on the Windows Start Splash Screen. After several reboots the users state that it is intermittent but that it continues to hang on the windows start screen. However, I also have an E6420 and I cannot recreate the problem. Which logs should I be looking at on the problem computers? Could this have to do with BIOS settings for SATA operation being on either AHCI or RAID on? Video Driver possibly? Any help would be much appreciated. Cheers, Joe
  19. i am having inconsistent application installation during PXE deployment and the logs are not helping me out so i was hoping someone else might have an idea. i can image one laptop and get a few missing applications one time and re-image and get a few different applications missing. for each application that fails i see the following Unspecified error (Error: 80004005; Source: Windows) SMSTS log link <![LOG[ Setting Server Certificates.]LOG]!><time="09:51:35.001+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="utils.cpp:6171"> <![LOG[ Setting Authenticator.]LOG]!><time="09:51:35.001+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="utils.cpp:6178"> <![LOG[set authenticator in transport]LOG]!><time="09:51:35.002+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:7734"> <![LOG[ Setting Media Certificate.]LOG]!><time="09:51:35.002+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="utils.cpp:6195"> <![LOG[sending StatusMessage]LOG]!><time="09:51:35.031+240" date="03-24-2015" component="InstallApplication" context="" type="1" thread="2488" file="libsmsmessaging.cpp:4023"> <![LOG[setting message signatures.]LOG]!><time="09:51:35.032+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:1295"> <![LOG[setting the authenticator.]LOG]!><time="09:51:35.032+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:1325"> <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SR0SCCM03.domain.com:80 CCM_POST /ccm_system/request]LOG]!><time="09:51:35.034+240" date="03-24-2015" component="InstallApplication" context="" type="1" thread="2488" file="libsmsmessaging.cpp:8604"> <![LOG[Request was successful.]LOG]!><time="09:51:35.062+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="libsmsmessaging.cpp:8939"> <![LOG[install application action cannot continue. ContinueOnErrorFlag is set to false.]LOG]!><time="09:51:35.062+240" date="03-24-2015" component="InstallApplication" context="" type="3" thread="2488" file="installapplication.cpp:898"> <![LOG[hrInstallation, HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\installapplication\installapplication.cpp,899)]LOG]!><time="09:51:35.062+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="installapplication.cpp:899"> <![LOG[pInstall->InstallApplications(saAppNames, sContinueOnError), HRESULT=80004005 (e:\nts_sccm_release\sms\client\osdeployment\installapplication\main.cpp,277)]LOG]!><time="09:51:35.228+240" date="03-24-2015" component="InstallApplication" context="" type="0" thread="2488" file="main.cpp:277"> <![LOG[install Static Applications failed, hr=0x80004005]LOG]!><time="09:51:35.228+240" date="03-24-2015" component="InstallApplication" context="" type="3" thread="2488" file="main.cpp:277"> <![LOG[Process completed with exit code 2147500037]LOG]!><time="09:51:35.232+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="commandline.cpp:1123"> <![LOG[!--------------------------------------------------------------------------------------------!]LOG]!><time="09:51:35.232+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="instruction.cxx:804"> <![LOG[Failed to run the action: Install Java. Unspecified error (Error: 80004005; Source: Windows)]LOG]!><time="09:51:35.233+240" date="03-24-2015" component="TSManager" context="" type="3" thread="3804" file="instruction.cxx:895"> <![LOG[MP server http://SR0SCCM03.domain.com. Ports 80,443. CRL=false.]LOG]!><time="09:51:35.234+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5881"> <![LOG[setting authenticator]LOG]!><time="09:51:35.242+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5903"> <![LOG[set authenticator in transport]LOG]!><time="09:51:35.242+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:7734"> <![LOG[sending StatusMessage]LOG]!><time="09:51:35.261+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:4023"> <![LOG[setting message signatures.]LOG]!><time="09:51:35.262+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1295"> <![LOG[setting the authenticator.]LOG]!><time="09:51:35.262+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1325"> <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SR0SCCM03.domain.com:80 CCM_POST /ccm_system/request]LOG]!><time="09:51:35.264+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:8604"> <![LOG[Request was successful.]LOG]!><time="09:51:35.287+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:8939"> <![LOG[set a global environment variable _SMSTSLastActionRetCode=-2147467259]LOG]!><time="09:51:35.288+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="executionenv.cxx:668"> <![LOG[set a global environment variable _SMSTSLastActionSucceeded=false]LOG]!><time="09:51:35.288+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="executionenv.cxx:668"> <![LOG[Clear local default environment]LOG]!><time="09:51:35.289+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="executionenv.cxx:807"> <![LOG[The execution engine ignored the failure of the action (Install Java) and continues execution]LOG]!><time="09:51:35.293+240" date="03-24-2015" component="TSManager" context="" type="2" thread="3804" file="instruction.cxx:962"> <![LOG[MP server http://SR0SCCM03.domain.com. Ports 80,443. CRL=false.]LOG]!><time="09:51:35.294+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5881"> <![LOG[setting authenticator]LOG]!><time="09:51:35.305+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="utils.cpp:5903"> <![LOG[set authenticator in transport]LOG]!><time="09:51:35.305+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:7734"> <![LOG[sending StatusMessage]LOG]!><time="09:51:35.323+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:4023"> <![LOG[setting message signatures.]LOG]!><time="09:51:35.325+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1295"> <![LOG[setting the authenticator.]LOG]!><time="09:51:35.325+240" date="03-24-2015" component="TSManager" context="" type="0" thread="3804" file="libsmsmessaging.cpp:1325"> <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SR0SCCM03.domain.com:80 CCM_POST /ccm_system/request]LOG]!><time="09:51:35.326+240" date="03-24-2015" component="TSManager" context="" type="1" thread="3804" file="libsmsmessaging.cpp:8604">
  20. Hi, I have created a .iso file using the create task sequence media option for Standalone media. Now I need to burn it to a DVD. Please let me know the steps. 1. I have tried to burn it by right click and burn disk image. This does not make it bootable. Should I use any 3rd party apps and which file should be referred to make it bootable. Below are the files from the .iso file.
  21. Hi Guys, Wanted to know if anyone has been able to create a method where they can identify when a particular Workstation was imaged and the name of the Task Sequence Used. Im looking to do this and just wanted some ideas on how to go about doing this. SCCM 2012 R2, MDT integrated. Thank you.
  22. *****Resolved***** Up until a couple days ago, we had no problem imaging our Dell desktops. From OptiPlex 780's all the way up to our new 3020's. Yesterday we received 5 new 3020's that will not image at all. Most of the time it doesn't even get to the point where we can hit F12 to start. Occasionally we do get the F12 screen and it looks like it's going to start, but then freezes up and fails. I've attached a few images to show my progress. I've looked at all the different settings I can think of in SCCM and on the individual pc's and don't see anything different. Any idea what is going on here? *****Solution******* I created a new WinPE .wim, changed out task sequence to use the new .wim, applied the changes. Then changed it back to the original .wim we were using and everything started to work. Not sure why, but it works. ******Failed Solution******* So that didn't work. It worked for a few devices but then stopped working again.
  23. I've been beating my head against the wall with this problem. I'd appreciate any suggestions on how to further troubleshoot it. Let me know if you need further information. We have a couple task sequences for deploying Win7 Ent and Win7 pro to a variety of machines in our offices, and adding a couple of applications. These have been working fine, and continue to work fine with all machines except for some Lenovo Z570 laptops, which to my mind rules out any cert issues, as has been suggested by some posts I've found with similar problems and log entries. Parsing through SMSTS.log files with CMtrace.exe has given me some errors to look into online, but nothing I've found has been able to resolve the problem. It seems like the issue is with the OSDGina and Task Sequencing Environment from the logs. I believe the problem to be a driver install that is needed to be added, but can't be sure. Our task sequence is pretty basic. In the apply windows Settings, the local admin account is enabled, and password set. This was my first clue that the TS wasn't working as I was unable to login to the laptop after completion using it, instead getting a message about the account being disabled. Later, during Apply Network settings, the computer is set to join the domain, which it does successfully. I'm unable to successfully use the WMI query to install specific driver package a created, as the Model name query I'm using is reported as false. (I've tried a variety of model names, but think it's an issue with how Lenovo enters their info, or the fact that this is a refurbed machine, and may not have had that data entered correctly when repaired. I've also tried using the driver package query as Manufacturer like Lenovo, but that hasn't worked either. I've tried with a couple different task sequences, with and without wmi called specific driver package installations, and all are failing. Attached is a SMSTS.log file from the basic win7 pro TS with no driver package wmi call. and below is the end section . ==============================[ OSDSetupHook.exe ]============================== OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Logging successfully initialized to C:\_SMSTaskSequence\Logs OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Executing task sequence OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Loading the Task Sequencing Environment from "C:\_SMSTaskSequence\TSEnv.dat". OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Creating key 'Software\Microsoft\SMS\47006C006F00620061006C005C007B00350031004100300031003600420036002D0046003000440045002D0034003700350032002D0042003900370043002D003500340045003600460033003800360041003900310032007D00' OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Environment scope successfully created: Global\{51A016B6-F0DE-4752-B97C-54E6F386A912} OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Creating key 'Software\Microsoft\SMS\47006C006F00620061006C005C007B00420041003300410033003900300030002D0043004100360044002D0034006100630031002D0038004300320038002D003500300037003300410046004300320032004200300033007D00' OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Environment scope successfully created: Global\{BA3A3900-CA6D-4ac1-8C28-5073AFC22B03} OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,165) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) SMS::Crypto::DES::DecryptBuffer( pbKey, nKeySize, pbEncryptedFile, cbFileLow, pbPlain, nPlainSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,591) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) SMS::Crypto::DES::DecryptBufferFromFile( (BYTE*)sFileKey.c_str(), (DWORD)(sFileKey.size() * sizeof(WCHAR)), pszFilePath, pbDecryptedBuffer, cbDecryptedBuffer ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\environmentlib.cpp,151) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) LoadFromFile(sEnvPath, shXml), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\environmentlib.cpp,750) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Failed to load environment from C:\_SMSTaskSequence\TSEnv.dat (80090005) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) SharedEnvironment.loadEnvironment( sTSEnvDataFile ), HRESULT=80090005 (e:\nts_sccm_release\sms\client\osdeployment\osdgina\basesetuphook.cpp,380) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Failed to load the Task Sequencing Environment object from "C:\_SMSTaskSequence\TSEnv.dat". Code(0x80090005) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) LoadEnvironment( loadDir, bEnvLoaded ), HRESULT=80090005 (e:\nts_sccm_release\sms\client\osdeployment\osdgina\basesetuphook.cpp,1417) OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Uninstalling Setup Hook OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Removing setup hook from registry. OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Successfully removed C:\WINDOWS\system32\OSDGINA.DLL OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Could not delete the file C:\WINDOWS\system32\OSDSETUPHOOK.EXE. Error code 5 OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Marking the file C:\WINDOWS\system32\OSDSETUPHOOK.EXE for deletion on Reboot OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Successfully removed C:\WINDOWS\system32\OSDSETUPHOOK.EXE OSDSetupHook 3/3/2015 5:05:05 PM 2408 (0x0968) Successfully removed C:\WINDOWS\system32\_SMSOSDSetup OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) ::RegOpenKeyExW (HKEY_LOCAL_MACHINE, c_szSMSTSKey, 0, KEY_READ, &hSubKey), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\utils.cpp,258) OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) RegOpenKeyExW failed for Software\Microsoft\SMS\Task Sequence OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) GetTsRegValue() failed. 0x80070002. OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) End program: OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) Finalizing logging from process 2404 OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) Successfully finalized logs to SMS client log directory from C:\WINDOWS\TEMP OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) Cleaning up task sequencing logging configuration. OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) Cleaning up task sequence folder OSDSetupHook 3/3/2015 5:05:06 PM 2408 (0x0968) Deleting volume ID file C:\_SMSTSVolumeID.7159644d-f741-45d5-ab29-0ad8aa4771ca ... OSDSetupHook 3/3/2015 5:05:11 PM 2408 (0x0968) this->run( bReboot ), HRESULT=80090005 (e:\nts_sccm_release\sms\client\osdeployment\osdgina\vistasetuphook.cpp,222) OSDSetupHook 3/3/2015 5:05:11 PM 2408 (0x0968) pHook->execute(), HRESULT=80090005 (e:\nts_sccm_release\sms\client\osdeployment\osdgina\osdsetuphook.cpp,284) OSDSetupHook 3/3/2015 5:05:11 PM 2408 (0x0968) Failed to execute task sequence (0x80090005) OSDSetupHook 3/3/2015 5:05:11 PM 2408 (0x0968) smsts.log
  24. I;m trying to deploy OS in SCCM 2012. I stucked with credentials promt for mdt database on MDT rule processing step. Does anybody know how to disable it? I've added UserID, UserPassword and UserDomain into CustomSetting.ini in mdt settings package, but the credential window always appears. How can I use something like bootstrap.ini in SCCM osd task sequence?
  25. Hello, We have a big problem for Dell Precision M6x00 models with two discs. We try to apply Windows OS on Disk 1 (mSATA) with the task sequence SCCM, but impossible! We have upgraded the BIOS version, same result ! A priori, the Disk 0 has priority over the Disk 1 in all cases Nothing in the BIOS proposes to change this state. Topics similary http://www.windows-noob.com/forums/index.php?/topic/10561-sccm-2012-r2-osd-fails-with-error-80070032/ https://social.technet.microsoft.com/Forums/en-US/297f9adb-d71d-445b-8fdf-9776b70c7b98/multiple-harddisks-and-apply-operating-system-image-failure?forum=configmgrosd have you got a idea ? Regards, MP. … The volume E:\ exists and is a local hard drive. The volume E:\ is using a valid file system. Windows target partition is 1-2, driver letter is E:\ !sSystemPart.empty(), HRESULT=80004005 (e:\qfe\nts\sms\framework\tscore\diskvolume.cpp,131) System partition not set Unable to locate a bootable volume. Attempting to make E:\ bootable. volume.getDisk() == iBootDisk, HRESULT=80070032 (e:\nts_sccm_release\sms\client\osdeployment\applyos\installcommon.cpp,693) Volume E:\ is not on the boot disk and cannot be made bootable. MakeVolumeBootable( pszVolume ), HRESULT=80070032 (e:\nts_sccm_release\sms\client\osdeployment\applyos\installcommon.cpp,772) Failed to make volume E:\ bootable. Please ensure that you have set an active partition on the boot disk before installing the operating system. The request is not supported. (Error: 80070032; Source: Windows) ConfigureBootVolume(targetVolume), HRESULT=80070032 (e:\nts_sccm_release\sms\client\osdeployment\applyos\applyos.cpp,499) Process completed with exit code 2147942450 !--------------------------------------------------------------------------------------------! Failed to run the action: Apply Operating System Image Windows 7 SP1. The request is not supported. (Error: 80070032; Source: Windows)
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.