标签: .net windows-installer scheduled-tasks
由于事务行为和易于卸载,System.Configuration.Install.Installer的子类与InstallUtil.exe结合使用非常有用。
System.Configuration.Install.Installer
InstallUtil.exe
我的特定应用需要在安装时创建计划任务(Windows任务计划程序),并在卸载时删除此计划任务。我看到服务有一个ServiceInstaller,但有没有相应的计划任务?或者作为(联合国)安装的一部分创建/删除任务的建议方法是什么?
ServiceInstaller
答案 0 :(得分:0)
您可以编写一个调用schtasks.exe
安装任务
schtasks /Create ...
卸载任务
schtasks /Delete ...