Windows – Access/modify the user Path variable, not system Path

command lineenvironment-variablespathuser-accountswindows

I am trying to make an Inno-setup installer for a program and my workplace doesn't allow us "regular" users to modify the system environment. In an effort to get around the restrictions, I'm trying to add my program's .exe to the user Path variable instead of the system Path. Since this is in an installer, it basically will need to be done via command line prompts.

I have been looking around and found the SETX command a while ago, and while it does indeed modify the user's Path, it also includes the entire system Path. For example:

setx PATH "C:\MyStuff;%PATH%"

will return this user Path:

C:\MyStuff;[The entire system PATH];[What was in the user path before]

While this technically fulfills my requirement, I feel like this is very poor practice to make the user's Path massive and redundant with the system Path.

So here's my question:

Using command line prompts, how can I modify only the user's Path variable?

EDIT: Appears to be a duplicate of Prevent Windows System %PATH% from being prepended to user %PATH?

Best Answer

So, I suppose I should have indicated I am using Inno-setup to create the installer file. Inno-setup has a built-in registry modifier to change user path variables. I found the answer at:

https://stackoverflow.com/questions/3304463/how-do-i-modify-the-path-environment-variable-when-running-an-inno-setup-install

The steps there describe how to set environment variables. Good luck anyone trying to do this!

Related Question