C++编写PowerPoint插件(五):部署
本系列描述的是如何使用C++/COM来编写PowerPoint插件,使用的开发工具是 Visual Studio 2017。
安装
如果只支持Office,注册DLL即可。
1 | regsvr32 NativePPTAddin.dll |
如果需要支持WPS,可添加一个注册表项。
1 | reg add HKEY_CURRENT_USER\SOFTWARE\kingsoft\Office\WPP\AddinsWL /v NativePPTAddin.Connect /f |
卸载
反注册DLL即可。
1 | regsvr32 /u NativePPTAddin.dll |
如果支持了WPS,卸载时删除相应注册表的值。
1 | reg delete HKEY_CURRENT_USER\SOFTWARE\kingsoft\Office\WPP\AddinsWL /v NativePPTAddin.Connect /f |
NSIS
如果需要在NSIS脚本中实现,大概是这样。
安装
1 | ExecWait '$SYSDIR\regsvr32.exe /s "<your_path>\<your_dll>"' |
卸载
1 | ExecWait '$SYSDIR\regsvr32.exe /u /s "<your_path>\<your_dll>"' |