Update-SCSMUserRole
Updated: January 14, 2013
Applies To: System Center 2012 - Service Manager, System Center 2012 SP1 - Service Manager
Update-SCSMUserRole
Syntax
Parameter Set: Default Update-SCSMUserRole [-UserRole] <Role[]> [-PassThru] [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Update-SCSMUserRole cmdlet sets the UserRole property for a Service Manager user.
Parameters
-PassThru
Specifies the output object that represents the updated user role. This output object can be passed to other cmdlets.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-UserRole<Role[]>
Specifies the UserRole object to which to add the user.
|
Aliases |
none |
|
Required? |
true |
|
Position? |
1 |
|
Default Value |
none |
|
Accept Pipeline Input? |
true (ByValue) |
|
Accept Wildcard Characters? |
false |
-Confirm
Prompts you for confirmation before executing the command.
|
Required? |
false |
|
Position? |
named |
|
Default Value |
false |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-WhatIf
Describes what would happen if you executed the command without actually executing the command.
|
Required? |
false |
|
Position? |
named |
|
Default Value |
false |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
-
Microsoft.EnterpriseManagement.ServiceManager.Sdk.UserRoles.Role
You can pipe a UserRole object to the UserRole parameter of the Update-SCSMUserRole cmdlet. For example, the object that is returned by the Get-SCSMUserRole cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
-
None.
This cmdlet does not generate any output.
Examples
-------------------------- EXAMPLE 1 --------------------------
The commands in this example add User to the set of Read-Only OperatorsDescription.
PS C:\>$Role = Get-SCSMUserRole IncidentResolvers PS C:\>$User = Get-SCSMUser -username Joe PS C:\>$Role.User += $User PS C:\>$Role | Update-SCSMUserRole
-------------------------- EXAMPLE 2 --------------------------
The commands in this example remove a user from a user role.
PS C:\>$Role = Get-SCSMUserRole Administrators PS C:\>$Role.User
WOODGROVE\Administrator
WOODGROVE\Domain Admins
PS C:\>$Role.User = $Role.Users[0]
