c\c++ windows自动打开cmd并进入mysql

每次不用可视化工具查看数据库的时候饭都要win+r->cmd->mysql -u root -p->密码

虽然不麻烦但是多少也得消耗你几秒钟,秉承着时间就是金钱的观念

我决定通过windows模拟输入实现快速通过命令行查看mysql数据库

涉及到的知识:

windows拉起进程,windows模拟输入,全部用的C/C++

上代码:

cpp 复制代码
#include <windows.h>
#include <stdio.h>
#include <tchar.h>

void RunExe()
{
    TCHAR cmdPath[] = _T("C:\\Windows\\System32\\cmd.exe");
    STARTUPINFO strStartupInfo;
    memset(&strStartupInfo, 0, sizeof(strStartupInfo));
    strStartupInfo.cb = sizeof(strStartupInfo);
    PROCESS_INFORMATION szProcessInformation;
    memset(&szProcessInformation, 0, sizeof(szProcessInformation));
    TCHAR szCommandLine[] = _T("mysql -u root -p");

    int iRet = CreateProcess(
        cmdPath,
        NULL,
        NULL,
        NULL,
        false,
        CREATE_NEW_CONSOLE,
        NULL,
        NULL,
        &strStartupInfo,
        &szProcessInformation
    );

    if (iRet)
    {
        // 创建成功
        printf_s("Create Success iRet = %d\n", iRet);

        // 等待命令行进程启动完毕
        WaitForInputIdle(szProcessInformation.hProcess, 5000);
        INPUT input;
       
        // 模拟输入回车
     
        memset(&input, 0, sizeof(input));
        input.type = INPUT_KEYBOARD;
        input.ki.wVk = VK_RETURN;
        input.ki.dwFlags = 0;
        SendInput(1, &input, sizeof(INPUT));

        // 等待命令行处理完回车
        Sleep(1000);

        //模拟输入"mysql -u root -p"
        TCHAR szToMysql[] = _T("mysql -u root -p");
        for (int i = 0; i < _tcslen(szToMysql); i++)
        {
            memset(&input, 0, sizeof(input));
            input.type = INPUT_KEYBOARD;
            input.ki.wVk = 0;
            input.ki.dwFlags = KEYEVENTF_UNICODE;
            input.ki.wScan = szToMysql[i];
            SendInput(1, &input, sizeof(INPUT));
            input.ki.dwFlags = KEYEVENTF_UNICODE | KEYEVENTF_KEYUP;
            SendInput(1, &input, sizeof(INPUT));
        }

      //  Sleep(1000);

        // 模拟输入回车

        memset(&input, 0, sizeof(input));
        input.type = INPUT_KEYBOARD;
        input.ki.wVk = VK_RETURN;
        input.ki.dwFlags = 0;
        SendInput(1, &input, sizeof(INPUT));

        // 等待命令行处理完回车
       // Sleep(1000);

        // 模拟输入密码 
        TCHAR szPassword[] = _T("你的数据库的密码");
        for (int i = 0; i < _tcslen(szPassword); i++)
        {
            memset(&input, 0, sizeof(input));
            input.type = INPUT_KEYBOARD;
            input.ki.wVk = 0;
            input.ki.dwFlags = KEYEVENTF_UNICODE;
            input.ki.wScan = szPassword[i];
            SendInput(1, &input, sizeof(INPUT));

            input.ki.dwFlags = KEYEVENTF_UNICODE | KEYEVENTF_KEYUP;
            SendInput(1, &input, sizeof(INPUT));
        }

        // 模拟输入回车
        memset(&input, 0, sizeof(input));
        input.type = INPUT_KEYBOARD;
        input.ki.wVk = VK_RETURN;
        input.ki.dwFlags = KEYEVENTF_UNICODE;
        input.ki.wScan = VK_RETURN;
        SendInput(1, &input, sizeof(INPUT));

      //  Sleep(1000);

        // 关闭进程句柄和线程句柄
        CloseHandle(szProcessInformation.hProcess);
        CloseHandle(szProcessInformation.hThread);
    }
    else
    {
        printf_s("Create Failure iRet = %d\n", iRet);
        printf_s("Error code = %d\n", GetLastError());
    }
}

int main()
{
    printf("This is Bingo\n");
    RunExe();
    return 0;
}

演示效果:

相关推荐
程序猿阿伟5 分钟前
《C++ 实现区块链:区块时间戳的存储与验证机制解析》
开发语言·c++·区块链
戎梓漩22 分钟前
windows下安装curl,并集成到visual studio
ide·windows·visual studio
爱摸鱼的孔乙己43 分钟前
【数据结构】链表(leetcode)
c语言·数据结构·c++·链表·csdn
Dola_Pan1 小时前
C语言:数组转换指针的时机
c语言·开发语言·算法
烦躁的大鼻嘎1 小时前
模拟算法实例讲解:从理论到实践的编程之旅
数据结构·c++·算法·leetcode
IU宝1 小时前
C/C++内存管理
java·c语言·c++
fhvyxyci1 小时前
【C++之STL】摸清 string 的模拟实现(下)
开发语言·c++·string
qq_459730031 小时前
C 语言面向对象
c语言·开发语言
C++忠实粉丝2 小时前
计算机网络socket编程(4)_TCP socket API 详解
网络·数据结构·c++·网络协议·tcp/ip·计算机网络·算法
古月居GYH2 小时前
在C++上实现反射用法
java·开发语言·c++