ps/Modules/SystemProfile/chocolateyInstall.ps1

8 lines
342 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
$ErrorActionPreference = 'Stop';
$packageName= 'Alkami.PowerShell.SystemProfile'
$stagingDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileLocation = Join-Path $stagingDir 'profile.ps1'
$targetLocation = Join-Path $env:windir "system32\WindowsPowerShell\v1.0\profile.ps1"
Copy-Item $fileLocation $targetLocation -Force