48 lines
1.3 KiB
PowerShell
48 lines
1.3 KiB
PowerShell
|
[CmdletBinding()]
|
||
|
Param(
|
||
|
# No parameters
|
||
|
)
|
||
|
|
||
|
$InstallWindowsFeatureSplat = @{
|
||
|
Name = 'Adcs-Cert-Authority'
|
||
|
IncludeAllSubFeature = $True
|
||
|
IncludeManagementTools = $True
|
||
|
Restart = $False
|
||
|
Confirm = $False
|
||
|
}
|
||
|
Install-WindowsFeature @InstallWindowsFeatureSplat
|
||
|
|
||
|
$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 = 'powershell-yaml'
|
||
|
Force = $True
|
||
|
Confirm = $False
|
||
|
}
|
||
|
Install-Module @InstallModuleSplat
|
||
|
$SetPSRepositorySplat = @{
|
||
|
Name = 'PSGallery'
|
||
|
InstallationPolicy = 'Untrusted'
|
||
|
}
|
||
|
Set-PSRepository @SetPSRepositorySplat
|
||
|
|
||
|
# Double check whether the required PowerShell modules are available
|
||
|
$RequiredModules = @(
|
||
|
'powershell-yaml' # Provides cmdlets 'ConvertTo-Yaml' and 'ConvertFrom-Yaml'
|
||
|
)
|
||
|
ForEach ($Module in $RequiredModules) {
|
||
|
If ([boolean](Get-Module -Name $Module -ListAvailable) -ne $True) {
|
||
|
Write-Error -Message "Missing PowerShell module '$($Module)'"
|
||
|
Exit 1
|
||
|
}
|
||
|
}
|