windows 如何将导出的reg键附加到file.reg

vxqlmq5t  于 2023-03-04  发布在  Windows
关注(0)|答案(2)|浏览(151)

无法找到一种方法来附加注册表导出输出到现有的文件,所以我正在运行这个命令

REG EXPORT HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\NvCplDesktopContext\ backup.reg

要导出一些设置到backup.reg文件时,它试图导出其他东西,我得到的消息,这将覆盖该文件。无论如何,我可以将其附加到文件,而不是重写reg文件?

kh212irz

kh212irz1#

不如...

@echo off 

REG EXPORT HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\First\ current.tmp /y
more current.tmp >> merged.reg

REG EXPORT HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\Second\ current.tmp /y
more +1 current.tmp >> merged.reg

REG EXPORT HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\Third\ current.tmp /y
more +1 current.tmp >> merged.reg

rm current.tmp
ee7vknir

ee7vknir2#

@Gene,Code可以工作,但我认为最后一行应该是:

del /f /q current.tmp

相关问题