mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-21 02:46:10 +00:00
f2ac1ece55
add
103 lines
3.3 KiB
C#
103 lines
3.3 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: TaskSchedulerInterop.ITask
|
|
// 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;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace TaskSchedulerInterop
|
|
{
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
[Guid("148BD524-A2AB-11CE-B11F-00AA00530503")]
|
|
internal interface ITask
|
|
{
|
|
void CreateTrigger(out ushort NewTriggerIndex, [MarshalAs(UnmanagedType.Interface)] out ITaskTrigger Trigger);
|
|
|
|
void DeleteTrigger([In] ushort TriggerIndex);
|
|
|
|
void GetTriggerCount(out ushort Count);
|
|
|
|
void GetTrigger([In] ushort TriggerIndex, [MarshalAs(UnmanagedType.Interface)] out ITaskTrigger Trigger);
|
|
|
|
void GetTriggerString([In] ushort TriggerIndex, out IntPtr TriggerString);
|
|
|
|
void GetRunTimes(
|
|
[MarshalAs(UnmanagedType.Struct), In] ref SystemTime Begin,
|
|
[MarshalAs(UnmanagedType.Struct), In] ref SystemTime End,
|
|
ref ushort Count,
|
|
out IntPtr TaskTimes);
|
|
|
|
void GetNextRunTime([MarshalAs(UnmanagedType.Struct), In, Out] ref SystemTime NextRun);
|
|
|
|
void SetIdleWait([In] ushort IdleMinutes, [In] ushort DeadlineMinutes);
|
|
|
|
void GetIdleWait(out ushort IdleMinutes, out ushort DeadlineMinutes);
|
|
|
|
void Run();
|
|
|
|
void Terminate();
|
|
|
|
void EditWorkItem([In] uint hParent, [In] uint dwReserved);
|
|
|
|
void GetMostRecentRunTime([MarshalAs(UnmanagedType.Struct), In, Out] ref SystemTime LastRun);
|
|
|
|
void GetStatus([MarshalAs(UnmanagedType.Error)] out int Status);
|
|
|
|
void GetExitCode(out uint ExitCode);
|
|
|
|
void SetComment([MarshalAs(UnmanagedType.LPWStr), In] string Comment);
|
|
|
|
void GetComment(out IntPtr Comment);
|
|
|
|
void SetCreator([MarshalAs(UnmanagedType.LPWStr), In] string Creator);
|
|
|
|
void GetCreator(out IntPtr Creator);
|
|
|
|
void SetWorkItemData([In] ushort DataLen, [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.U1), In] byte[] Data);
|
|
|
|
void GetWorkItemData(out ushort DataLen, out IntPtr Data);
|
|
|
|
void SetErrorRetryCount([In] ushort RetryCount);
|
|
|
|
void GetErrorRetryCount(out ushort RetryCount);
|
|
|
|
void SetErrorRetryInterval([In] ushort RetryInterval);
|
|
|
|
void GetErrorRetryInterval(out ushort RetryInterval);
|
|
|
|
void SetFlags([In] uint Flags);
|
|
|
|
void GetFlags(out uint Flags);
|
|
|
|
void SetAccountInformation([MarshalAs(UnmanagedType.LPWStr), In] string AccountName, [In] IntPtr Password);
|
|
|
|
void GetAccountInformation(out IntPtr AccountName);
|
|
|
|
void SetApplicationName([MarshalAs(UnmanagedType.LPWStr), In] string ApplicationName);
|
|
|
|
void GetApplicationName(out IntPtr ApplicationName);
|
|
|
|
void SetParameters([MarshalAs(UnmanagedType.LPWStr), In] string Parameters);
|
|
|
|
void GetParameters(out IntPtr Parameters);
|
|
|
|
void SetWorkingDirectory([MarshalAs(UnmanagedType.LPWStr), In] string WorkingDirectory);
|
|
|
|
void GetWorkingDirectory(out IntPtr WorkingDirectory);
|
|
|
|
void SetPriority([In] uint Priority);
|
|
|
|
void GetPriority(out uint Priority);
|
|
|
|
void SetTaskFlags([In] uint Flags);
|
|
|
|
void GetTaskFlags(out uint Flags);
|
|
|
|
void SetMaxRunTime([In] uint MaxRunTimeMS);
|
|
|
|
void GetMaxRunTime(out uint MaxRunTimeMS);
|
|
}
|
|
}
|