Skip to content

Instantly share code, notes, and snippets.

@Paskowsky
Created October 15, 2019 08:09
Show Gist options
  • Save Paskowsky/1647bedbdc00bb4e3e5290506a54a593 to your computer and use it in GitHub Desktop.
Save Paskowsky/1647bedbdc00bb4e3e5290506a54a593 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
TaskAutorun task = new TaskAutorun("TaskTest");
task.Author = "Pskwsk";
task.Description = "Dream Softwares";
task.Version = "1.0.0.0";
task.Path = "cmd.exe";
if (!task.TryRegisterTask())
{
Console.WriteLine("Failed to register task");
}
else
{
Console.WriteLine("Task registerd successfully");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment