2026-03-13 16:34:45 +01:00
|
|
|
{
|
Add config GUI, USB launcher, flash folder; fix bugs
- config-editor.hta: lightweight WYSIWYG HTA editor for config.json
- Step on/off toggles with info tooltips
- Editable software list (winget packages)
- Settings: timezone, admin account, desktopInfo, PDF default
- Run.cmd: USB launcher with UAC auto-elevation and deployment menu
- flash/: minimal USB-ready subset (Deploy, scripts, config, GUI, launcher)
- config.json: add steps section for per-step enable/disable
- Deploy-Windows.ps1: read steps from config, CLI switches override
- 03-system-registry.ps1: add SearchOnTaskbarMode HKLM policy (Win11 search fix)
- 04-default-profile.ps1: fix systray - clear TrayNotify cache + proper Explorer restart
- 06-scheduled-tasks.ps1: fix Register-Task trigger array, ShowAllTrayIcons Win11 fix,
PDF-DefaultApp runs as SYSTEM via HKCR (bypasses UserChoice Hash validation)
- 02-software.ps1: remove unreliable UserChoice ProgId write without Hash
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-16 09:35:42 +01:00
|
|
|
"steps": {
|
|
|
|
|
"adminAccount": true,
|
|
|
|
|
"bloatware": true,
|
|
|
|
|
"software": true,
|
|
|
|
|
"systemRegistry": true,
|
|
|
|
|
"defaultProfile": true,
|
|
|
|
|
"personalization": true,
|
|
|
|
|
"scheduledTasks": true,
|
|
|
|
|
"desktopInfo": true,
|
|
|
|
|
"activation": true
|
|
|
|
|
},
|
2026-03-13 16:34:45 +01:00
|
|
|
"deployment": {
|
|
|
|
|
"timezone": "Central Europe Standard Time",
|
2026-03-14 19:15:30 +01:00
|
|
|
"locale": "cs-CZ"
|
|
|
|
|
},
|
|
|
|
|
"adminAccount": {
|
|
|
|
|
"username": "adminx9",
|
|
|
|
|
"password": "AdminX9.AdminX9",
|
|
|
|
|
"description": "X9 MSP admin account"
|
|
|
|
|
},
|
|
|
|
|
"activation": {
|
|
|
|
|
"productKey": "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
|
|
|
|
|
"kmsServer": ""
|
2026-03-13 16:34:45 +01:00
|
|
|
},
|
|
|
|
|
"software": {
|
|
|
|
|
"install": [
|
|
|
|
|
{ "name": "7-Zip", "wingetId": "7zip.7zip" },
|
|
|
|
|
{ "name": "Adobe Acrobat Reader","wingetId": "Adobe.Acrobat.Reader.64-bit" },
|
|
|
|
|
{ "name": "OpenVPN Connect", "wingetId": "OpenVPNTechnologies.OpenVPNConnect" }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"bloatware": {
|
|
|
|
|
"keepPackages": [
|
|
|
|
|
"Microsoft.WindowsCalculator"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"desktopInfo": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"position": "bottomRight",
|
|
|
|
|
"fontSize": 12,
|
|
|
|
|
"fontColor": "#FFFFFF",
|
|
|
|
|
"backgroundColor": "transparent"
|
|
|
|
|
},
|
|
|
|
|
"pdfDefault": {
|
|
|
|
|
"forceAdobeReader": true,
|
|
|
|
|
"scheduledTaskEnabled": true
|
|
|
|
|
}
|
|
|
|
|
}
|