ps/Modules/SystemProfile/chocolateyUninstall.ps1
2023-05-30 22:51:22 -07:00

6 lines
203 B
PowerShell

$ErrorActionPreference = 'Stop';
$packageName= 'Alkami.PowerShell.SystemProfile'
$targetLocation = Join-Path $env:windir "system32\WindowsPowerShell\v1.0\profile.ps1"
Remove-Item $targetLocation -Force