From c766c974cf57a212c5f8a5efd981af9280350b67 Mon Sep 17 00:00:00 2001 From: Myles Markevich <79232311+mylesmarkevich@users.noreply.github.com> Date: Mon, 17 Nov 2025 12:55:42 -0500 Subject: [PATCH] Fix typo in oscdimg.exe message box text (#3701) --- functions/microwin/Invoke-MicrowinGetIso.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/microwin/Invoke-MicrowinGetIso.ps1 b/functions/microwin/Invoke-MicrowinGetIso.ps1 index 42b14c54..c8fe8ae2 100644 --- a/functions/microwin/Invoke-MicrowinGetIso.ps1 +++ b/functions/microwin/Invoke-MicrowinGetIso.ps1 @@ -132,7 +132,7 @@ function Invoke-MicrowinGetIso { if (!$downloadFromGitHub) { # only show the message to people who did check the box to download from github, if you check the box # you consent to downloading it, no need to show extra dialogs - [System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it using choco. This might take a long time.") + [System.Windows.MessageBox]::Show("oscdimg.exe is not found on the system, winutil will now attempt do download and install it using choco. This might take a long time.") # the step below needs choco to download oscdimg # Install Choco if not already present Install-WinUtilChoco @@ -149,7 +149,7 @@ function Invoke-MicrowinGetIso { [System.Windows.MessageBox]::Show($msg) return } else { - [System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it from github. This might take a long time.") + [System.Windows.MessageBox]::Show("oscdimg.exe is not found on the system, winutil will now attempt do download and install it from github. This might take a long time.") Invoke-MicrowinBusyInfo -action "wip" -message "Downloading oscdimg.exe..." -interactive $false Microwin-GetOscdimg -oscdimgPath $oscdimgPath $oscdImgFound = Test-Path $oscdimgPath -PathType Leaf