Beispiel #1
0
        private static void ExecFfxiCfg(PolTool tool, PlatformType type)
        {
            if (!tool[type].FFXI_Installed)
            {
                Console.WriteLine(Properties.Resources.Msg_Err_FfxiNotInstalled);
                return;
            }

            var proc = tool.ExecFfxiCfg(type);

            if (proc == null)
            {
                Console.WriteLine(Properties.Resources.Msg_Err_FfxiConfigBootFailed);
                return;
            }
            else
            {
                proc.WaitForExit();
            }
        }