diff --git a/profiles/DerGeret/Windows/Backup.ps1 b/profiles/DerGeret/Windows/Backup.ps1 index 02c374da..2419dca9 100644 --- a/profiles/DerGeret/Windows/Backup.ps1 +++ b/profiles/DerGeret/Windows/Backup.ps1 @@ -1,7 +1,7 @@ #!/bin/pwsh $null = New-Module { . "$PSScriptRoot/../../../scripts/Common/Scripts/Context.ps1"; - . "$PSScriptRoot/../../../scripts/Windows/OS/Manage.ps1"; + . "$PSScriptRoot/../../../scripts/Windows/OS/Legacy.ps1"; Write-Host "Starting Backup of Windows"; $context = [Context]::new(); diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 933d08c5..70225c6f 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -6,7 +6,7 @@ using namespace System.Security.Principal; . "$PSScriptRoot/../../Common/Scripts/Context.ps1"; . "$PSScriptRoot/../Scripts/Security.ps1"; . "$PSScriptRoot/../Software/Firefox/Install.ps1"; -. "$PSScriptRoot/Manage.ps1"; +. "$PSScriptRoot/Legacy.ps1"; . "$PSScriptRoot/User/Install.ps1"; $null = New-Module { diff --git a/scripts/Windows/OS/Manage.ps1 b/scripts/Windows/OS/Legacy.ps1 similarity index 100% rename from scripts/Windows/OS/Manage.ps1 rename to scripts/Windows/OS/Legacy.ps1