Tag: sysctr

  • Deploy Windows 10 Preview with SCCM 2012 R2 (Unsupported)

    Johan Arwidmark and Niall Brady have posted guides on deploying Windows 10 Preview injecting the Windows 10 version of Dism during the task sequence. http://www.deploymentresearch.com/Research/tabid/62/EntryId/193/Beyond-unsupported-Deploying-Windows-10-preview-including-drivers-with-ConfigMgr-2012-R2.aspx http://www.windows-noob.com/forums/index.php?/topic/11394-how-can-i-deploy-windows-10-enterprise-using-system-center-2012-r2-configuration-manager/  

  • Adding custom programs to the Set Default Programs UI

    Hi, today I wanted the CMTrace tool to be recognised in the Set Default Programs control panel applet. There is a bit of information on the net but it’s confusing. In the registry you can set the program, launch arguments, file types and icon. This can be used for any app by modifying the reg…

  • Modular Task Sequence groups – Just an idea

    Maik Koster has created a really good tool that monitors/ keeps backup of task sequence changes http://myitforum.com/cs2/blogs/maikkoster/archive/2011/05/12/versioning-monitoring-sccm-task-sequences.aspx expanding from this it may be possible to mark groups of your task sequences as modules. So say when a task sequence changes the script would then record the xml changes of that module group and replace in…

  • Add a Right Click Copy Folder or File path menu option in Windows Explorer

    Add a Right Click Copy Folder or File path menu option in Windows Explorer

    SCCM ConfigMgr doesn’t like quotes around paths when adding packages or Wims, etc so the secret shh shift + right click copy as path isn’t that handy. Here’s a reg file to add a special right click option for ConfigMgr Download

  • Take advantage of OEM Settings to display OSD state!

    Take advantage of OEM Settings to display OSD state!

    I have 2 scenarios that allows techs to determine the computers state. When the task sequence fails or when a Lab computer hasn’t been added to a lab group. It’s easy to enable the oembackground and rename a jpg picture. Group policy reg can disable the background picture. For the first scenario you enable ‘Continue…

  • SCCM USB Boot disk creator

    I made a little program that sets up usb drives to be bootable into OSD winpe. I made it because we are getting devices without dvd drives that can’t pxe boot and our techs don’t have access to create bootable usb’s from the console as they need the dp cert and password. You generate a…

  • BDEDrive size

      It helps to set a bit more space for this partition if you add more components to the boot wim, I chose to use 1GB. SCCM uses the drive with the most space that isn’t encrypted to copy the boot wim down. We had issues in operating system deployment if the boot wim needed…

  • Set Computer Model OEM Information during task sequence.

    Make your SOE a little bit fancy     To set the Computer Model information during OSD you just need to add a run command line step Powershell.exe -ExecutionPolicy Bypass -Command $model = Get-WmiObject win32_computersystem model;Set-ItemProperty -Path HKLM:SoftwareMicrosoftWindowsCurrentVersionOEMInformation -Name Model -Value $model.model     Other Settings you can put in HKLMSoftwareMicrosoftWindowsCurrentVersionOEMInformation Logo – Pathtologo.bmp Manufacturer…

  • OSD Black screen of death.

    After using a new captured image (Win 7 x64) certain machines were not completing OSD and ending up at a black screen with just a mouse cursor. Dell T1700, E6440, E7240, M4800. This was after the May patching, the only update that has been reported to play up (well with flash?) was KB2926765. We removed…

  • Powershell script to clean up IIS's log file mess

    Powershell script to clean up IIS’s log file mess

    Management Point’s rely heavily on IIS and IIS loves to log a lot which will fill up your hard drive. Here’s a script that deletes logs older than 14 days. Location and amount of days can be changed easily. We have ours scheduled to run monthly on site systems using IIS. Download