Browse Source

Update Download_Sophia.ps1

pull/264/head
Dmitry Nefedov 3 years ago
committed by GitHub
parent
commit
602bc6e434
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Download_Sophia.ps1

4
Download_Sophia.ps1

@ -124,7 +124,7 @@ Remove-Item -Path "$DownloadsFolder\Sophia.Script.zip" -Force
Start-Sleep -Second 1
Invoke-Item -Path "$DownloadsFolder\Sophia Script *"
Invoke-Item -Path "$DownloadsFolder\Sophia Script v$LatestStableVersion"
$SetForegroundWindow = @{
Namespace = "WinAPI"
@ -143,7 +143,7 @@ if (-not ("WinAPI.ForegroundWindow" -as [type]))
Add-Type @SetForegroundWindow
}
Get-Process | Where-Object -FilterScript {$_.MainWindowTitle -eq "Sophia Script v$LatestRelease"} | ForEach-Object -Process {
Get-Process | Where-Object -FilterScript {$_.MainWindowTitle -eq "Sophia Script v$LatestStableVersion"} | ForEach-Object -Process {
# Show window, if minimized
[WinAPI.ForegroundWindow]::ShowWindowAsync($_.MainWindowHandle, 5)

Loading…
Cancel
Save