public void ProcessCommand(CommandType type)
        {
            try
            {
                switch (type)
                {
                /*case CommandType.SHOW_WINDOWS_KEYBOARD:
                 *  ShowWindowsKeyboard();
                 *  break;*/
                case CommandType.REBOOT_PC:
                    serverHandler.DisconnectClient();
                    serverHandler.Stop();
                    Process.Start("shutdown", "/r /t 0");
                    break;

                case CommandType.TURN_OFF_PC:
                    serverHandler.DisconnectClient();
                    serverHandler.Stop();
                    Process.Start("shutdown", "/s /t 0");
                    break;
                }
            }
            catch
            {
                LdpLog.Error("Executing command error.");
            }
        }