Add a backup script for reWASD
This commit is contained in:
parent
e54a92dc52
commit
2cf84dc44c
1 changed files with 36 additions and 14 deletions
|
@ -3,20 +3,42 @@ param(
|
|||
[hashtable] $Arguments
|
||||
)
|
||||
|
||||
. "$PSScriptRoot/../../../Common/Scripts/BrowserAutomation.ps1";
|
||||
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
||||
. "$PSScriptRoot/../../../Common/Scripts/System.ps1";
|
||||
& {
|
||||
param($Parameters)
|
||||
. "$PSScriptRoot/../../Scripts/Restoration.ps1";
|
||||
. "$PSScriptRoot/../../../Common/Scripts/BrowserAutomation.ps1";
|
||||
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
||||
. "$PSScriptRoot/../../../Common/Scripts/System.ps1";
|
||||
|
||||
Start-SoftwareInstaller @PSBoundParameters `
|
||||
-Installer {
|
||||
Write-Host "Downloading reWASD…";
|
||||
$dir = New-TemporaryDirectory;
|
||||
$file = Start-BrowserDownload -URL "https://rewasd.com/" -ButtonSelector 'a.btn-default[href="#"]' -OutDir $dir -Timeout 1;
|
||||
$path = "$env:Public/Documents/reWASD";
|
||||
|
||||
Write-Host "Installing reWASD…";
|
||||
Start-Process -Wait -FilePath $($file.FullName) -ArgumentList "/S";
|
||||
Remove-Item -Recurse $dir;
|
||||
Remove-DesktopIcon "*reWASD*";
|
||||
};
|
||||
Start-SoftwareInstaller @Parameters `
|
||||
-Backup {
|
||||
Add-BackupArtifacts -Path "reWASD" -Source $path `
|
||||
-Exclude @(
|
||||
"Logs",
|
||||
"Presets",
|
||||
"Profiles/Desktop",
|
||||
"Profiles/Duality",
|
||||
"Profiles/Fortnite",
|
||||
"Profiles/PS4 Remote*",
|
||||
"Profiles/Switch console",
|
||||
"Profiles/Switch to Xbox 360",
|
||||
"Profiles/Valorant",
|
||||
"Profiles/xCloud"
|
||||
);
|
||||
} `
|
||||
-Installer {
|
||||
Write-Host "Downloading reWASD…";
|
||||
$dir = New-TemporaryDirectory;
|
||||
$file = Start-BrowserDownload -URL "https://rewasd.com/" -ButtonSelector 'a.btn-default[href="#"]' -OutDir $dir -Timeout 1;
|
||||
|
||||
# ToDo: Add restoration
|
||||
Write-Host "Installing reWASD…";
|
||||
Start-Process -Wait -FilePath $($file.FullName) -ArgumentList "/S";
|
||||
Remove-Item -Recurse $dir;
|
||||
Remove-DesktopIcon "*reWASD*";
|
||||
} `
|
||||
-Configurator {
|
||||
Expand-BackupArtifacts -Path "reWASD" -Target $path;
|
||||
};
|
||||
} $PSBoundParameters;
|
||||
|
|
Loading…
Reference in a new issue