How to add UltraEdit to the System right-click menu
Add UltraEdit to the right-click menu
UltraEdit after installation, copy to other machines can be used directly without registration, but a function, is not able to select a text file with right-click to select UltraEdit Open, very inconvenient, carefully review the registry, found to add the following content to the registry :
Method One (. REG file),
5.00 [hkey_classes_root\*\shell] [hkey_classes_root\*\shell\ultraedit] @= " UltraEdit-32 " [hkey_classes_root\*\shell\ultraedit\command] @="d:\\temp\\ Uedit32.exe%1"
Where D:\\temp\\uedit32.exe is the absolute position of UltraEdit, the content is modified to ultraedit the correct location, put the above content in a file called Xx.reg, double-click can be installed successfully.
But this is not convenient, because different environment, to modify the last line, there is no good way to do it? There, look below:
Method Two (. BAT file),
Create the ***.bat file , the file name is arbitrary, the contents are as follows:
@echo offEchoWindows Registry Editor Version5.00>>Tmp.regEcho[hkey_classes_root\*\shell]>>Tmp.regEcho[hkey_classes_root\*\shell\ultraedit]>>Tmp.regEcho@="UltraEdit-32">>Tmp.regEcho[hkey_classes_root\*\shell\ultraedit\command]>>Tmp.reg Set str=%cd%Echo@="%str:\=\\%\\uedit32.exe%%1">>Tmp.regEcho*================================================*Echo* *Echo* The generated registration information is being written to the registry, please click "Yes" button! *Echo* *Echo*=================================================*Tmp.reg del Tmp.reg
Put the created ***.bat file into the Uedit32 directory, double-click Run, pop-up prompt click "Yes" on it!!!
How to add UltraEdit to the System right-click menu