Remove-SCSMEmailTemplate

Remove-SCSMEmailTemplate

Removes an Email template from Service Manager.

Syntax

Parameter Set: Default
Remove-SCSMEmailTemplate [-EmailTemplate] <EmailTemplate[]> [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Remove-SCSMEmailTemplate cmdlet rmoves an Email template from Service Manager.

Parameters

-EmailTemplate<EmailTemplate[]>

Specifies an object that represents the Email template to be removed.

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.Notifications.EmailTemplate

    You can pipe an email template to the EmailTemplate parameter of the Remove-SCSMEmailTemplate cmdlet.

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 --------------------------

This command removes all announcements where the DisplayName property matches the string custom.

PS C:\>Get-SCSMEmailtemplate | ?{ $_.displayname -match "custom" } | Remove-SCSMEmailTemplate

-------------------------- EXAMPLE 2 --------------------------

These commands remove all templates where the Description property matches the string notification.

PS C:\>$templates = get-SCSMEmailTemplate | ?{$_.Description -match "notification"}
PS C:\>Remove-SCSMEmailTemplate –EmailTemplate $templates

Get-SCSMEmailTemplate

Get-SCSMEmailTemplateContent

New-SCSMEmailTemplate

Update-SCSMEmailTemplate