Last active
August 15, 2024 10:14
-
-
Save hasherezade/9eedcf7176802966d652b3c9ba32d398 to your computer and use it in GitHub Desktop.
AppInit_DLLs : install/uninstall DLL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows] | |
"LoadAppInit_DLLs"=dword:00000001 | |
"AppInit_DLLs"="C:\\dlls\\demo64.dll" | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Windows] | |
"LoadAppInit_DLLs"=dword:00000001 | |
"AppInit_DLLs"="C:\\dlls\\demo32.dll" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows] | |
"LoadAppInit_DLLs"=dword:00000000 | |
"AppInit_DLLs"="" | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Windows] | |
"LoadAppInit_DLLs"=dword:00000000 | |
"AppInit_DLLs"="" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment