Beispiel #1
0
        /// <summary>
        /// 설치 되었는지 체크하고 설치 안되어 있으면 설치한다
        /// </summary>
        /// <param name="Settings"></param>
        internal void CheckServer(IDictionary <string, string> Settings)
        {
            //이미 설치됐는지 아직 설치되지 않았는지 체크
            InstallManager im        = new InstallManager();
            bool           UseServer = im.CheckInstall(Settings);

            this.UseWow6432Node = im.UseWow6432Node;
            if (UseServer)
            {
                //이미 설치된 경우 레지스트리 세팅을 통한 서버세팅
                if (UseWow6432Node)
                {
                }
                else
                {
                }
            }
        }