diff --git a/Sources/WAU/Gui.ps1 b/Sources/WAU/Gui.ps1 index 7a0cd859..4406d496 100644 --- a/Sources/WAU/Gui.ps1 +++ b/Sources/WAU/Gui.ps1 @@ -347,11 +347,11 @@ function Get-WAUConfiguratorLatestVersion { { $WAUConfiguratorSaveFile = New-Object System.Windows.Forms.SaveFileDialog $WAUConfiguratorSaveFile.Filter = "Zip file (*.zip)|*.zip" - $WAUConfiguratorSaveFile.FileName = "WAU_$WAUConfiguratorLatestVersion.zip" + $WAUConfiguratorSaveFile.FileName = "WAU-Configurator_$WAUConfiguratorLatestVersion.zip" $response = $WAUConfiguratorSaveFile.ShowDialog() # $response can return OK or Cancel if ( $response -eq 'OK' ) { Start-PopUp "Downloading WAU Configurator $WAUConfiguratorLatestVersion..." - $WAUConfiguratorDlLink = "https://github.com/Romanitho/Winget-AutoUpdate/releases/download/v$WAUConfiguratorLatestVersion/WAU.zip" + $WAUConfiguratorDlLink = "https://github.com/Romanitho/Winget-AutoUpdate/releases/download/v$WAUConfiguratorLatestVersion/WAU-Configurator.zip" Invoke-WebRequest -Uri $WAUConfiguratorDlLink -OutFile $WAUConfiguratorSaveFile.FileName -UseBasicParsing $UpdateWindow.DialogResult = [System.Windows.Forms.DialogResult]::OK $UpdateWindow.Close()