From 5cfcd36138308f662b5dd566e0b8556cacf92f8f Mon Sep 17 00:00:00 2001 From: MyDrift Date: Thu, 8 Aug 2024 21:23:37 +0200 Subject: [PATCH] add silent installation --- functions/private/Uninstall-WinUtilEdgeBrowser.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/private/Uninstall-WinUtilEdgeBrowser.ps1 b/functions/private/Uninstall-WinUtilEdgeBrowser.ps1 index 1f859500..da313558 100644 --- a/functions/private/Uninstall-WinUtilEdgeBrowser.ps1 +++ b/functions/private/Uninstall-WinUtilEdgeBrowser.ps1 @@ -119,7 +119,7 @@ Function Uninstall-WinUtilEdgeBrowser { write-host "Installing Edge" Invoke-WebRequest -Uri "https://go.microsoft.com/fwlink/?linkid=2109047&Channel=Stable&language=en&consent=1" -OutFile $tempEdgePath - Start-Process -FilePath $tempEdgePath + Start-Process -FilePath $tempEdgePath -ArgumentList "/silent /install" -Wait Remove-item $tempEdgePath }