Downloads

Free sample configs and scripts. No login required. For the full production-grade SCCM kit (PowerShell wizards, Task Sequence XML, the 41-page printable booklet), see the gated bundle below.

Free templates

Sample CustomSettings.ini (MDT)

Template with per-model driver injection rules. Adapt to your domain and OU.

[Settings]
Priority=Model, Default
Properties=ModelAlias

[Default]
OSInstall=Y
…
CustomSettings.ini

Sample Bootstrap.ini (MDT)

Credentials WinPE uses to reach the deployment share.

[Settings]
Priority=Default

[Default]
DeployRoot=\\mdt01.corp.example.com\DeploymentShare$
UserID=svc_mdt_pull
…
Bootstrap.ini

Sample autounattend.xml

Skeleton answer file for a fully unattended Win 11 install. Generate yours at schneegans.de/windows/unattend-generator.

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
  <settings pass="windowsPE">
    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64">
      <SetupUILanguage><UILanguage>en-US</UILanguage></SetupUILanguage>
      <InputLocale>en-US</InputLocale>
…
autounattend.xml

PowerShell: Get-AutopilotHash.ps1

Capture the Autopilot hardware hash from a laptop in OOBE.

#requires -RunAsAdministrator
# Run from Shift+F10 PowerShell in Windows 11 OOBE
Set-ExecutionPolicy Bypass -Force -Scope Process
Install-Script -Name Get-WindowsAutopilotInfo -Force -Confirm:$false
Get-WindowsAutopilotInfo -Online
Get-AutopilotHash.ps1

PowerShell: Set-HPBIOS.ps1

Apply a BIOS settings file via HP BIOS Configuration Utility. Embed in your MDT task sequence.

param(
  [string]$ConfigFile = ".\HP-BIOS-Baseline.txt",
  [string]$PasswordFile = ".\bios-password.bin"
)
$bcu = ".\BiosConfigUtility64.exe"
if (-not (Test-Path $bcu)) { Write-Error "BiosConfigUtility64.exe missing"; exit 1 }
…
Set-HPBIOS.ps1

Full SCCM kit — the production bundle

The complete pre-built deployment package: 10 PowerShell scripts (driver pack downloader, ref-image builder, post-OSD baseline, BCU helpers), 5 Task Sequence XMLs, the WinPE prompt HTA, app-install list, ODT configuration, and the 41-page printable A4 booklet. A free account is required to download the bundle.

Get the complete toolkit