Get-SCOMRunAsAccount

Gets a Run As account for a management group.

Syntax

Get-SCOMRunAsAccount
   [-SCSession <Connection[]>]
   [-ComputerName <String[]>]
   [-Credential <PSCredential>]
   [<CommonParameters>]
Get-SCOMRunAsAccount
   [-Name] <String[]>
   [-SCSession <Connection[]>]
   [-ComputerName <String[]>]
   [-Credential <PSCredential>]
   [<CommonParameters>]
Get-SCOMRunAsAccount
   -Id <Guid[]>
   [-SCSession <Connection[]>]
   [-ComputerName <String[]>]
   [-Credential <PSCredential>]
   [<CommonParameters>]

Description

The Get-SCOMRunAsAccount cmdlet gets Run As accounts for a System Center - Operations Manager management group. A Run As account gives users the ability to specify the necessary permissions for use with rules, tasks, monitors, and discoveries targeted to specific computers on an as-needed basis.

Examples

Example 1: Get all action accounts

PS C:\>Get-SCOMRunAsAccount

This command gets all action accounts.

Example 2: Get all data warehouse accounts

PS C:\>Get-SCOMRunAsAccount -Name "Data Warehouse*"

This command gets all accounts whose names begin with Data Warehouse.

Example 3.1: Update any account password - Automated (Clear Text)

PS C:\>$account = Get-SCOMRunAsAccount -Name SCX_Account
PS C:\>$password = "Password" | ConvertTo-SecureString -AsPlainText -Force
PS C:\>$account.Data = $password
PS C:\>$account.Update()

This command will allow you to update the password for the "SCX_Account" RunAs account using the built in method Data. This example allows you to update the password with clear text. This above method of updating the password will work with any RunAs Account.

Example 3.2: Update any account password - Prompt

PS C:\>$account = Get-SCOMRunAsAccount -Name SCX_Account
PS C:\>$password = Read-Host -AsSecureString
PS C:\>$account.Data = $password
PS C:\>$account.Update()

This command will allow you to update the password for the "SCX_Account" RunAs account using the built in method Data. This example allows you to update the password with a prompt. The above method of updating the password will work with any RunAs Account.

Parameters

-ComputerName

Specifies an array of names of computers. The cmdlet establishes temporary connections with management groups for these computers. Valid formats include a NetBIOS name, an IP address, or a fully qualified domain name (FQDN). To specify the local computer, specify the computer name, localhost, or a dot (.).

Type:String[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Credential

Specifies the user account under which the management group connection runs. Specify a PSCredential object, such as one that the Get-Credential cmdlet returns, for this parameter. For more information about credential objects, type Get-Help Get-Credential.

This account must have access to the server that is specified in the ComputerName parameter if that parameter appears.

If you do not specify this parameter, the default is the account for the current user.

Type:PSCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Id

Specifies an array of account IDs.

Type:Guid[]
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Name

Specifies an array of account names.

Type:String[]
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:True

-SCSession

Specifies an array of Connection objects. To get Connection objects, specify the Get-SCOMManagementGroupConnection cmdlet.

If this parameter does not appear, the cmdlet uses the active persistent connection to a management group. Use the SCSession parameter to specify a different persistent connection. You can create a temporary connection to a management group by using the ComputerName and Credential parameters. For more information, type Get-Help about_OpsMgr_Connections.

Type:Connection[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False