mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-21 02:46:10 +00:00
f2ac1ece55
add
29 lines
947 B
C#
29 lines
947 B
C#
// Decompiled with JetBrains decompiler
|
|
// Type: TaskScheduler.TaskFlags
|
|
// Assembly: AutoKMS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
// MVID: D1CED9E3-1FC7-49B8-B3AC-44976AB7F6E4
|
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\HackTool.Win32.KMSAuto.i-f317ba4d4051fad64a0aa45b587fa3dcea795bac30acec2872779abe31a07cbe.exe
|
|
|
|
using System;
|
|
|
|
namespace TaskScheduler
|
|
{
|
|
[Flags]
|
|
public enum TaskFlags
|
|
{
|
|
Interactive = 1,
|
|
DeleteWhenDone = 2,
|
|
Disabled = 4,
|
|
StartOnlyIfIdle = 16, // 0x00000010
|
|
KillOnIdleEnd = 32, // 0x00000020
|
|
DontStartIfOnBatteries = 64, // 0x00000040
|
|
KillIfGoingOnBatteries = 128, // 0x00000080
|
|
RunOnlyIfDocked = 256, // 0x00000100
|
|
Hidden = 512, // 0x00000200
|
|
RunIfConnectedToInternet = 1024, // 0x00000400
|
|
RestartOnIdleResume = 2048, // 0x00000800
|
|
SystemRequired = 4096, // 0x00001000
|
|
RunOnlyIfLoggedOn = 8192, // 0x00002000
|
|
}
|
|
}
|