[NSIS] 32비트와 64비트 환경에서 dll(com server) 레지스트리 등록방법
installer 2015. 6. 15. 11:20
32bit 등록 및 해제 방법 RegDLL "등록할 파일(경로포함)"UnRegDLL "해제할 파일(경로포함)" ; 등록Section "MainSection" SEC01 SetOutPath "$INSTDIR" SetOverwrite ifnewer File "TEST.dll" RegDLL "$INSTDIR\TEST.dll"SectionEnd ; 해제Section Uninstall UnRegDLL "$INSTDIR\TEST.dll" Delete "$INSTDIR\TEST.dll" RMDir "$INSTDIR" SetAutoClose trueSectionEnd 64bit 등록 및 해제 방법 ExecWait '"$SYSDIR\regsvr32.exe" /s "등록할 파일(경로포함)"'ExecWait '"$SYSDI..