Code for automatically accepting the EULA for the SysInternals tools.


/ Published in: DOS Batch
Save to your folder(s)

This is to simply run through a directory of executables and adds the appropriate SysInterls registry entry (from http://forum.sysinternals.com/forum_posts.asp?TID=9038&PN=2)


Copy this code and paste it in your HTML
  1. for %%i in (*.exe) do reg add HKCU\Software\Sysinternals\%%~ni /v EulaAccepted /t REG_DWORD /d 1 /f
  2. reg add "HKCU\Software\Sysinternals\Active Directory Explorer" /v EulaAccepted /t REG_DWORD /d 1 /f

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.