Expand Minimize
This topic has not yet been rated - Rate this topic

NetScheduleJobEnum

Windows Server 2003

The NetScheduleJobEnum function lists the jobs queued on a specified computer. This function requires that the schedule service be started.


NET_API_STATUS NetScheduleJobEnum(
  LPCWSTR Servername,
  LPBYTE* PointerToBuffer,
  DWORD PreferredMaximumLength,
  LPDWORD EntriesRead,
  LPDWORD TotalEntries,
  LPDWORD ResumeHandle );

Parameters

Servername
[in]

Pointer to a constant string that specifies the DNS or NetBIOS name of the remote server on which the function is to execute. If this parameter is NULL, the local computer is used.

Windows NT:  This string must begin with \\.
PointerToBuffer
[out]

Pointer to the buffer that receives the data. The return information is an array of AT_ENUM structures. The buffer is allocated by the system and must be freed using a single call to the NetApiBufferFree function. Note that you must free the buffer even if the function fails with ERROR_MORE_DATA.

PreferredMaximumLength
[in]

Specifies a value that indicates the preferred maximum length of the returned data, in bytes. If you specify MAX_PREFERRED_LENGTH, the function allocates the amount of memory required for the data. If you specify another value in this parameter, it can restrict the number of bytes that the function returns. If the buffer size is insufficient to hold all entries, the function returns ERROR_MORE_DATA. For more information, see Network Management Function Buffers and Network Management Function Buffer Lengths.

EntriesRead
[out]

Pointer to a value that receives the count of elements actually enumerated.

TotalEntries
[out]

Pointer to a value that receives the total number of entries that could have been enumerated from the current resume position. Note that applications should consider this value only as a hint.

ResumeHandle
[in, out]

Pointer to a value that contains a resume handle which is used to continue a job enumeration. The handle should be zero on the first call and left unchanged for subsequent calls. If ResumeHandle is NULL, then no resume handle is stored.

Return Values

If the function succeeds, the return value is NERR_Success.

If the function fails, the return value is a system error code. For a list of error codes, see System Error Codes.

Remarks

Only members of the Administrators local group can successfully execute the NetScheduleJobEnum function on a remote server.

Each entry returned contains an AT_ENUM structure. The value of the JobId member can be used when calling functions that require a job identifier parameter, such as the NetScheduleJobDel function.

Requirements

ClientRequires Windows Vista™, Windows XP, Windows 2000 Professional, or Windows NT Workstation.
ServerRequires Windows Server 2008 operating system, Windows Server 2003, Windows 2000 Server, or Windows NT Server.
Header

Declared in Lmat.h; include Lmat.h.

Library

Link to Netapi32.lib.

DLLRequires Netapi32.dll.

See Also

Network Management Overview, Network Management Functions, Schedule Functions, AT_ENUM, NetScheduleJobDel, NetScheduleJobGetInfo

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.