Remove-CMReportingServicePoint

Remove-CMReportingServicePoint

Removes a reporting service point.

Syntax

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

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

Detailed Description

The Remove-CMReportingServicePoint cmdlet removes a reporting service point from a Microsoft System Center 2012 Configuration Manager site. The reporting service point is a site system role that is installed on a server that is running Microsoft SQL Server Reporting Services.

After you remove a reporting service point from a System Center 2012 Configuration Manager site, you cannot manage reports in System Center 2012 Configuration Manager at the site.

Parameters

-Force

Removes the reporting service point 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 CMReportingServicePoint object. To obtain a CMReportingServicePoint object, use the Get-CMReportingServicePoint 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 of the Configuration Manager site that hosts the site system role.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-SiteSystemServerName<String>

Specifies a fully qualified domain name (FQDN) of the server that hosts the site system role.

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 reporting service point

This command removes the reporting service point from the System Center 2012 Configuration Manager site that has the site code Cm1 on the site system server named CMCEN-DIST02.TSQA.CORP.CONTOSCO.COM.

PS C:\> Remove-CMReportingServicePoint -SiteCode "Cm1" -SiteSystemServerName "CMCEN-DIST02.TSQA.CORP.CONTOSCO.COM"

Example 2: Remove a reporting service point by using an object variable

The first command gets the reporting service point from the System Center 2012 Configuration Manager site that has the site code Cm1 on the site system server named CMCEN-DIST02.TSQA.CORP.CONTOSCO.COM. The command stores the results in the $Rsp variable.

The second command removes the reporting service point stored in the $Rsp variable.

PS C:\> $Rsp = Get-CMReportingServicePoint -SiteCode "Cm1" -SiteSystemServerName "CMCEN-DIST02.TSQA.CORP.CONTOSCO.COM"
PS C:\> Remove-CMReportingServicePoint -InputObject $Rsp

Get-CMReportingServicePoint