From 89f747c2fb9cb3fb7ef06e089e71ac5d72312422 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Wed, 4 Jun 2025 23:03:30 -0600 Subject: [PATCH] Added titles for Servers and Agents --- Borealis.ps1 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Borealis.ps1 b/Borealis.ps1 index ddd24e9..4340369 100644 --- a/Borealis.ps1 +++ b/Borealis.ps1 @@ -14,7 +14,7 @@ Usage: Set-ExecutionPolicy Unrestricted -Scope Process; .\Borealis.ps1 #> - +$host.UI.RawUI.WindowTitle = "Borealis" Clear-Host # ASCII Art Banner @@ -251,6 +251,7 @@ $choice = Read-Host switch ($choice) { "1" { + $host.UI.RawUI.WindowTitle = "Borealis Server" Write-Host " " Write-Host "Configure Borealis Server Mode:" -ForegroundColor DarkYellow Write-Host " 1) Build & Launch > " -NoNewLine -ForegroundColor DarkGray @@ -357,6 +358,7 @@ switch ($choice) { } "2" { + $host.UI.RawUI.WindowTitle = "Borealis Agent" # Agent Deployment (Client / Data Collector) Write-Host " " Write-Host "Deploying Borealis Agent..." -ForegroundColor Blue @@ -393,6 +395,7 @@ switch ($choice) { } "3" { + $host.UI.RawUI.WindowTitle = "Borealis Electron" # Desktop App Deployment (Electron) Clear-Host Write-Host "Deploying Borealis Desktop App..." -ForegroundColor Cyan @@ -453,6 +456,7 @@ switch ($choice) { } "4" { + $host.UI.RawUI.WindowTitle = "Borealis Packager" # Prompt the User for Which System to Package using Pyinstaller Write-Host "Choose which module to package into a self-contained EXE file:" -ForegroundColor DarkYellow Write-Host " 1) Server" -ForegroundColor DarkGray @@ -485,6 +489,7 @@ switch ($choice) { } "5" { + $host.UI.RawUI.WindowTitle = "Borealis Updater" Write-Host " " Write-Host "Updating Borealis..." -ForegroundColor Green