PowerShell_Scripts/choco/profile.d/autocomplete.ps1

6 lines
174 B
PowerShell
Raw Normal View History

2021-11-15 19:42:46 +00:00
# Chocolatey profile
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
Import-Module "$ChocolateyProfile"
}