Removing Request Offerings in foreign languages

One question I’m often asked is if it’s possible to remove the request offerings for all languages other than English. Although they aren’t published they are still visible in the ‘All Request Offerings’ view and can be confusing to people when they first start to administer Service Manager. The quickest and easiest way is to use PowerShell and the SMLets module:

Import-Module SMLets Get-SCSMRequestOffering | Where {$_.Title -notlike “Generic Incident Request*”} | Remove-SCSMRequestOffering

This will remove all request offerings that aren’t in English.

About the author