hevnbnd Posted October 25, 2004 Posted October 25, 2004 Ok i am using this tweak to add the option to open unkown file types with notepad: ;----- Makes a right click option for unknown files (Open with notepad) ;-----[HKEY_CLASSES_ROOT\*\shell]@="\"notepad.exe %1\""[HKEY_CLASSES_ROOT\*\shell\open]@="Open &With Notepad"[HKEY_CLASSES_ROOT\*\shell\open\command]@="notepad.exe %1"Is there a tweak to have ever file that i open via the open with notepad option to from that point on show open with notepad as if i had gone into the file and clicked open and then selected notepad as the default program to open the file and put a check in "Always use the selected program to open this type of file" Does this make sense....
Tsunami Posted October 25, 2004 Posted October 25, 2004 I think it's possible from a batch file, but I can't cough up a file right now. I'll see what I can do Edit: I'm not sure if this will always work, if you find some errors tell me and I'll see if I can fix it.@ECHO OFFFOR /F "tokens=2 delims=." %%A IN ("%1") DO SET EXT=%%AREG ADD HKCR\.%EXT%\shell\open\command /VE /D "notepad.exe %%1" /FSTART notepad.exe %1EXITSave this as notepad.bat and put it in your system32 directory. Then import this to the registry:[HKEY_CLASSES_ROOT\*\shell]@="notepad.bat \"%1\""[HKEY_CLASSES_ROOT\*\shell\open]@="Open &With Notepad"[HKEY_CLASSES_ROOT\*\shell\open\command]@="notepad.bat \"%1\""
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now