Ejemplo n.º 1
0
        public BusinessInstaller(InstallerConfiguration config)
        {
            BeforeInstall   += new InstallEventHandler((obj, state) => { Initialize(config); });
            BeforeUninstall += new InstallEventHandler((obj, state) => { Initialize(config); });

            InitializeComponent();
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 初始化服务
        /// </summary>
        private void Initialize(InstallerConfiguration config)
        {
            if (config == null)
            {
                return;
            }
            string _ServiceName = config.ServiceName;
            string _DisplayName = config.DisplayName;
            string _Description = config.Description;
            string _UserName    = config.UserName;
            string _Password    = config.Password;

            if (string.IsNullOrEmpty(_DisplayName))
            {
                _DisplayName = _ServiceName;
            }

            ServiceProcessInstaller spi = new ServiceProcessInstaller();

            //指定服务帐号类型
            if (String.IsNullOrEmpty(_UserName) || String.IsNullOrEmpty(_Password))
            {
                spi.Account = ServiceAccount.LocalSystem;
            }
            else
            {
                spi.Account  = ServiceAccount.User;
                spi.Username = _UserName;
                spi.Password = _Password;
            }

            ServiceInstaller si = new ServiceInstaller();

            si.ServiceName = _ServiceName;
            si.DisplayName = _DisplayName + " (Paltform Service)";
            si.Description = _Description + " (平台服务中心)";
            si.StartType   = ServiceStartMode.Automatic;

            // adding
            this.Installers.Add(spi);
            this.Installers.Add(si);
        }
Ejemplo n.º 3
0
        public static InstallerConfiguration InstallerConfiguration()
        {
            var ret = new InstallerConfiguration()
            {
                Playbook = new InstallerContentPlaybookConfiguration()
                {
                    ExtractContentToSubfolder = "NoName",

                    ExtractContent = new ExternalToolConfiguration()
                    {
                        ArgumentTemplate = Utilities.SevenZip.CommandLine.SelfExtractingArchive.ExtractParameterTemplate,
                    },
                },
                Stub = new InstallerContentConfiguration()
                {
                    Include = true,
                    Source  = typeof(Badger.Default.Installer.StubExecutable.Program).Assembly.Location,
                }
            };


            return(ret);
        }