Exemplo n.º 1
0
        protected override void OnAfterUninstall(IDictionary savedState)
        {
            var dir = this.Context.Parameters["vdir"];

            Log.Debug("安装路径:dir--" + dir);
            OfficeUtils.UnInStall(dir);
            base.OnAfterUninstall(savedState);
        }
Exemplo n.º 2
0
        protected override void OnBeforeInstall(IDictionary savedState)
        {
            Log.Debug("InstallerOba_BeforeInstall");
            double ver = OfficeUtils.ReadWordVersion();

            if (ver <= 11)
            {
                throw new InstallException("您未安装Office或者安装的是Office 2007以下版本的Office!");
            }
            base.OnBeforeInstall(savedState);
        }
Exemplo n.º 3
0
 public override void Rollback(IDictionary savedState)
 {
     try
     {
         var dir = this.Context.Parameters["vdir"];
         Log.Debug("安装路径:dir--" + dir);
         OfficeUtils.UnInStall(dir);
     }
     catch (Exception e)
     {
         Log.Debug(e);
     }
     base.Rollback(savedState);
 }
Exemplo n.º 4
0
        protected override void OnAfterInstall(IDictionary savedState)
        {
            var dir = this.Context.Parameters["vdir"];

            Log.Debug("安装路径:dir--" + dir);
            if (!OfficeUtils.Install(dir))
            {
                throw new InstallException("未成功写入注册表键值,可能是权限不够,请使用管理员权限运行该程序!");
            }
            //string pathIcon=Path.Combine(dir,@"Plugins\SceneDesigner\Icons");
            //Log.Debug("PathIcon:" + pathIcon);
            //if (Directory.Exists(pathIcon))
            //{
            //    DirectoryInfo dirIcons = new DirectoryInfo(pathIcon);
            //    DirectorySecurity security = dirIcons.GetAccessControl();
            //    security.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, InheritanceFlags.ContainerInherit, PropagationFlags.InheritOnly, AccessControlType.Allow));
            //    dirIcons.SetAccessControl(security);
            //    Log.Debug("设置权限完成!");
            //}
            base.OnAfterInstall(savedState);
        }
Exemplo n.º 5
0
        public override void Install(IDictionary stateSaver)
        {
            OfficeUtils.SetWinTrust();

            base.Install(stateSaver);
        }