How do I modify the system PATH environment variable using script (or even a registry setting) so that when Windows boots it's already configured?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

My google-fu was lacking earlier. The way to do this is using the SETX tool:

SETX NEWVAR %systemroot%\system32\inetsrv /M
SETX PATH %PATH%;%NEWVAR% /M
link|improve this answer
feedback

You can find environment variables at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment.

link|improve this answer
Thanks...all I needed for now was to be able to set them in a batch file. But bookmarked for future ref. – Kev Sep 7 '09 at 13:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.