PortValhalla/scripts/Windows/Config/PowerShell/Install.ps1

9 lines
287 B
PowerShell
Raw Normal View History

#!/bin/pwsh
param($context)
. "$PSScriptRoot/../../Scripts/Context.ps1";
Write-Host "Configuring PowerShell";
Write-Information "Allow addition of any number of profile files";
[Context] $context = $context;
$context.AddPowerShellProfileStatement('. "$PSScriptRoot/profile.d/*.ps1";');