PowerShell_Scripts/choco/profile.d/autocomplete.ps1
2021-11-15 14:42:46 -05:00

5 lines
174 B
PowerShell

# Chocolatey profile
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
Import-Module "$ChocolateyProfile"
}