This registry script registers a new file type `.fuzzle` with the MIME-type `application/x-fuzzle` and instructs IE and Edge that the file should be opened using the DirectInvoke mechanism.
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_CLASSES_ROOT\.fuzzle] | |
"Content Type"="application/x-fuzzle" | |
@="FuzzleProgID" | |
[HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/x-fuzzle] | |
"Extension"=".fuzzle" | |
[HKEY_CLASSES_ROOT\FuzzleProgID] | |
@="FakeMIME for Testing DirectInvoke" | |
"EditFlags"=dword:00410000 | |
[HKEY_CLASSES_ROOT\FuzzleProgID\shell] | |
[HKEY_CLASSES_ROOT\FuzzleProgID\shell\open] | |
@="" | |
[HKEY_CLASSES_ROOT\FuzzleProgID\shell\open\command] | |
@="C:\\windows\\alert.exe \"%1\"" | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\alert.exe] | |
"UseURL"=dword:00000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment