Compare commits

..

38 commits

Author SHA1 Message Date
Manuel Thalmann a749fcf9fd Add a script for creating backups 2024-09-09 14:52:48 +02:00
Manuel Thalmann 1abbd8402f Force profile selection for Windows installation actions 2024-09-09 00:04:06 +02:00
Manuel Thalmann 34110c377d Force line endings of Unix scripts 2024-09-09 00:00:49 +02:00
Manuel Thalmann d1072d52b5 Start setup automatically 2024-09-08 17:48:10 +02:00
Manuel Thalmann eb72304da6 Show profile selection during setup 2024-09-08 17:48:02 +02:00
Manuel Thalmann 5786007b78 Add a function for selecting the profile 2024-09-08 17:47:49 +02:00
Manuel Thalmann 5a5a439ecf Use same installer script for all profiles 2024-09-08 17:47:28 +02:00
Manuel Thalmann 0622d085f3 Fix non-functioning WSL installation 2024-09-08 17:42:31 +02:00
Manuel Thalmann a02a4b3f40 Make Oh-My-Posh theme location dynamic 2024-09-08 17:42:11 +02:00
Manuel Thalmann 49defe698d Improve performance 2024-09-08 17:41:30 +02:00
Manuel Thalmann 7444ac1ed1 Update Selenium to the newest version 2024-09-08 17:12:01 +02:00
Manuel Thalmann dad4bcc4ae Switch to named flakes 2024-09-08 17:09:01 +02:00
Manuel Thalmann 60cad3b2d5 Store user related options properly 2024-09-03 23:11:28 +02:00
Manuel Thalmann 831eba83a4 Refactor the directory structure 2024-09-03 23:10:35 +02:00
Manuel Thalmann cfa79a211a Add code for cleaning up after installations 2024-09-03 22:15:15 +02:00
Manuel Thalmann 2a7425125d Add functions for uninstalling packages 2024-09-03 22:14:21 +02:00
Manuel Thalmann c7be2a00bd Improve assignments of groups 2024-09-03 20:32:01 +02:00
Manuel Thalmann 98d76eb9bd Remove unnecessary policy change 2024-09-03 16:31:12 +02:00
Manuel Thalmann 3ea0092e92 Migrate winiso script to fish 2024-09-03 12:08:47 +02:00
Manuel Thalmann fc75af9ac6 Ask for live scripts only once 2024-09-03 12:08:35 +02:00
Manuel Thalmann 704dc40811 Install Ubuntu automatically 2024-09-03 12:08:14 +02:00
Manuel Thalmann 5db19fd8a4 Add a backup script for reWASD 2024-09-03 12:02:48 +02:00
Manuel Thalmann db90dc3f92 Add a backup script for Visual Studio 2024-09-03 12:02:32 +02:00
Manuel Thalmann ef308add7e Allow backing up TrackMania Forever 2024-09-03 12:02:09 +02:00
Manuel Thalmann ac1c5beb45 Allow testing winget packages with specific scope 2024-09-03 01:16:42 +02:00
Manuel Thalmann 884d724afb Allow backing up RetroArch 2024-08-28 13:07:58 +02:00
Manuel Thalmann e6ebb1bb4d Add scripts for backing up PuTTY 2024-08-28 13:00:37 +02:00
Manuel Thalmann 6b6a057f44 Add scripts for backing up osu! 2024-08-28 12:47:07 +02:00
Manuel Thalmann 0537682a55 Install osu!lazer per user 2024-08-28 12:37:20 +02:00
Manuel Thalmann c82ecd92df Add backup support for ManiaPlanet 2024-08-28 05:18:52 +02:00
Manuel Thalmann 094bdae2df Add scripts for backing up and restoring LGHub 2024-08-28 05:05:55 +02:00
Manuel Thalmann a100b33c99 Allow users to restore a backup 2024-08-28 04:40:32 +02:00
Manuel Thalmann f2c66e8150 Add scripts for backing up and restoring personal files 2024-08-28 04:40:00 +02:00
Manuel Thalmann d2120b7758 Fix non-functioning profile script 2024-08-28 04:39:15 +02:00
Manuel Thalmann 73400ea7d2 Ensure 7z is installed for backups 2024-08-28 04:38:56 +02:00
Manuel Thalmann 69c5d84af6 Streamline restoration of directories 2024-08-28 04:38:30 +02:00
Manuel Thalmann 874901004e Set a default path for backup artifacts 2024-08-28 00:38:20 +02:00
Manuel Thalmann 2a421e637e Add capabilities to back up apps 2024-08-28 00:37:04 +02:00

View file

@ -371,7 +371,7 @@ $null = New-Module {
switch ($_) {
([InstallerAction]::BackupUser) {
if ($UserBackup) {
Write-Host "Backing up ``$Name`` for user ``$user``";
Write-Host "Backing up $Name for user ``$user``";
& $UserBackup @argumentList;
}
}