Config/PowerShell_profile.ps1
# Chocolatey profile $ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" if (Test-Path($ChocolateyProfile)) { Import-Module "$ChocolateyProfile" } # ----------------------------------- $JaapsTools = "$($env:USERPROFILE)\git\JaapsTools\JaapsTools.psd1" if (Test-Path $JaapsTools) { Import-Module $JaapsTools -Force } if (Get-Command -Name Startup -ea 0) { Startup } # ----------------------------------- |