This commit is contained in:
2025-10-10 23:15:11 +03:00
parent 9ece0152e4
commit f8dbd7b7d1
2 changed files with 8 additions and 8 deletions
-8
View File
@@ -12,14 +12,6 @@ if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdent
Write-Host "Administrator privileges confirmed."
# Define available modules with their respective actions
$modules = @{
"appsDataManagerModule" = @("reconnect", "connect", "disconnect")
"autostartManagerModule" = @("update", "remove")
"mountsManagerModule" = @("reconnect", "connect", "disconnect")
"deployModule" = @("apply", "clean")
}
# Interactive module selection
Clear-Host
Write-Host "Select a module:"
+8
View File
@@ -6,6 +6,14 @@ $autostartManagerModule = "$PSScriptRoot\modules\autostart-manager.ps1"
$mountsManagerModule = "$PSScriptRoot\modules\mounts-manager.ps1"
$deployModule = "$PSScriptRoot\modules\deploy.ps1"
# Define available modules with their respective actions
$modules = @{
"appsDataManagerModule" = @("reconnect", "connect", "disconnect")
"autostartManagerModule" = @("update", "remove")
"mountsManagerModule" = @("reconnect", "connect", "disconnect")
"deployModule" = @("apply", "clean")
}
# Package Manager Installers
$winget = "$PSScriptRoot\winget.ps1"