From 076ec75cd840c140386a2ff18c0f3a342cbb7888 Mon Sep 17 00:00:00 2001 From: smo Date: Tue, 8 Apr 2025 08:54:50 +0000 Subject: [PATCH] Update toolbox.ps1 --- toolbox.ps1 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/toolbox.ps1 b/toolbox.ps1 index 682e6c6..699eaf0 100644 --- a/toolbox.ps1 +++ b/toolbox.ps1 @@ -21,6 +21,7 @@ function Show-MainMenu { Write-Host "[2] Windows11 Bedrijfsportal installeren" -ForegroundColor Yellow Write-Host "[3] Cris z'n Autopilot Hash Script ONLINE" -ForegroundColor Yellow Write-Host "[4] Cris z'n Autopilot Hash Script OFFLINE" -ForegroundColor Yellow + Write-Host "[5] GPO & MDM Sync forceren" -ForegroundColor Yellow # Voeg meer opties toe Write-Host "[X] Afsluiten" -ForegroundColor Red Write-Host @@ -43,6 +44,10 @@ function Run-Script4 { irm https://git.seppjm.com/smo/ps-tools/raw/branch/main/cris-autopilot-offline.ps1 | iex Pause } +function Run-Script5 { + irm https://git.seppjm.com/smo/ps-tools/raw/branch/main/gp-mdm-sync.ps1 | iex + Pause +} # --- loop om gebruikersinvoer op te vragen en uit te voeren --- while ($true) { @@ -62,6 +67,9 @@ while ($true) { "4" { Run-Script4 } + "5" { + Run-Script5 + } # Voeg hier meer genummerde opties toe