Name | Type | Description | Required? | Pipeline Input | Default Value |
---|
Server | String[] | Specifies the IP or DNS addresses of the vRealize Operations Manager servers you want to connect to. | true | false |
AuthSource | String | Specifies the authentication source type. The default authentication source type value is LocalUser. You can specify ActiveDirectory, OpenLDAP, or VC as authentication source type values. | false | false |
Credential | PSCredential | Specifies a PSCredential object that contains credentials for authenticating with the server. For more information about the server authentication logic of PowerCLI, run "help about_server_authentication". | true | true (ByValue) |
Force | SwitchParameter | Suppresses all user interface prompts during the cmdlet execution. | false | false |
InformationAction | ActionPreference | | false | false |
InformationVariable | String | | false | false |
Menu | SwitchParameter | Indicates that you want to select a connection server from a list of recently connected servers. If Menu is provided, the cmdlet retrieves a list of the last visited servers and enters a nested command prompt, so that you can select a server from the list. | true | false |
NotDefault | SwitchParameter | Specifies that you do not want to save the specified servers as default servers. | false | false |
Password | SecureString | Specifies the password you want to use for authenticating with the server. For more information about the server authentication logic of PowerCLI, run "help about_server_authentication".
Note: If the password contains special characters, enclose the entire string in single quotes ('). | false | false |
PipelineVariable | String | | false | false |
Port | Int32 | Specifies the port on the server you want to use for the connection. If not specified, the default port value is 443. | false | false |
SaveCredentials | SwitchParameter | Indicates that you want to save the specified credentials in the local credential store. | false | false |
SessionSecret | String | Specifies the ID of an existing vRealize Operations Manager session you want to reestablish. | true | false |
User | String | Specifies the user name you want to use for authenticating with the server. For more information about the server authentication logic of PowerCLI, run "help about_server_authentication".
Note: If the user name contains special characters, enclose the entire string in single quotes ('). | false | false |
-------------- Example 1 --------------
Connect-OMServer -Server 'server_name' -User 'user_name' -Password 'user_password'
Connects to a vRealize Operations Manager server by using the User and Password parameters.
-------------- Example 2 --------------
Connect-OMServer -Server 'server_name' ?AuthSource 'vCenterServer_name_in_vROps' -User 'vCenterServer_admin' -Password 'user_password'
Connects to a vRealize Operations Manager server as a vCenter Server user, imported from the monitored vCenter Server system.
-------------- Example 3 --------------
$srv = Connect-OMServer 'server_name' -User 'admin' -Password 'user_password'
Connect-OMServer 'server_name' -Session $srv.SessionId
Connects to a vRealize Operations Manager server with an existing session.
-------------- Example 4 --------------
$secpasswd = ConvertTo-SecureString 'PlainTextPassword' -AsPlainText -Force
$mycreds = New-Object System.Management.Automation.PSCredential ('user_name', $secpasswd)
Connect-OMServer 'server_name' -Credential $mycreds
Connects to a vRealize Operations server by using a credentials object.