PortValhalla/scripts/Windows/Software/TrackMania United Forever/Manage.ps1

11 lines
324 B
PowerShell
Raw Normal View History

. "$PSScriptRoot/../../Scripts/Context.ps1";
2023-06-06 23:21:47 +00:00
2023-06-08 00:28:33 +00:00
$null = New-Module {
$path = "$HOME/Documents/TrackMania";
$softwareName = "TmUnitedForever";
2023-06-30 10:19:54 +00:00
function Backup-TmUnited([Context] $context) {
2023-06-08 00:28:33 +00:00
$context.Backup($path, $context.SoftwareArchive($softwareName), @("-i@`"$PSScriptRoot/include.txt`""));
}
2023-06-06 23:21:47 +00:00
}