--- type: "topic" created: "2024-01-06T01:25:36.077Z" updated: "2024-01-06T01:25:36.077Z" --- # File Type ```bash # https://superuser.com/questions/29717/associate-a-file-type-with-a-specific-program REM FTYPE Tab-Separated-Values="C:\Windows\System32\notepad.exe" "%1" ASSOC .tsv=Tab-Separated-Values FTYPE Comma-Separated-Values="C:\Windows\System32\notepad.exe" "%1" ASSOC .csv=Comma-Separated-Values FTYPE Text="C:\Windows\System32\notepad.exe" "%1" ASSOC .txt=Text FTYPE json="C:\Windows\System32\notepad.exe" "%1" ASSOC .json=json FTYPE xml="C:\Windows\System32\notepad.exe" "%1" ASSOC .xml=xml FTYPE Log="C:\Windows\System32\notepad.exe" "%1" ASSOC .log=Log FTYPE Configuration="C:\Windows\System32\notepad.exe" "%1" ASSOC .conf=Configuration FTYPE Configuration="C:\Windows\System32\notepad.exe" "%1" ASSOC .config=Configuration FTYPE Public-Key="C:\Windows\System32\notepad.exe" "%1" ASSOC .pub=Public-Key FTYPE CSharp="C:\Windows\System32\notepad.exe" "%1" ASSOC .cs=CSharp FTYPE CSharp-Project="C:\Windows\System32\notepad.exe" "%1" ASSOC .csproj=CSharp-Project FTYPE ProcessDataStandardFormat="C:\Windows\System32\notepad.exe" "%1" ASSOC .pdsf=ProcessDataStandardFormat FTYPE Markdown="C:\Windows\System32\notepad.exe" "%1" ASSOC .md=Markdown FTYPE Configuration="C:\Windows\System32\notepad.exe" "%1" ASSOC .ini=Configuration ASSOC .ipj="C:\Program Files (x86)\InfinityQS International\ProFicient\Applications\iispcmi.exe" REM ```