Skip to main content

Client Creator Service

The “Client Creator Service” plugin allows you to monitor the queue's workflow. The queue displays all clients, regardless of the user. The service is controlled using the “Start,” “Stop,” and “Restart” buttons.

ClieantCreatorServicePlugin1.png

Depending on the client's current status, the process can be canceled or restarted via the context menu.

Action Required status
Cancel Queued, Waiting, Error
Restart Error

You can view the logs for current operations via the “Logging” tab. Administrators have access to the “Logging History” tab, where they can view all logs.

Plugin configuration
Name Description Default value
QueueQuery This query returns the data that is displayed in the plugin.
Click to view
SELECT
        que._id               ,
        cque.ComputerName     ,
        cque.MacAddress       ,
        cque.BiosGuid         ,
        cque.OsdCollectionID  ,
        que.Cancelled         ,
        que.StatusCode        ,
        map.Status            ,
        map.StatusMessage     ,
        que.StatusDescription ,
        que.QueuedBy          ,
        que.Queued            ,
        que.Created           ,
        cque.ResourceID       ,
        que.Type              ,
        que.LastUser          ,
        que.LastUpdate
FROM
        [Queue] que
JOIN
        [ClientCreatorQueue] cque
ON
        que._id = cque.QueueID
JOIN
        QueueStatusMapping map
ON
        map.[StatusCode] = que.[StatusCode]
ORDER BY
        LastUpdate DESC
Default Plugin Integration
  • Assembly: ClientCreatorServicePlugin
  • Name: CLIENT_CREATOR_SERVICE (gets translated)
  • Icon: workplace_gearwheel.png
  • SelectedComputer: None