Remove edge icon at the very end

This commit is contained in:
Manuel Thalmann 2023-07-29 11:28:32 +02:00
parent 4031d0b0f1
commit 8edd0ca479

View file

@ -35,8 +35,6 @@ function Restore-PersonalApps([Context] $context) {
Install-PersonalDrivers $context; Install-PersonalDrivers $context;
} }
$context.RemoveDesktopIcon("*Microsoft Edge*")
# Backed up applications # Backed up applications
Restore-Git $context; Restore-Git $context;
Restore-LogitechGHUB $context; Restore-LogitechGHUB $context;
@ -183,4 +181,5 @@ function Restore-PersonalApps([Context] $context) {
ppsspp; ppsspp;
$context.RemoveDesktopIcon("PPSSPP *32-Bit*"); $context.RemoveDesktopIcon("PPSSPP *32-Bit*");
$context.RemoveDesktopIcon("*Microsoft Edge*");
} }