2017-09-28 11:08:41 +02:00
# Disconnect-From
## SYNOPSIS
Terminates a session established with Connect-To using a CredentialStoreItem.
## SYNTAX
```
Disconnect-From [-RemoteHost] < String > [-Type] < String > [-Force] [< CommonParameters > ]
```
## DESCRIPTION
Terminates a session established with Connect-To using a CredentialStoreItem.
## EXAMPLES
2019-04-29 16:05:43 +02:00
### BEISPIEL 1
2017-09-28 11:08:41 +02:00
```
Disconnect-From -RemoteHost "ucs.myside.local" -Type CiscoUcs
```
2019-04-29 16:05:43 +02:00
### BEISPIEL 2
2017-09-28 11:08:41 +02:00
```
Disconnect-From -RemoteHost "ftp.myside.local" -Type FTP
```
2019-04-29 16:05:43 +02:00
### BEISPIEL 3
2017-09-28 11:08:41 +02:00
```
Disconnect-From -RemoteHost "fas.myside.local" -Type NetAppFAS
```
2019-04-29 16:05:43 +02:00
### BEISPIEL 4
2017-09-28 11:08:41 +02:00
```
Disconnect-From -RemoteHost "esx01.myside.local" -Type VMware
```
2019-04-29 16:05:43 +02:00
### BEISPIEL 5
2017-09-28 11:08:41 +02:00
```
Disconnect-From -RemoteHost "esx01.myside.local" -Type VMware -Force:$True
```
2019-04-29 16:05:43 +02:00
### BEISPIEL 6
2017-10-23 10:53:52 +02:00
```
Disconnect-From -RemoteHost "vcenter.myside.local" -Type CisServer
```
2019-04-29 16:05:43 +02:00
### BEISPIEL 7
2018-03-09 14:02:51 +01:00
```
Disconnect-From -RemoteHost "exchange01.myside.local" -Type ExchangeHTTP
```
2019-04-29 16:05:43 +02:00
### BEISPIEL 8
2018-03-09 14:02:51 +01:00
```
Disconnect-From -RemoteHost "exchange01.myside.local" -Type ExchangeHTTPS
```
2017-09-28 11:08:41 +02:00
## PARAMETERS
2018-03-09 14:02:51 +01:00
### -Force
Force the disconnect, even if the disconnect would fail.
```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
2017-09-28 11:08:41 +02:00
### -RemoteHost
Specify the remote endpoint, whose session you would like to terminate.
```yaml
Type: String
Parameter Sets: (All)
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Type
Specify the host type of the target.
2018-03-09 14:02:51 +01:00
Currently implemented targets are: CiscoUcs, FTP, NetAppFAS, VMware,
CisServer, ExchangeHTTP, ExchangeHTTPS, SCP.
2017-09-28 11:08:41 +02:00
```yaml
Type: String
Parameter Sets: (All)
2018-03-09 14:02:51 +01:00
Aliases:
2017-09-28 11:08:41 +02:00
Required: True
Position: 2
Default value: None
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
2019-04-29 16:05:43 +02:00
- File Name : Disconnect-From.ps1
- Author : Marco Blessing - marco.blessing@googlemail.com
- Requires :
2017-09-28 11:08:41 +02:00
## RELATED LINKS
[https://github.com/OCram85/PSCredentialStore ](https://github.com/OCram85/PSCredentialStore )