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
|
[hashtable] $Arguments
|
||||||
)
|
)
|
||||||
|
|
||||||
. "$PSScriptRoot/../../../Common/Scripts/BrowserAutomation.ps1";
|
& {
|
||||||
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
param($Parameters)
|
||||||
. "$PSScriptRoot/../../../Common/Scripts/System.ps1";
|
. "$PSScriptRoot/../../Scripts/Restoration.ps1";
|
||||||
|
. "$PSScriptRoot/../../../Common/Scripts/BrowserAutomation.ps1";
|
||||||
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
||||||
|
. "$PSScriptRoot/../../../Common/Scripts/System.ps1";
|
||||||
|
|
||||||
Start-SoftwareInstaller @PSBoundParameters `
|
$path = "$env:Public/Documents/reWASD";
|
||||||
-Installer {
|
|
||||||
Write-Host "Downloading reWASD…";
|
|
||||||
$dir = New-TemporaryDirectory;
|
|
||||||
$file = Start-BrowserDownload -URL "https://rewasd.com/" -ButtonSelector 'a.btn-default[href="#"]' -OutDir $dir -Timeout 1;
|
|
||||||
|
|
||||||
Write-Host "Installing reWASD…";
|
Start-SoftwareInstaller @Parameters `
|
||||||
Start-Process -Wait -FilePath $($file.FullName) -ArgumentList "/S";
|
-Backup {
|
||||||
Remove-Item -Recurse $dir;
|
Add-BackupArtifacts -Path "reWASD" -Source $path `
|
||||||
Remove-DesktopIcon "*reWASD*";
|
-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