
Windows
little丶Sunshine
I believe that I can give you that what you want to!
展开
-
VS Code 添加头文件路径
本文讲述使用VS code编写C++程序,使用非标准库的其他路径下的头文件时编译错误的问题解决办法。官网路径已详细介绍了VS Code如何安装C++扩展以及配置编译环境:https://code.visualstudio.com/docs/cpp/config-mingw整个文章大致流程:下载并安装Visual Studio Code安装C/C++扩展下载Mingw-w64并安装,然后将安装目录下的bin路径加入到环境变量path中创建helloworld文件夹, 用 VS Code打开该文原创 2020-09-16 20:03:18 · 4966 阅读 · 3 评论 -
使用批处理创建windows计划任务
Windows下创建计划任务使用schtasks首先,我们来看下简单的示例:schtaskl /create /tn “scheduleTask” /tr scheduleTask.bat /sc minute /mo 2 /ru SYSTEM该示例表示每隔两分钟就执行一次scheduleTask.bat批处理。(若要访问到scheduleTask.bat ,可将其放到c:/windows/system32目录下)schtasks /create /tn “update” /tr update.ba原创 2020-09-16 14:39:49 · 5498 阅读 · 1 评论