当前位置:   article > 正文

win10的bat文件或者cmd文件关联了文本编辑器导致无法运行_file pattern '*.psd' (from 'bundled' plugin) was r

file pattern '*.psd' (from 'bundled' plugin) was reassigned to file type 'ad

可以参考博客用dos命令修复文件关联的方法

遇到过很多次这个情况,因为我之前修改了bat文件默认打开程序为npp结果导致运行.bat文件就提示没有与之关联的程序来执行该操作
我们只需要以管理员方式启动cmd,输入以下指令即可:

assoc.bat=batfile
ftype batfile="%1" %*
  • 1
  • 2

修复文件关联需要用 dos里的 ftype 命令和 assoc 命令
ftype是文件类型打开方式, assoc 是关联需要的扩展名。我们在开始菜单的运行里输入 cmd.exe 或 command.com.

要修复批处理文件的关联。在cmd里逐行输入以下语句,每输入一句一回车:

ftype batfile="%1" %*
assoc .bat=batfile
ftype cmdfile="%1" %*
assoc .cmd=cmdfile
  • 1
  • 2
  • 3
  • 4

同理修改网页文件的打开方式:
ftype htmlfile=’%1’ %*
assoc .html=htmlfile
ftype htmfile=’%1’ %*
assoc .htm=htmfile

它们的规格是:
ftype 文件类型=打开方式(注: %* 是可以输入任意参数,输入%1的情况是系统默认的打开方式,要是自己编写的软件,打开方式处就写程序所在的路径)
assoc 扩展名=文件类型

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/258872?site
推荐阅读
相关标签
  

闽ICP备14008679号