Kit Sunde Asked: 2015-02-02 11:20:05 +0800 CST2015-02-02 11:20:05 +0800 CST 2015-02-02 11:20:05 +0800 CST Can I permanently add to PATH in windows using batch? 772 Is it possible to permanently add c:/project/bin to PATH i windows using only batch? windows 1 Answers Voted Best Answer Ryan Ries 2015-02-02T13:01:06+08:002015-02-02T13:01:06+08:00 This command will permanently set the current user's "Path" variable: setx path "%PATH%;C:\Project\Bin" The next command will adjust the system variable instead of the user variable: setx path "%PATH%;C:\Project\Bin" /M
This command will permanently set the current user's "Path" variable:
The next command will adjust the system variable instead of the user variable: