Print a warning concerning backup preservation

This commit is contained in:
Manuel Thalmann 2024-03-23 16:34:08 +01:00
parent 0e214fbe2a
commit f0d9441a19
2 changed files with 2 additions and 2 deletions

View file

@ -7,6 +7,4 @@ $null = New-Module {
$context = [Context]::new();
$context.BackupName = $env:BACKUP_NAME ?? $(Read-Host -Prompt "Please enter a backup name");
Backup-WindowsInstallation $context;
Write-Host "Never forget to store the backup somewhere safe!";
Write-Host "I mean... what kind of a dumbass would ever forget to do so, right?";
}

View file

@ -13,6 +13,8 @@ function Backup-WindowsInstallation([Context] $context) {
Backup-PersonalApps $context;
$context.Backup($backupRoot, "$backupRoot.7z", @("-sdel"), $false);
$context.Cleanup();
Write-Host "Never forget to store the backup somewhere safe!";
Write-Host "I mean... what kind of a dumbass would ever forget to do so, right?";
}
function Restore-WindowsInstallation([Context] $context) {