Remove-CMFallbackStatusPoint

Remove-CMFallbackStatusPoint

Removes a Configuration Manager fallback status point.

Syntax

Parameter Set: SearchByNameMandatory
Remove-CMFallbackStatusPoint -SiteCode <String> -SiteSystemServerName <String> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByValueMandatory
Remove-CMFallbackStatusPoint -InputObject <IResultObject> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Remove-CMFallbackStatusPoint cmdlet removes a specified fallback status point site system role. You can specify the site system name and site code for a fallback status point or use the Get-CMFallbackStatusPoint cmdlet to obtain a fallback status point object.

Microsoft System Center 2012 Configuration Manager can use one or more fallback status points to collect state messages for a site and send them on to System Center 2012 Configuration Manager. After you remove a fallback status point, that system no longer forwards state messages.

The use of a fallback status point is optional. You can use this cmdlet to remove redundant fallback status points or to remove the last fallback status point from a site if you do not want to use that role.

Parameters

-Force

Removes a specified fallback status point site system role without prompting you for confirmation. By default, the cmdlet prompts you for confirmation before it proceeds.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-InputObject<IResultObject>

Specifies a fallback status point role. To obtain a fallback status point role, use the Get-CMFallbackStatusPoint cmdlet.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-SiteCode<String>

Specifies the site code for a fallback status point.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-SiteSystemServerName<String>

Specifies the site system name for a fallback status point.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

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.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

Example 1: Remove a specified fallback status point

This command removes the fallback status point for the site with the site code cm1 and the system name Server21.West01.Contoso.com.

PS C:\> Remove-CMFallbackStatusPoint -SiteCode "cm1" -SiteSystemName "Server21.West01.Contoso.com"

Example 2: Remove a fallback status point object

This example removes a fallback status point.

The first command gets a fallback status point for the site with the site code cm1 and the system name Server21.West01.Contoso.com and stores that object in the $CMFSP variable.

The second command removes the object stored in $CMFSP.

PS C:\> $CMFSP = Get-CMFallbackStatusPoint -SiteCode "cm1" -SiteSystemName "Server21.West01.Contoso.com"
PS C:\> Remove-CMFallbackStatusPoint -InputObject $CMFSP

Get-CMFallbackStatusPoint

Set-CMFallbackStatusPoint