Make pwsh show all messages

This commit is contained in:
Manuel Thalmann 2023-06-22 17:27:43 +02:00
parent aaed1891bc
commit 3ab7bb9e64

View file

@ -5,3 +5,7 @@ foreach ($module in @("PSWindowsUpdate", "KnownFolders"))
Install-Module -AcceptLicense -Force "$module";
}
}
$Global:DebugPreference = "Continue";
$Global:InformationPreference = "Continue";
$Global:VerbosePreference = "Continue";