[QUOTE]
最初由 xupengcn 发布[B]galilette谢谢了,看你给的文件名字是XP的,2000能用吗,虽然已经帮朋友重装电脑了,但是我还是想留一下这个程序以防以后。 [/B][/QUOTE]
这个我不好确定
不过你可以在命令行下用assoc和ftype命令(2000和xp都可用):
assoc .exe=exefile
ftype exefile="%1" %*
background:
assoc命令用来编辑或者查看后缀名与文件类型的关联. ftype用来编辑或者查看文件类型与默认执行命令的关联:
C:\>assoc .exe
.exe=exefile
C:\>assoc .txt
.txt=txtfile
C:\>assoc .bmp
.bmp=Paint.Picture
C:\>assoc .gif
.gif=giffile
C:\>assoc .doc
.doc=WordPad.Document.1
C:\>ftype exefile
exefile="%1" %*
C:\>ftype txtfile
txtfile=%SystemRoot%\system32\NOTEPAD.EXE %1
C:\>ftype Paint.Picture
Paint.Picture=rundll32.exe C:\WINDOWS\System32\shimgvw.dll,ImageView_Fullscreen
%1
C:\>ftype giffile
giffile=rundll32.exe C:\WINDOWS\System32\shimgvw.dll,ImageView_Fullscreen %1
C:\>ftype wordpad.document.1
wordpad.document.1="%ProgramFiles%\Windows NT\Accessories\WORDPAD.EXE" "%1"
C:\>