我正在关注How to run a ".bat" file during installation?
运行注册表清理我的Visual Studio安装程序项目。一些加载项被加载到Excel中,在卸载时我想通过删除注册表将它们从加载项对话框中删除。
然而,cmd命令无法执行
REG DELETE "HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Excel\Options" /v "OPEN"
因为它没有管理员权限
'reg' is not recognized as an internal or external command, operable program or batch file
我们如何以管理员身份从VS安装项目运行批处理文件?