SetCompressor /SOLID lzma
SetCompress force
XPStyle on
OutFile "unkis.exe"
Name "金山杀手"
BrandingText "WwW.yhxs3344.net"
;以下为检测运行文件方式,有一定局限性,不推荐。
Section "卸载金山卫士"
FindProcDLL::FindProc "kxetray.exe"
Pop $R0
IntCmp $R0 1 0 no_run
MessageBox MB_ICONQuESTION|MB_YESNO "安装程序检测到 金山卫士 正在运行,您必须将其卸载才能进行下一步安装,是否现在进行卸载?" IDYES keep IDNO none
keep:
ExecWait 'C:Program FilesKingsoftKSafeuninst.exe'
none:
Quit
no_run:
SectionEnd
;以下为注册表检测方式,两种方式可以选其一,不过,推荐使用注册表检测方式。
Section "卸载金山卫士2"
ReadRegStr $R2 HKLM "SOFTWAREMicrosoftWindowsCurrentVersionUninstall金山卫士" "UninstallString"
StrCmp $R2 "" NO YES
YES:
MessageBox MB_ICONQuESTION|MB_YESNO "安装程序检测到 金山卫士 正在运行,您必须将其卸载才能进行下一步安装,是否现在进行卸载?" IDYES keep IDNO none
keep:
ExecWait $R2
none:
Quit
NO:
SectionEnd
© 版权声明
THE END
暂无评论内容