From 576c0a82f82a2b1d6a78ff19a83c583da2d43a5d Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Wed, 23 Jul 2025 20:56:36 -0700 Subject: [PATCH] Improve script output readability Adds a blank line after each application installation command. This visually separates the output for each app, making the logs easier to read in the terminal. --- FFUDevelopment/Apps/Orchestration/Install-StoreApps.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/FFUDevelopment/Apps/Orchestration/Install-StoreApps.ps1 b/FFUDevelopment/Apps/Orchestration/Install-StoreApps.ps1 index 07cc120..253ca23 100644 --- a/FFUDevelopment/Apps/Orchestration/Install-StoreApps.ps1 +++ b/FFUDevelopment/Apps/Orchestration/Install-StoreApps.ps1 @@ -52,5 +52,6 @@ foreach ($appFolder in Get-ChildItem -Path $basePath -Directory) { # Output and execute the command Write-Output $dismCommand Invoke-Expression -Command $dismCommand + Write-Output "" } } \ No newline at end of file