Answers:
您需要使用ftype修改运行的命令:
使用assoc找出文件类型:
assoc .pdf
这将返回类似于以下内容的内容:
.pdf=AcroExch.Document.DC
现在使用ftype来为.pdf运行当前命令:
ftype AcroExch.Document.DC
这将返回类似于以下内容的内容:
AcroExch.Document.DC="C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRd32.exe" "%1"
现在,使用您的额外标志设置一个新命令:
ftype AcroExch.Document.DC="C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRd32.exe" -invert-colors "%1"
注意:
ftype
您将使用跟踪从开始的引用,而不是使用HKEY_CLASSES_ROOT\.pdf
。