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.
This commit is contained in:
rbalsleyMSFT
2025-07-23 20:56:36 -07:00
parent 57cb349371
commit 576c0a82f8
@@ -52,5 +52,6 @@ foreach ($appFolder in Get-ChildItem -Path $basePath -Directory) {
# Output and execute the command # Output and execute the command
Write-Output $dismCommand Write-Output $dismCommand
Invoke-Expression -Command $dismCommand Invoke-Expression -Command $dismCommand
Write-Output ""
} }
} }