【例子介绍】C#利用Interop.TaskScheduler.dll添加删除计划任务
C#利用Interop.TaskScheduler.dll添加删除计划任务,可实现程序随Windows系统自动启动; 项目用VS2017打开,需要.net 2.0支持,需要管理员权限;支持win7 win10;不支持xp。
【相关图片】
【源码结构】
文件清单
└── WindowsFormsApp2
├── WindowsFormsApp2
│ ├── bin
│ │ └── x86
│ │ └── Debug
│ │ ├── Interop.TaskScheduler.dll
│ │ ├── WindowsFormsApp2.exe
│ │ └── WindowsFormsApp2.pdb
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── WindowsFormsApp2.csproj.CopyComplete
│ │ │ ├── WindowsFormsApp2.csproj.CoreCompileInputs.cache
│ │ │ ├── WindowsFormsApp2.csproj.FileListAbsolute.txt
│ │ │ ├── WindowsFormsApp2.csproj.GenerateResource.cache
│ │ │ ├── WindowsFormsApp2.exe
│ │ │ ├── WindowsFormsApp2.Form1.resources
│ │ │ ├── WindowsFormsApp2.pdb
│ │ │ └── WindowsFormsApp2.Properties.Resources.resources
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── WindowsFormsApp2.csproj.CopyComplete
│ │ ├── WindowsFormsApp2.csproj.CoreCompileInputs.cache
│ │ ├── WindowsFormsApp2.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApp2.csproj.GenerateResource.cache
│ │ ├── WindowsFormsApp2.exe
│ │ ├── WindowsFormsApp2.Form1.resources
│ │ ├── WindowsFormsApp2.pdb
│ │ └── WindowsFormsApp2.Properties.Resources.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── app.manifest
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── WindowsFormsApp2.csproj
└── WindowsFormsApp2.sln
12 directories, 35 files
评论