• 追加された行はこの色です。
  • 削除された行はこの色です。
* assoc ( ftype ) - 拡張子の関連付け [#g47c5c00]

** 拡張子に関連付けられているファイルタイプの確認 [#v6b172af]
 assoc            # 全拡張子のファイルタイプ一覧
 assoc .xlsx      # .xlsx拡張子に関連付けられているファイルタイプ

** ファイルタイプに対して起動するプログラムの確認 [#d3999e6f]
 ftype                  # 全ファイルタイプに対する起動するプログラム一覧
 ftype Excel.Sheet.12   # ファイルタイプ"Excel.Sheet.12"に対する起動するプログラム

** 起動するプログラムを変更する [#p6bb8f5f]
 assoc .txt
   => .txt=txtfile
 ftype txtfile
   => txtfile=%SystemRoot%\system32\NOTEPAD.EXE %1
 assoc .txt                  # => .txt=txtfile
 ftype txtfile               # => txtfile=%SystemRoot%\system32\NOTEPAD.EXE %1
 ftype "C:\Bin\vi.exe" "%1"
拡張子.txtに関連付けられているプログラムをnotepad.exeからvi.exeに変更する例。


** 参考 [#i56022cb]
- http://www.atmarkit.co.jp/fwin2k/win2ktips/841ftypes/ftypes.html
- http://blogs.technet.com/b/stanabe/archive/2010/05/25/handling-file-associations-with-command-line.aspx


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS