From faae0e69cb250653ff9ee805531e6f485cad3bf3 Mon Sep 17 00:00:00 2001 From: MyDrift Date: Sun, 14 Jul 2024 02:52:56 +0200 Subject: [PATCH] fix --- functions/private/Install-WinUtilChoco.ps1 | 1 - 1 file changed, 1 deletion(-) diff --git a/functions/private/Install-WinUtilChoco.ps1 b/functions/private/Install-WinUtilChoco.ps1 index 7c8de564..24716bb1 100644 --- a/functions/private/Install-WinUtilChoco.ps1 +++ b/functions/private/Install-WinUtilChoco.ps1 @@ -13,7 +13,6 @@ function Install-WinUtilChoco { if((Test-WinUtilPackageManager -choco) -eq "installed") { return } - Write-Host "Seems Chocolatey is not installed, installing now." Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) -ErrorAction Stop