2022-07-13 08:34:31 +02:00
---
external help file: PSCredentialStore-help.xml
Module Name: PSCredentialStore
schema: 2.0.0
---
2017-09-28 11:08:41 +02:00
# Connect-To
## SYNOPSIS
Connects to the given host using the stored CredentialStoreItem.
## SYNTAX
### Private (Default)
```
2019-04-29 16:05:43 +02:00
Connect-To -RemoteHost < String > [-Identifier < String > ] -Type < String > [-Credentials < PSCredential > ] [-PassThru]
2017-09-28 11:08:41 +02:00
[< CommonParameters > ]
```
### Shared
```
2019-04-29 16:05:43 +02:00
Connect-To -RemoteHost < String > [-Identifier < String > ] -Type < String > [-Credentials < PSCredential > ] [-Shared]
[-Path < String > ] [-PassThru] [< CommonParameters > ]
2017-09-28 11:08:41 +02:00
```
## DESCRIPTION
Establish a connection to the selected host using a stored CredentialStoreItem.
## EXAMPLES
2022-07-13 08:34:31 +02:00
### EXAMPLE 1
2017-09-28 11:08:41 +02:00
```
Connect-To -RemoteHost "ucs.myside.local" -Type CiscoUcs
```
2022-07-13 08:34:31 +02:00
### EXAMPLE 2
2017-10-23 10:53:52 +02:00
```
2017-09-28 11:08:41 +02:00
Connect-To -RemoteHost "ftp.myside.local" -Type FTP
2017-10-23 10:53:52 +02:00
```
2022-07-13 08:34:31 +02:00
### EXAMPLE 3
2017-10-23 10:53:52 +02:00
```
2017-09-28 11:08:41 +02:00
Connect-To -RemoteHost "fas.myside.local" -Type NetAppFAS
2017-10-23 10:53:52 +02:00
```
2022-07-13 08:34:31 +02:00
### EXAMPLE 4
2017-10-23 10:53:52 +02:00
```
2017-09-28 11:08:41 +02:00
Connect-To -RemoteHost "esx01.myside.local" -Type VMware
2017-10-23 10:53:52 +02:00
```
2017-09-28 11:08:41 +02:00
2022-07-13 08:34:31 +02:00
### EXAMPLE 5
2017-10-23 10:53:52 +02:00
```
Connect-To -RemoteHost "vCenter.myside.local" -Type CisServer
```
2022-07-13 08:34:31 +02:00
### EXAMPLE 6
2017-09-28 11:08:41 +02:00
```
2018-03-09 14:02:51 +01:00
Connect-To -RemoteHost "exchange01.myside.local" -Type ExchangeHTTP
2017-09-28 11:08:41 +02:00
```
2022-07-13 08:34:31 +02:00
### EXAMPLE 7
2018-03-09 14:02:51 +01:00
```
Connect-To -RemoteHost "exchange01.myside.local" -Type ExchangeHTTPS
```
2017-09-28 11:08:41 +02:00
## PARAMETERS
2018-03-09 14:02:51 +01:00
### -Credentials
Use this parameter to bypass the stored credentials.
Without this parameter Connect-To tries to read the
needed credentials from the CredentialStore.
If you provide this parameter you skip this lookup behavior.
So you can use it to enable credentials without preparing any user interaction.
2017-09-28 11:08:41 +02:00
```yaml
2018-03-09 14:02:51 +01:00
Type: PSCredential
2017-09-28 11:08:41 +02:00
Parameter Sets: (All)
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
Required: False
2017-09-28 11:08:41 +02:00
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Identifier
Defaults to "".
Specify a string, which separates two CredentialStoreItems for the
same hostname.
```yaml
Type: String
Parameter Sets: (All)
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
2019-04-29 16:05:43 +02:00
### -PassThru
Returns the value from the underlying connection type function.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
2018-03-09 14:02:51 +01:00
### -Path
Define a custom path to a shared CredentialStore.
2017-09-28 11:08:41 +02:00
```yaml
Type: String
2018-03-09 14:02:51 +01:00
Parameter Sets: Shared
Aliases:
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
Required: False
2017-09-28 11:08:41 +02:00
Position: Named
2019-04-29 16:05:43 +02:00
Default value: None
2017-09-28 11:08:41 +02:00
Accept pipeline input: False
Accept wildcard characters: False
```
2018-03-09 14:02:51 +01:00
### -RemoteHost
Specify the host, for which you would like to change the credentials.
2017-09-28 11:08:41 +02:00
```yaml
2018-03-09 14:02:51 +01:00
Type: String
2017-09-28 11:08:41 +02:00
Parameter Sets: (All)
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
Required: True
2017-09-28 11:08:41 +02:00
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
2018-03-09 14:02:51 +01:00
### -Shared
Switch to shared mode with this param.
This enforces the command to work with a shared CredentialStore which
can be decrypted across systems.
2017-09-28 11:08:41 +02:00
```yaml
2018-03-09 14:02:51 +01:00
Type: SwitchParameter
2017-09-28 11:08:41 +02:00
Parameter Sets: Shared
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
2019-04-29 16:05:43 +02:00
Required: True
2017-09-28 11:08:41 +02:00
Position: Named
2018-03-09 14:02:51 +01:00
Default value: False
2017-09-28 11:08:41 +02:00
Accept pipeline input: False
Accept wildcard characters: False
```
2018-03-09 14:02:51 +01:00
### -Type
Specify the host type of the target.
Currently implemented targets are: Possible connection values are:
CiscoUcs, FTP, NetAppFAS, VMware, CisServer, ExchangeHTTP, ExchangeHTTPS, SCP.
2017-09-28 11:08:41 +02:00
```yaml
2018-03-09 14:02:51 +01:00
Type: String
Parameter Sets: (All)
Aliases:
2017-09-28 11:08:41 +02:00
2018-03-09 14:02:51 +01:00
Required: True
2017-09-28 11:08:41 +02:00
Position: Named
2018-03-09 14:02:51 +01:00
Default value: None
2017-09-28 11:08:41 +02:00
Accept pipeline input: False
Accept wildcard characters: False
```
### CommonParameters
2019-04-29 16:05:43 +02:00
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters ](http://go.microsoft.com/fwlink/?LinkID=113216 ).
2017-09-28 11:08:41 +02:00
## INPUTS
### [None]
## OUTPUTS
### [None]
## NOTES
## RELATED LINKS