2024-08-07 20:55:25 +00:00
|
|
|
. "$PSScriptRoot/../../Types/InstallerAction.ps1";
|
|
|
|
|
|
|
|
$null = New-Module {
|
|
|
|
. "$PSScriptRoot/../../Software/PowerShell/Profile.ps1";
|
|
|
|
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Generates the components for creating a module installer.
|
|
|
|
|
|
|
|
.PARAMETER Name
|
|
|
|
The name of the module to install.
|
2024-08-22 21:55:00 +00:00
|
|
|
|
|
|
|
.PARAMETER NativeOnly
|
|
|
|
A value indicating whether the module is installed in Windows PowerShell only.
|
|
|
|
|
|
|
|
.PARAMETER NoProfile
|
|
|
|
A value indicating whether the module is not added to the profile script of users.
|
2024-08-07 20:55:25 +00:00
|
|
|
#>
|
|
|
|
function Get-ModuleInstallerComponents {
|
|
|
|
param(
|
2024-08-08 00:28:23 +00:00
|
|
|
[string] $Name,
|
2024-08-22 21:55:00 +00:00
|
|
|
[switch] $NativeOnly,
|
|
|
|
[switch] $NoProfile
|
2024-08-07 20:55:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
@{
|
|
|
|
arguments = @{
|
|
|
|
name = $Name;
|
2024-08-08 00:28:23 +00:00
|
|
|
nativeOnly = $NativeOnly;
|
2024-08-07 20:55:25 +00:00
|
|
|
};
|
|
|
|
installer = {
|
|
|
|
param(
|
|
|
|
[hashtable] $Arguments
|
|
|
|
)
|
|
|
|
|
|
|
|
$env:PENDING_MODULE_NAME = $Arguments.Name;
|
2024-08-26 23:57:46 +00:00
|
|
|
|
|
|
|
$installAction = {
|
|
|
|
$module = $env:PENDING_MODULE_NAME;
|
|
|
|
|
|
|
|
if (-not (Get-Module -ListAvailable $module -ErrorAction SilentlyContinue)) {
|
|
|
|
Install-Module -Scope AllUsers -Force $module @args;
|
|
|
|
}
|
|
|
|
};
|
2024-08-08 00:28:23 +00:00
|
|
|
|
|
|
|
if (-not $Arguments.NativeOnly) {
|
|
|
|
& $installAction -AcceptLicense;
|
|
|
|
}
|
2024-08-07 20:55:25 +00:00
|
|
|
|
|
|
|
if (Test-Command powershell) {
|
|
|
|
powershell -c ($installAction.ToString());
|
|
|
|
}
|
|
|
|
|
|
|
|
Remove-Item Env:\PENDING_MODULE_NAME;
|
|
|
|
};
|
|
|
|
|
|
|
|
configurator = {
|
|
|
|
param(
|
|
|
|
[hashtable] $Arguments
|
|
|
|
)
|
|
|
|
|
2024-08-22 21:55:00 +00:00
|
|
|
if (-not $NoProfile) {
|
|
|
|
$name = $Arguments.Name;
|
2024-08-07 20:55:25 +00:00
|
|
|
|
2024-08-22 21:55:00 +00:00
|
|
|
Add-PowerShellProfileStatement `
|
|
|
|
-DefaultUser `
|
|
|
|
-Category $name `
|
|
|
|
-Script "Import-Module `"$name`";";
|
|
|
|
}
|
2024-08-07 20:55:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|