I need to permanently add a scripts folder to my PowerShell path (not just a particular session). I am running the following code:
[System.Environment]::SetEnvironmentVariable("PATH", $Env:Path + ";C:\scripts", "Machine")
The error is as follows:
Exception calling "SetEnvironmentVariable" with "3" argument(s): "Requested registry access is not allowed."
How do I get registry access/fix this?
EDIT: Not sure if it helps, but I'm using PowerCLI (VMware PowerShell API) on Windows Server 2012.