Remove-SCSMConnector

Remove-SCSMConnector

Removes a connector from Service Manager.

Syntax

Parameter Set: Default
Remove-SCSMConnector [-Connector] <Connector[]> [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Remove-SCSMConnector cmdlet removes a connector from Service Manager.

Parameters

-Connector<Connector[]>

Specifies the connector object that this cmdlet removes from the system.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

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 (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • Microsoft.EnterpriseManagement.ServiceManager.Sdk.Connectors.Connector

    You can pipe a Service Manager connector to the Connector parameter.

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: Removed enabled connectors by using a display name

This command removes all connectors that are enabled and that are named AD Connector. The command uses the Get-SCSMConnector cmdlet to get all Service Manager connectors. The command passes the results to the Where-Object cmdlet, which passes on only those that meet the specified criteria. The current cmdlet removes those connectors.

PS C:\>Get-SCSMConnector | Where-Object { $_.displayname -eq "AD Connector" -and $_.enabled} | Remove-SCSMConnector

Get-SCSMConnector

Start-SCSMConnector

Update-SCSMConnector

Where-Object