摘要
项目有这样一个需求,在体验机上安装了一个软件,如果有用户卸载的时候,给与输入密码验证的提示,当然强制删除软件所在目录除外。那么这个有办法实现吗?
解决办法
在卸载的时候,用户单击下一步的时候进行权限验证。
脚本
-- These actions are performed when the Next button is clicked. -- advance to the next screen result = Dialog.Input("卸载权限验证", "请输入卸载密码r:", "", MB_ICONQUESTION); -- An if statement that compares two numbers if (result=="123456") then Screen.Next(); else -- Do something else here result = Dialog.Message("Error", "Password is Error", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1); Application.Exit(0); end
测试卸载