From 37df1f43dcb5c9f53c46c6b52b9c9a9ff2a2ffb1 Mon Sep 17 00:00:00 2001 From: romanitho <96626929+Romanitho@users.noreply.github.com> Date: Wed, 13 Dec 2023 17:33:37 +0100 Subject: [PATCH] Update asset to WAU-Configurator.zip --- Sources/WAU/Gui.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()