Production-grade Windows PE builder with PowerShell 7 integration. Features: - PowerShell 7 integrated into WinPE environment - Automatic script launcher for external media - Configurable startup and fallback scripts - Custom console colors - Maximized console window on boot - PowerShell module integration - Windows ADK auto-installation - Defender optimization for faster builds Project Structure: - Build-PE.ps1: Main build orchestrator - config.json: Configuration file - lib/: Build modules (Dependencies, WinPEBuilder, PowerShell7, ModuleManager, DefenderOptimization) - resources/: Runtime scripts (Invoke-ScriptLauncher, Invoke-ScriptMenu, Driver-Manager) - CLAUDE.md: Complete project documentation - README.md: Quick start guide Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
15 lines
485 B
JSON
15 lines
485 B
JSON
{
|
|
"powershellModules": [
|
|
"Microsoft.PowerShell.ConsoleGuiTools"
|
|
],
|
|
"targetScript": "Driver-Manager.ps1",
|
|
"scriptsFolder": ".scripts",
|
|
"startupScript": "Invoke-ScriptLauncher.ps1",
|
|
"fallbackScript": "Invoke-ScriptMenu.ps1",
|
|
"consoleColors": {
|
|
"backgroundColor": "Black",
|
|
"foregroundColor": "Gray"
|
|
},
|
|
"powershell7Version": "7.4.13",
|
|
"powershell7ZipUrl": "https://github.com/PowerShell/PowerShell/releases/download/v7.4.13/PowerShell-7.4.13-win-x64.zip"
|
|
}
|