40 lines
1.1 KiB
PowerShell
40 lines
1.1 KiB
PowerShell
|
[CmdletBinding()]
|
||
|
Param(
|
||
|
# No parameters
|
||
|
)
|
||
|
|
||
|
$RequiredPSModules = @(
|
||
|
'ntobjectmanager' # Provides cmdlet 'Set-ExecutionAlias'
|
||
|
)
|
||
|
|
||
|
$InstallPackageProviderSplat = @{
|
||
|
Name = 'NuGet'
|
||
|
MinimumVersion = '2.8.5.201'
|
||
|
Force = $True
|
||
|
Confirm = $False
|
||
|
}
|
||
|
Install-PackageProvider @InstallPackageProviderSplat
|
||
|
$SetPSRepositorySplat = @{
|
||
|
Name = 'PSGallery'
|
||
|
InstallationPolicy = 'Trusted'
|
||
|
}
|
||
|
Set-PSRepository @SetPSRepositorySplat
|
||
|
$InstallModuleSplat = @{
|
||
|
Name = $RequiredPSModules
|
||
|
Force = $True
|
||
|
Confirm = $False
|
||
|
}
|
||
|
Install-Module @InstallModuleSplat
|
||
|
$SetPSRepositorySplat = @{
|
||
|
Name = 'PSGallery'
|
||
|
InstallationPolicy = 'Untrusted'
|
||
|
}
|
||
|
Set-PSRepository @SetPSRepositorySplat
|
||
|
|
||
|
# Double check whether the required PowerShell modules are available
|
||
|
ForEach ($Module in $RequiredPSModules) {
|
||
|
If ([boolean](Get-Module -Name $Module -ListAvailable) -ne $True) {
|
||
|
Write-Error -Message "Missing PowerShell module '$($Module)'"
|
||
|
Exit 1
|
||
|
}
|
||
|
}
|