Advertisement
dcandygmailcom

This allows x64 programs to use the 32 bit Script Control

Feb 15th, 2019
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 0.78 KB | None | 0 0
  1. REM Two files follow
  2. REM _EnableMSScriptControlforX64PerUser.bat
  3. REM This file merges MSScript.reg using the Reg.exe command.
  4. REM This allows x64 programs to use the 32 bit Script Control
  5. REM It is a per user setting but Regedit doesn't allow non admins to run it
  6. reg import "%~dp0\MSScript.reg"
  7. Pause
  8.  
  9. ----------------------------------------------------
  10.  
  11. Windows Registry Editor Version 5.00
  12. ;MSScript.reg
  13.  
  14. [HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}]
  15. @="ScriptControl Object"
  16. "AppID"="{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}"
  17.  
  18. [HKEY_CURRENT_USER\SOFTWARE\Classes\Wow6432Node\AppID\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}]
  19. "DllSurrogate"=""
  20.  
  21. [HKEY_CURRENT_USER\SOFTWARE\Classes\AppID\{0E59F1D5-1FBE-11D0-8FF2-00A0D10038BC}]
  22. "DllSurrogate"=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement