|
本帖最后由 yyz2191958 于 2023-1-30 17:30 编辑
完美解决了:
@echo off
::【xls 和 xlsx 文件关联】
assoc .xls
ftype xlsfile="%~dp0微型Excel\中文表格.exe" "%%1"
assoc .xlsx
ftype xlsxfile="%~dp0微型Excel\英文表格.exe" "%%1"
::***********************************************************************************
::【doc 和 docx 文件关联】
assoc .doc
ftype docfile="%~dp0微型Word\迷你文字.exe" "%%1"
assoc .docx
ftype docxfile="%~dp0微型Word\迷你文字.exe" "%%1"
::**********************************************************************************
::**********************************************************************************
::【xls 和 xlsx 图标关联】
REG add HKCR\.xls /ve /t REG_SZ /d "xlsfile" /f
REG ADD HKCR\xlsfile\DefaultIcon /ve /d "D:\PE整理碎片(很好)\修改PE\到桌面\图标\xls.ico,0" /f
REG add HKCR\.xlsx /ve /t REG_SZ /d "xlsxfile" /f
REG ADD HKCR\xlsxfile\DefaultIcon /ve /d "D:\PE整理碎片(很好)\修改PE\到桌面\图标\xlsx.ico,0" /f
::*********************************************************************************************
::【doc 和 docx 图标关联】
REG add HKCR\.doc /ve /t REG_SZ /d "docfile" /f
REG ADD HKCR\docfile\DefaultIcon /ve /d "D:\PE整理碎片(很好)\修改PE\到桌面\图标\doc.ico,0" /f
reg add HKCR\.docx /ve /t REG_SZ /d "docxfile" /f
REG ADD HKCR\docxfile\DefaultIcon /ve /d "D:\PE整理碎片(很好)\修改PE\到桌面\图标\docx.ico,0" /f
exit
原来的问题:求完善注册表(增加项),谢谢
现有批处理:
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\00002109020040800000000000F01FEC\Usage" /f /v "WordConverter12Files" /t REG_DWORD /d 1446772745
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\4080110900063D11C8EF10054038389C\Usage" /f /v "ProductFiles" /t REG_DWORD /d 1446774895
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\4080110900063D11C8EF10054038389C\Usage" /f /v "WORDFiles" /t REG_DWORD /d 1446774350
运行以后,只有:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer
Installer以后的没有
麻烦高手帮我补齐Installer以后的项,谢谢先
|
|