14 lines
519 B
Batchfile
14 lines
519 B
Batchfile
@echo off
|
|
|
|
SETLOCAL
|
|
SET SC=HKLM\SOFTWARE\Classes
|
|
SET Extn=tmd tmv doc dot docx docm dotx dotm odt ott sxw xtw rtf
|
|
FOR %%j IN (%Extn%) DO (
|
|
REG ADD %SC%\.%%j /VE /D "TextMakerViewer.%%j" /F
|
|
REG ADD %SC%\TextMakerViewer.%%j /VE /D "TextMaker Viewer" /F
|
|
REG ADD %SC%\TextMakerViewer.%%j\DefaultIcon /VE /D "\"%PROGRAMFILES%\SoftMaker Viewer\TextMaker/TMViewer.exe\"" /F
|
|
REG ADD %SC%\TextMakerViewer.%%j\shell\open\command /VE /D "\"%PROGRAMFILES%\SoftMaker Viewer\TextMaker/TMViewer.exe\" \"%%1\"" /F
|
|
)
|
|
ENDLOCAL
|
|
|
|
exit |