How would I create my task sequence boot media .iso file to USB flash driver ??

How would I create my task sequence boot media .iso file to USB flash driver ?? Here is the software from MS and it’s free https://www.microsoftstore.com/store/msusa/html/pbPage.Help_Win7_usbdvd_dwnTool To make a copy of your Windows 7 ISO file: Click the Windows START button, and click WINDOWS 7 USB/DVD DOWNLOAD TOOL in the ALL PROGRAMS list to open … Read more

SCCM R2 Technet CHM File available for download from MS

https://www.microsoft.com/en-us/download/details.aspx?id=29901 chm file is available for SCCM 2012 R2Here is the download linkhttps://www.microsoft.com/en-us/download/confirmation.aspx?id=29901read here more…  https://www.microsoft.com/en-us/download/details.aspx?id=29901 Version: Date Published: 3.0 3/11/2014 File name: File size: SC2012_ConfigMgr_DocDownload.docx 3.4 MB SC2012_ConfigMgr_ChmDownload.exe 3.4 MB SC2012_ConfigMgr_PDFDownload.pdf 33.7 MB The downloadable files listed on this page contain the product documentation for System Center 2012 R2 Configuration Manager. The documentation also … Read more

Technical Documentation SCCM 2012 R2 CHM file

Just found that the chm file is available for SCCM 2012 R2 Here is the download link https://www.microsoft.com/en-us/download/confirmation.aspx?id=29901 read here more…  https://www.microsoft.com/en-us/download/details.aspx?id=29901 Version: Date Published: 3.0 3/11/2014 File name: File size: SC2012_ConfigMgr_DocDownload.docx 3.4 MB SC2012_ConfigMgr_ChmDownload.exe 3.4 MB SC2012_ConfigMgr_PDFDownload.pdf 33.7 MB The downloadable files listed on this page contain the product documentation for System Center 2012 … Read more

Running “apply operating system” is failing with error code 0x80070241

Issue: – Running “apply operating system” is failing with error code 0x80070241 The SMSTS.log looked like below <![LOG[Skipping C:_SMSTaskSequence for wipe]LOG]!><time="10:43:35.088+00" date="03-06-2014" component="ApplyOperatingSystem" context="" type="1" thread="896" file="ccmfile.cpp:983"> <![LOG[Calculating expected free space.]LOG]!><time="10:43:35.103+00" date="03-06-2014" component="ApplyOperatingSystem" context="" type="0" thread="1336" file="installcommon.cpp:229"> <![LOG[Reporting deletion progress.]LOG]!><time="10:43:35.103+00" date="03-06-2014" component="ApplyOperatingSystem" context="" type="0" thread="1336" file="installcommon.cpp:247"> <![LOG[Successfully wiped C:]LOG]!><time="10:43:35.119+00" date="03-06-2014" component="ApplyOperatingSystem" context="" type="1" thread="896" file="installcommon.cpp:860"> … Read more

Powershell script to download the given links in text file, it’s like your download manager

 ‘Powershell script to download the given links in text file, it’s like your download manager $folder = “E:ThinkPad W500” $userAgent = “Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1” $web = New-Object System.Net.WebClient $web.Headers.Add(“user-agent”, $userAgent) Get-Content “E:WIPurls.txt” |     Foreach-Object {         “Downloading ” + $_         try … Read more

SCCM-OSD-Registry-DevicePath

SCCM-OSD-Registry-DevicePath   ‘ //*************************************************************************** ‘ //***************************************************************************  ‘//—————————————————————————- ‘// ‘// Global constant and variable declarations ‘// ‘//—————————————————————————-  Option Explicit  Dim iRetVal DIM objRegistry DIM strComputer Dim objFSO, vDriverPaths strComputer = “.” Set objRegistry = GetObject(“winmgmts:” & strComputer & “rootdefault:StdRegProv”) ‘//—————————————————————————- ‘// End declarations ‘//—————————————————————————-  ‘//—————————————————————————- ‘// Main routine ‘//—————————————————————————-  On Error Resume Next iRetVal = ZTIProcess … Read more

Build Info in the Registry From OSD task Sequence

To Implement the Build info in the Registry Simply add below TS steps at the end of task sequence Each Step explanation Branding – TSeq Build Date: add a ts type as Run command line Command line: cmd /c reg add HKEY_LOCAL_MACHINESOFTWARECSCSOE /v TaskSequence_BuildDate /d "%date% %time%" /f For getting Task Sequence Name in the … Read more