diff --git a/scripts/Windows/Software/osu!/Manage.ps1 b/scripts/Windows/Software/osu!/Manage.ps1
index 983152ec..ff4c3c61 100644
--- a/scripts/Windows/Software/osu!/Manage.ps1
+++ b/scripts/Windows/Software/osu!/Manage.ps1
@@ -18,6 +18,7 @@ $null = New-Module {
         Write-Host "Restoring osu!";
         Write-Information "Installing osu!";
         choco install -y osu;
+        Remove-Item "$env:PUBLIC\Desktop\*osu*";
         Write-Information "Restoring files";
         $context.Restore($context.SoftwareArchive($softwareName), $path);
         $configName = "osu!.$env:USERNAME.cfg";
diff --git a/scripts/Windows/Software/osu!lazer/Manage.ps1 b/scripts/Windows/Software/osu!lazer/Manage.ps1
index c0ba4b08..43a5440c 100644
--- a/scripts/Windows/Software/osu!lazer/Manage.ps1
+++ b/scripts/Windows/Software/osu!lazer/Manage.ps1
@@ -20,6 +20,7 @@ $null = New-Module {
         Push-Location $tempDir;
         Invoke-WebRequest "https://github.com/ppy/osu/releases/latest/download/install.exe" -OutFile $installerName;
         Start-Process -Wait -FilePath $installerName;
+        Remove-Item "~\Desktop\*osu*";
         Pop-Location;
         Remove-Item -Recurse $tempDir;
     }