Compare commits

..

26 commits

Author SHA1 Message Date
Manuel Thalmann 346e93983d Add scripts for backing up and restoring LGHub 2024-08-28 05:05:55 +02:00
Manuel Thalmann 4a23017987 Allow users to restore a backup 2024-08-28 04:40:32 +02:00
Manuel Thalmann 682c281b04 Add scripts for backing up and restoring personal files 2024-08-28 04:40:00 +02:00
Manuel Thalmann 899b58261b Fix non-functioning profile script 2024-08-28 04:39:15 +02:00
Manuel Thalmann 87408b9080 Ensure 7z is installed for backups 2024-08-28 04:38:56 +02:00
Manuel Thalmann db422c45fb Streamline restoration of directories 2024-08-28 04:38:30 +02:00
Manuel Thalmann fd514b1415 Set a default path for backup artifacts 2024-08-28 00:38:20 +02:00
Manuel Thalmann 16271566f2 Add capabilities to back up apps 2024-08-28 00:37:04 +02:00
Manuel Thalmann b01faf1145 Allow specifying a backup action 2024-08-28 00:29:33 +02:00
Manuel Thalmann bf51308c30 Ignore unspecified backup archives 2024-08-28 00:22:38 +02:00
Manuel Thalmann cddf06a9d3 Ignore inexistent backup artifacts 2024-08-28 00:21:06 +02:00
Manuel Thalmann 00d9809fcb Make the install script action agnostic 2024-08-28 00:03:28 +02:00
Manuel Thalmann 53a0e59649 Rename the Windows installer script 2024-08-27 23:35:56 +02:00
Manuel Thalmann d7c7d69318 Rename outdated script 2024-08-27 23:08:41 +02:00
Manuel Thalmann 058126c70d Silence errors concerning empty aliae configurations 2024-08-27 22:35:31 +02:00
Manuel Thalmann 922f8d73e6 Make Operations script cross platform 2024-08-27 22:27:44 +02:00
Manuel Thalmann d4360a4a15 Handle OneShot tasks only on Windows 2024-08-27 21:32:49 +02:00
Manuel Thalmann 3614be475e Add a script for managing backups 2024-08-27 21:05:51 +02:00
Manuel Thalmann 1047a7a471 Add tools for managing aliae 2024-08-27 18:58:33 +02:00
Manuel Thalmann f5f024f97f Fix non-functioning aliae installation 2024-08-27 18:55:12 +02:00
Manuel Thalmann 7e25efe764 Create dedicated script for creating users 2024-08-27 17:04:17 +02:00
Manuel Thalmann ba0d0dca61 Create dedicated script for installing software 2024-08-27 16:41:08 +02:00
Manuel Thalmann aef7893551 Prevent reading nix config multiple times 2024-08-27 14:35:04 +02:00
Manuel Thalmann c2337fe349 Ensure only one user is enabled at once 2024-08-27 14:11:31 +02:00
Manuel Thalmann fecb9f37aa Prevent unnecessary file creation 2024-08-27 14:06:56 +02:00
Manuel Thalmann 45ad9cb17e Execute OneShot tasks in any operation 2024-08-27 14:05:16 +02:00

View file

@ -47,7 +47,7 @@ $null = New-Module {
Set-PSDebug -Trace 1;
}
if ($IsWindows -and ($null -ne (Get-OneShotTask))) {
if ($null -ne (Get-OneShotTask)) {
$taskPending = $true;
[switch] $NonInteractive = $true;
}