I've created a DOS batch file which will release and renew the system's IP when it boots. I installed it on a system running win2k pro. For the batch file to execute at startup, I added the following value to the registry below:
Value=IPConfig string c:\WINNT\system\release.bat
HKEY_LOCAL_MACHINE\software\microsoft\windows\current version\run
The .bat file itself consists of the following lines:
@echo off
ipconfig /release
ipconfig /renew
It works great when I log on as the administrator but won't run when logging on as a standard user. Anyone have any idea what security setting needs to change to allow this little batch file to run? Thank you in advance....
Value=IPConfig string c:\WINNT\system\release.bat
HKEY_LOCAL_MACHINE\software\microsoft\windows\current version\run
The .bat file itself consists of the following lines:
@echo off
ipconfig /release
ipconfig /renew
It works great when I log on as the administrator but won't run when logging on as a standard user. Anyone have any idea what security setting needs to change to allow this little batch file to run? Thank you in advance....