param ( $Action, [hashtable] $Arguments ) . "$PSScriptRoot/../../../Common/Software/PowerShell/Module.ps1"; . "$PSScriptRoot/../../../Common/Scripts/Software.ps1"; $parameters = Get-ModuleInstallerComponents "PinnedItem" -NativeOnly -NoProfile; foreach ($key in $PSBoundParameters.Keys) { $parameters.Add($key, $PSBoundParameters.TryGetValue($key)); } $arguments = $parameters.arguments; $arguments.Add("Installer", $parameters.installer); Start-SoftwareInstaller @parameters -Installer { param( [scriptblock] $Installer, [hashtable] $Arguments ) $module = $Arguments.Name; & $Arguments.Installer @PSBoundParameters; if (-not (& { powershell -NoProfile -Command "Import-Module $module; exit ([bool]`$Error)" 2> $null; $?; })) { $feature = "NetFx3"; if ((Get-WindowsOptionalFeature -Online -FeatureName $feature).State -ne "Enabled") { Write-Host "Enabling ``$feature`` featureā€¦"; choco install --source windowsFeatures -y $feature; } } }