From d9c21876e812360d188e5cc8c5f0ad4f4c1cadaf Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 20 Aug 2024 21:00:37 +0200 Subject: [PATCH] Silently continue when DSR is already closed --- install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index 768e006..be0b88b 100644 --- a/install.ps1 +++ b/install.ps1 @@ -16,7 +16,7 @@ Invoke-WebRequest -Uri $link -OutFile $archive Remove-Item "$path" -Recurse -ErrorAction SilentlyContinue # Close running DSR -Stop-Process -Name "DSR" -Force +Stop-Process -Name "DSR" -Force -ErrorAction SilentlyContinue # Installation Expand-Archive -Path $archive -DestinationPath "$path" -Force