2024-09-23 01:33:17 +00:00
|
|
|
. "$PSScriptRoot/../../Scripts/SoftwareManagement.ps1";
|
2024-08-07 21:22:04 +00:00
|
|
|
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
|
|
|
|
. "$PSScriptRoot/../../../Common/Types/InstallerAction.ps1";
|
|
|
|
|
2024-08-23 21:53:48 +00:00
|
|
|
& {
|
|
|
|
$base = "$PSScriptRoot/../../../Common/Software/Oh My Posh/Manage.ps1";
|
|
|
|
|
2024-09-30 03:00:20 +00:00
|
|
|
Start-SoftwareInstaller @args `
|
2024-08-23 21:53:48 +00:00
|
|
|
-Installer {
|
|
|
|
Install-WingetPackage JanDeDobbeleer.OhMyPosh -ArgumentList "--scope","machine";
|
|
|
|
} `
|
|
|
|
-Configurator {
|
2024-09-30 03:00:20 +00:00
|
|
|
. $base -Action ([InstallerAction]::Configure) @args;
|
2024-08-23 21:53:48 +00:00
|
|
|
} `
|
|
|
|
-UserConfigurator {
|
2024-09-30 03:00:20 +00:00
|
|
|
. $base -Action ([InstallerAction]::ConfigureUser) @args;
|
2024-08-23 21:53:48 +00:00
|
|
|
};
|
2024-09-30 03:00:20 +00:00
|
|
|
} @args;
|