windows设置自动启动的位置

1. 不需要管理员权限的程序,随机器自动启动写入的位置为:

计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

2. 需要管理员权限的程序,随机器自动启动写入的位置为:

计算机\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run

void OnSetAutorun(bool _bAutoStart)
{
    LONG iRet = 0;
    char cFilePath[255] = { 0 };
    HMODULE hFilePath = GetModuleHandle(NULL);
    memset(cFilePath, 0, 255);
    //得到当前执行文件的全路径
    GetModuleFileNameA(hFilePath, cFilePath, sizeof(cFilePath));
    if (_bAutoStart)
    {
        HKEY hKey;
        iRet =
            RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Run",
                0, KEY_ALL_ACCESS, &hKey);
        if (iRet != ERROR_SUCCESS)
        {
            return;
        }
        //写入注册表
        char strCommand[255];
        sprintf(strCommand, "\"%s\" -service", cFilePath);
        iRet = RegSetValueExA(hKey, "TestServer", 0, REG_SZ, (BYTE*)strCommand, strlen(strCommand));
        RegCloseKey(hKey);
    }
    else
    {
        //取消设置开机启动
        //打开注册表
        HKEY hKey;
        iRet = RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Run",
            0, KEY_SET_VALUE, &hKey);
        if (iRet != ERROR_SUCCESS)
        {
            return;
        }
        //删除注册表中内容
        iRet = RegDeleteValue(hKey, "TestServer");
        if (iRet != ERROR_SUCCESS)
        {
            return;
        }
        //关闭注册表
        RegCloseKey(hKey);
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值