diff --git a/scripts/Windows/Scripts/System.ps1 b/scripts/Windows/Scripts/System.ps1 index 5bbf99b6..aa35db50 100644 --- a/scripts/Windows/Scripts/System.ps1 +++ b/scripts/Windows/Scripts/System.ps1 @@ -33,7 +33,7 @@ function Remove-DesktopIcon { $fullName = "$userDir/$path"; if (Test-Path -PathType Leaf $fullName) { - Remove-Item $fullName; + Remove-Item -Force $fullName; } } }