Silence errors if the WSL package isn't installed (#9076)
Blue committed
Oct 31, 2022 at 19:48 UTC
f8fca4afcbff4e42755129ba602a177c40961d07
1 file changed
+1
-1
diagnostics/collect-wsl-logs.ps1
+1
-1
@@ -33,7 +33,7 @@ if (Test-Path $wslconfig)
33
}
34
35
get-appxpackage MicrosoftCorporationII.WindowsSubsystemforLinux > $folder/appxpackage.txt
36
-get-acl "C:\ProgramData\Microsoft\Windows\WindowsApps" | Format-List > $folder/acl.txt
36
+get-acl "C:\ProgramData\Microsoft\Windows\WindowsApps" -ErrorAction Ignore | Format-List > $folder/acl.txt
37
38
wpr.exe -start $LogProfile -filemode
39