From a3ffbb898f586600eb2988c0b022257987c757ae Mon Sep 17 00:00:00 2001 From: Dmitry Nefedov Date: Mon, 4 Mar 2024 00:07:34 +0300 Subject: [PATCH] Update Download_Sophia.ps1 --- Download_Sophia.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Download_Sophia.ps1 b/Download_Sophia.ps1 index 6a5471d1..3affb048 100644 --- a/Download_Sophia.ps1 +++ b/Download_Sophia.ps1 @@ -167,26 +167,32 @@ switch ($Version) "LTSC2019" { Invoke-Item -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_LTSC_2019_v$LatestRelease" + Set-Location -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_LTSC_2019_v$LatestRelease" } "LTSC2021" { Invoke-Item -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_LTSC_2021_v$LatestRelease" + Set-Location -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_LTSC_2021_v$LatestRelease" } "Windows_10_PowerShell_5.1" { Invoke-Item -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_v$LatestRelease" + Set-Location -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_v$LatestRelease" } "Windows_10_PowerShell_7" { Invoke-Item -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_PowerShell_7_v$LatestRelease" + Set-Location -Path "$DownloadsFolder\Sophia_Script_for_Windows_10_PowerShell_7_v$LatestRelease" } "Windows_11_PowerShell_5.1" { Invoke-Item -Path "$DownloadsFolder\Sophia_Script_for_Windows_11_v$LatestRelease" + Set-Location -Path "$DownloadsFolder\Sophia_Script_for_Windows_11_v$LatestRelease" } "Windows_11_PowerShell_7" { Invoke-Item -Path "$DownloadsFolder\Sophia_Script_for_Windows_11_PowerShell_7_v$LatestRelease" + Set-Location -Path "$DownloadsFolder\Sophia_Script_for_Windows_11_PowerShell_7_v$LatestRelease" } }