What are ways to associate file from cmd?
For example,I want .txt
file extension to associate with a typical program, through command prompt?
what is the correct file association cmd command?
File association using CMD
4.3k Views Asked by T.Todua At
3
There are 3 best solutions below
1

File association with COMMAND PROMPT (using .bat
file):
REG ADD "HKEY_CLASSES_ROOT\Applications\notepad++.exe\shell\open\command" /v "" /t REG_SZ /d "\"C:\Program Files\\Notepad++\\notepad++.exe\" \"%%1\"" /f
::or use ---------------> REG ADD "HKEY_CLASSES_ROOT\txtfile\shell\open\command" /v "" /t REG_SZ /d "\"C:\Program Files\\Notepad++\\notepad++.exe\" \"%%1\"" /f
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.txt" /v "Application" /t REG_SZ /d "notepad++.exe" /f
REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.txt\OpenWithList" /v "g" /t REG_SZ /d "notepad++.exe" /f
ftype txtfile="C:\Program Files\Notepad++\notepad++.exe" "%%1"
assoc .txt=txtfile
NOTE! If typing directly in CMD(instead of .bat) then use single % (instead of double %%) and single \ (instead of double \)
One needs to use
ftype
andassoc
commands as follows (and note that sequence matters):or
Note that I haven't
MSPVIEW.exe
installed so I can't approve yourftype
assignment rightness. In my Windowsftype TIFImage.Document
command output is as follows: