Silence unnecessary output

This commit is contained in:
Manuel Thalmann 2024-08-06 17:07:57 +02:00
parent 4e4d273cc7
commit 49c83dd364

View file

@ -17,7 +17,7 @@ Start-SoftwareInstaller @PSBoundParameters `
} `
-Configurator {
$nativeProfile = powershell -c '$PROFILE';
New-Item -Force $nativeProfile;
$null = New-Item -Force $nativeProfile;
choco install -y --force chocolatey;
Copy-Item -Force $nativeProfile $PROFILE;