From 322d915855ab70b0cc92d799284b75f6f7379d03 Mon Sep 17 00:00:00 2001 From: MarcoColomb0 Date: Sat, 9 Dec 2023 19:04:10 +0100 Subject: [PATCH] Launcher looks cooler --- AzurePSDeployer.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/AzurePSDeployer.ps1 b/AzurePSDeployer.ps1 index eebd147..0cfe676 100644 --- a/AzurePSDeployer.ps1 +++ b/AzurePSDeployer.ps1 @@ -12,7 +12,7 @@ #> # Display available services and prompt for user input -Write-Host "You are currently able to deploy these services" +Write-Host "🌟 You are currently able to deploy these services" Write-Host "1. Windows 11 - 23H2 (Client)" Write-Host "2. Windows Server - 2022 Datacenter Edition" @@ -27,11 +27,12 @@ switch ($DeploymentPrompt) { $DeploymentType = "ws-2022" } default { - Write-Host "Invalid selection. Exiting script." + Write-Host "❌ Invalid selection. Exiting script." -ForegroundColor Red exit } } # Build the script URL and deploy the selected service $ScriptURL = "https://github.com/MarcoColomb0/AzurePSDeployer/raw/main/deployments/$DeploymentType.ps1" +Write-Host "🚀 Starting $DeploymentType deployment..." -ForegroundColor Green Invoke-WebRequest -Uri $ScriptURL | Invoke-Expression