From e1b1dfafac5660f0493658bf76e6903eba719460 Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Thu, 29 May 2025 19:33:11 -0700 Subject: [PATCH] Reorder script execution list to ensure Install-Office.ps1 runs after Update-Defender.ps1 and remove unnecessary pause --- FFUDevelopment/Apps/Orchestration/Orchestrator.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/FFUDevelopment/Apps/Orchestration/Orchestrator.ps1 b/FFUDevelopment/Apps/Orchestration/Orchestrator.ps1 index bf26611..70badd8 100644 --- a/FFUDevelopment/Apps/Orchestration/Orchestrator.ps1 +++ b/FFUDevelopment/Apps/Orchestration/Orchestrator.ps1 @@ -30,8 +30,8 @@ $scriptPath = Split-Path -Parent $MyInvocation.MyCommand.Definition # Define the list of scripts to run, order doesn't matter - if you have a custom script, add it here $scriptList = @( - "Install-Office.ps1", "Update-Defender.ps1", + "Install-Office.ps1", "Update-MSRT.ps1", "Update-OneDrive.ps1", "Update-Edge.ps1", @@ -48,7 +48,6 @@ foreach ($script in $scriptList) { Write-Host " Running script: $script " -ForegroundColor Yellow Write-Host "---------------------------------------------------" -ForegroundColor Yellow # Run script and wait for it to finish - # pause & $scriptFile } }