PortValhalla/scripts/Windows/Software/osu!lazer/Manage.ps1

48 lines
1.5 KiB
PowerShell
Raw Normal View History

2024-08-08 02:36:35 +00:00
param(
$Action,
[hashtable] $Arguments
)
2024-08-28 10:47:07 +00:00
& {
param($Parameters)
. "$PSScriptRoot/../../Scripts/Restoration.ps1";
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
. "$PSScriptRoot/../../../Common/Scripts/System.ps1";
$path = "$env:AppData/osu";
2024-08-08 02:36:35 +00:00
2024-08-28 10:47:07 +00:00
Start-SoftwareInstaller @Parameters `
-UserBackup {
param([hashtable] $Arguments)
Add-BackupArtifacts -User $Arguments.Name -Source $path -Path "osu!lazer" `
-Include @(
"files",
"rulesets",
"screenshots",
"framework.ini",
"game.ini",
"input.json"
);
} `
-UserConfigurator {
$file = "osu!lazer.exe";
$processName = "osu!";
$dir = New-TemporaryDirectory;
2024-08-08 02:36:35 +00:00
2024-08-28 10:47:07 +00:00
Push-Location $dir;
Invoke-WebRequest "https://github.com/ppy/osu/releases/latest/download/install.exe" -OutFile $file;
Start-Process -FilePath $file;
2024-08-08 02:36:35 +00:00
2024-08-28 10:47:07 +00:00
while (-not (Get-Process -ErrorAction SilentlyContinue $processName)) {
Start-Sleep 1;
}
2024-08-08 02:36:35 +00:00
2024-08-28 10:47:07 +00:00
Start-Sleep 10;
Get-Process $processName | Stop-Process -Force;
Pop-Location;
Remove-Item -Recurse $dir;
2024-08-08 02:36:35 +00:00
2024-08-28 10:47:07 +00:00
Remove-DesktopIcon "*osu*";
Expand-BackupArtifacts -User $Arguments.Name -Path "osu!lazer" -Target $path;
};
} $PSBoundParameters;