Get-LocalNodeAuthorizationGroup
Synopsis
Gets a node's authorization groups.
Syntax
Get-LocalNodeAuthorizationGroup
Detailed Description
The Get-LocalNodeAuthorizationGroup function returns an object that contains the names of the Windows users in each of the node's authorization groups.
Authorization in Laserfiche Distributed Computing Cluster
Laserfiche Distributed Computing Cluster supports authorization to restrict the operations performed by different users.
A Scheduler has four authorization groups (or roles) that Windows users can be assigned to.
- Admin: Users in the Admin authorization group can view administrative information and make changes to the cluster.
- ReadOnly: Users in the ReadOnly authorization group can view administrative information on a cluster, but cannot make changes.
- Client: Users in the Client authorization group can run jobs on a cluster.
- Machine: Users in the Machine authorization group can start operations that are meant to be started by other nodes in the cluster. A node's Machine authorization group should contain all the service users that the other nodes in the cluster run as.
Workers only use the Machine role.
Note: Authorization is only enforced if the node's AuthenticationMode is set to Windows.
Inputs
None
You cannot pipe input to this function.
Outputs
Laserfiche.DistributedComputingCluster.PowerShellModules.LfDccLocalNodeAdmin.Data.LocalNodeAuthorizationRoleCollection
An object that contains the names of the Windows users in each of the node's authorization groups.
Examples
Example 1
This command gets the node's authorization groups.
PS C:\> Get-LocalNodeAuthorizationGroup | Format-List
Admin : {Administrators}
ReadOnly : {Administrators, Everyone}
Client : {Administrators, Everyone}
Machine : {Administrators, Everyone}
Related Links
Add-DomainUserToLocalNodeAuthorizationGroup