{"content":"<div></div>","rawMetadata":{"metadata":{"_op_canonicalUrlPrefix":"https://learn.microsoft.com/ja-jp/powershell/","_op_gitContributorInformation":{"author":{"display_name":"Banreet Kaur","id":"92906285","name":"Banreet","profile_url":"https://github.com/Banreet"},"contributors":[{"display_name":"Aaron Czechowski","id":"26784733","name":"aczechowski","profile_url":"https://github.com/aczechowski"},{"display_name":"Dan Mabee","id":"40476441","name":"damabe","profile_url":"https://github.com/damabe"},{"display_name":"sankethka","id":"16908144","name":"sankethka","profile_url":"https://github.com/sankethka"}],"update_at":"2026/09/01","updated_at_date_time":"2026-09-01T12:31:58.1398624Z"},"_path":"module/configurationmanager/remove-cmsecurityrole.json","_rel":"../../","_tocRel":"../sccm-ps/toc.json","apiPlatform":"powershell","author":"Banreet","breadcrumb_path":"/powershell/sccm/bread/toc.json","canonical_url":"https://learn.microsoft.com/ja-jp/powershell/module/configurationmanager/remove-cmsecurityrole?view=sccm-ps","content_git_url":"https://github.com/MicrosoftDocs/sccm-docs-powershell-ref/blob/main/sccm-ps/ConfigurationManager/Remove-CMSecurityRole.md","default_moniker":"sccm-ps","depot_name":"MSDN.sccm-powershell","external help file":"AdminUI.PS.dll-Help.xml","feedback_product_url":"https://feedbackportal.microsoft.com/feedback/forum/4669adfc-ee1b-ec11-b6e7-0022481f8472","feedback_system":"Standard","git_commit_id":"0eebe140da8d33091d6703e03cf0d5da3ec90ad8","gitcommit":"https://github.com/MicrosoftDocs/sccm-docs-powershell/blob/0eebe140da8d33091d6703e03cf0d5da3ec90ad8/sccm-ps/ConfigurationManager/Remove-CMSecurityRole.md","github_contributors":["aczechowski","damabe","sankethka"],"locale":"ja-jp","manager":"laurawi","Module Name":"ConfigurationManager","monikers":["sccm-ps"],"ms.author":"dannygu","ms.date":"12/21/2021","ms.service":"configuration-manager","ms.subservice":"other","ms.topic":"reference","open_to_public_contributors":true,"original_content_git_url":"https://github.com/MicrosoftDocs/sccm-docs-powershell/blob/live/sccm-ps/ConfigurationManager/Remove-CMSecurityRole.md","original_content_git_url_template":"{repo}/blob/{branch}/sccm-ps/ConfigurationManager/Remove-CMSecurityRole.md","PlatyPS schema version":"2.0.0","products":["https://authoring-docs-microsoft.poolparty.biz/devrel/f1499c3b-793f-48c3-a9ce-20285bcc6541"],"site_name":"Docs","title":"Remove-CMSecurityRole","titleSuffix":"Configuration Manager","uhfHeaderId":"MSDocsHeader-Powershell","updated_at":"2026-09-01 12:31 PM","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/remove-cmsecurityrole","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"Remove-CMSecurityRole","schemaType":"PowershellCmdlet","summary":"<p>カスタム セキュリティ ロールを削除します。</p>\n","uid":"ConfigurationManager.Remove-CMSecurityRole"}],"ocv-translation-feedback":true},"_xrefmap":{"ConfigurationManager":{"href":"./","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"ConfigurationManager","schemaType":"PowershellModule","uid":"ConfigurationManager"},"ConfigurationManager.Remove-CMSecurityRole":{"href":"remove-cmsecurityrole","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"Remove-CMSecurityRole","schemaType":"PowershellCmdlet","summary":"<p>カスタム セキュリティ ロールを削除します。</p>\n","uid":"ConfigurationManager.Remove-CMSecurityRole"}},"description":"<p>Configuration Manager からカスタム セキュリティ ロールを削除するには、このコマンドレットを使用します。 削除するセキュリティ ロールの名前または ID を指定するか、 <a href=\"get-cmsecurityrole\">Get-CMSecurityRole</a> コマンドレットを使用して取得します。</p>\n<p>\n              <strong>Remove-CMSecurityRole</strong> コマンドレットを使用して、不要な古いカスタム セキュリティ ロールを削除できます。 組み込みのセキュリティ ロールを削除することはできません。 すべての管理ユーザーには、少なくとも 1 つのセキュリティ ロールが必要です。 セキュリティ ロールを削除する前に、削除したロールに加えて、すべてのユーザーにロールがあることを確認してください。</p>\n<p>セキュリティ ロールとアクセス許可の詳細については、「 <a href=\"/mem/configmgr/core/understand/fundamentals-of-role-based-administration\">Configuration Manager でのロールベースの管理の基礎</a>」を参照してください。</p>\n<div class=\"NOTE\">\n<p>注:</p>\n<p>\n              <code>PS XYZ:\\&gt;</code>など、Configuration Manager サイト ドライブから Configuration Manager コマンドレットを実行します。 詳細については、「作業の <a href=\"/powershell/sccm/overview\">開始</a>」を参照してください。</p>\n</div>\n","examples":[{"code":"Remove-CMSecurityRole -Name \"MainSecurityRole\" -Force","description":"","summary":"<p>このコマンドは、 <strong>MainSecurityRole</strong> という名前のセキュリティ ロールを削除します。\nコマンドは <strong>Force</strong> パラメーターを使用するため、確認を求めるメッセージは表示されません。</p>\n","title":"例 1: 名前を使用してセキュリティ ロールを削除する"},{"code":"$role = Get-CMSecurityRole -Name \"Custom*\"\nRemove-CMSecurityRole -InputObject $role[1]","description":"","summary":"<p>最初のコマンドでは <a href=\"get-cmsecurityrole\">、Get-CMSecurityRole</a> コマンドレットを使用して、 <code>Custom</code>で始まるすべてのセキュリティ ロールを取得し、 <strong>それらを$role</strong> 変数に格納します。</p>\n<p>2 番目のコマンドは、配列に格納されている最初のセキュリティ ロールを削除します。 \n              <strong>Force</strong> パラメーターは指定されていないため、このコマンドは確認を求めます。</p>\n","title":"例 2: 変数を使用してセキュリティ ロールを削除する"}],"inputs":[{"description":"","name":"<span class=\"no-loc xref\">Microsoft.ConfigurationManagement.ManagementProvider.IResultObject</span>\n"}],"links":[{"href":"copy-cmsecurityrole","text":"Copy-CMSecurityRole"},{"href":"export-cmsecurityrole","text":"Export-CMSecurityRole"},{"href":"get-cmsecurityrole","text":"Get-CMSecurityRole"},{"href":"import-cmsecurityrole","text":"Import-CMSecurityRole"},{"href":"set-cmsecurityrole","text":"Set-CMSecurityRole"},{"href":"remove-cmsecurityrolefromadministrativeuser","text":"Remove-CMSecurityRoleFromAdministrativeUser"},{"href":"/mem/configmgr/core/servers/deploy/configure/configure-role-based-administration#automate-with-windows-power-shell","text":"Windows PowerShell を使用してロールベースの管理を自動化する"}],"module":"ConfigurationManager","name":"Remove-CMSecurityRole","notes":"","outputs":[{"description":"","name":"<span class=\"no-loc xref\">System.Object</span>\n"}],"parameters":[{"aliases":"cf","defaultValue":"False","description":"<p>コマンドレットを実行する前に確認メッセージを表示します。</p>\n","name":"Confirm","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターは、ワイルドカード文字をリテラル文字の値として扱います。 \n              <strong>ForceWildcardHandling</strong> と組み合わせることはできません。</p>\n","name":"DisableWildcardHandling","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ユーザーの確認を求めずにコマンドを強制的に実行します。</p>\n","name":"Force","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターはワイルドカード文字を処理し、予期しない動作が発生する可能性があります (推奨されません)。 \n              <strong>DisableWildcardHandling</strong> と組み合わせることはできません。</p>\n","name":"ForceWildcardHandling","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"RoleId","defaultValue":"None","description":"<p>削除するセキュリティ ロールの ID を指定します。 この値は、 <code>RoleID</code> プロパティです。 このコマンドレットはカスタム ロールでのみ機能するため、この値は常にサイト コードで始まる必要があります。 (組み込みロールの ID は <code>SMS</code>から始まります)。</p>\n","isRequired":true,"name":"Id","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>削除するセキュリティ ロール オブジェクトを指定します。 このオブジェクトを取得するには、 <a href=\"get-cmsecurityrole\">Get-CMSecurityRole コマンドレットを</a> 使用します。</p>\n","isRequired":true,"name":"InputObject","parameterValueGroup":"","pipelineInput":true,"position":"Named","type":"<span class=\"no-loc xref\">IResultObject</span>\n"},{"acceptWildcardCharacters":true,"aliases":"RoleName","defaultValue":"None","description":"<p>削除するセキュリティ ロールの名前を指定します。</p>\n","isRequired":true,"name":"Name","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"wi","defaultValue":"False","description":"<p>コマンドレットが実行されるとどうなるかを示します。 コマンドレットは実行されません。</p>\n","name":"WhatIf","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"}],"schema":"PowershellCmdlet","summary":"<p>カスタム セキュリティ ロールを削除します。</p>\n","syntaxes":["Remove-CMSecurityRole [-Force] -InputObject <IResultObject> [-DisableWildcardHandling] [-ForceWildcardHandling]\n [-WhatIf] [-Confirm] [<CommonParameters>]","Remove-CMSecurityRole [-Force] -Id <String> [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf]\n [-Confirm] [<CommonParameters>]","Remove-CMSecurityRole [-Force] -Name <String> [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf]\n [-Confirm] [<CommonParameters>]"],"uid":"ConfigurationManager.Remove-CMSecurityRole","hideEdit":true,"ms.translationtype":"MT","ms.contentlocale":"ja-jp","loc_version":"2024-08-21T21:18:36.7205003Z","loc_source_id":"Github-72476255#live","loc_file_id":"Github-72476255.live.MSDN.sccm-powershell.sccm-ps/ConfigurationManager/Remove-CMSecurityRole.md","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/remove-cmsecurityrole","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"Remove-CMSecurityRole","schemaType":"PowershellCmdlet","summary":"<p>カスタム セキュリティ ロールを削除します。</p>\n","uid":"ConfigurationManager.Remove-CMSecurityRole"}],"canonical_url":"https://learn.microsoft.com/ja-jp/powershell/module/configurationmanager/remove-cmsecurityrole?view=sccm-ps","_op_canonicalUrl":"https://learn.microsoft.com/ja-jp/powershell/module/configurationmanager/remove-cmsecurityrole?view=sccm-ps"},"pageMetadata":"<meta name=\"description\" content=\"<p>Configuration Manager からカスタム セキュリティ ロールを削除するには、このコマンドレットを使用します。 削除するセキュリティ ロールの名前または ID を指定するか、 <a href=&quot;get-cmsecurityrole&quot;>Get-CMSecurityRole</a> コマンドレットを使用して取得します。</p>\n<p>\n              <strong>Remove-CMSecurityRole</strong> コマンドレットを使用して、不要な古いカスタム セキュリティ ロールを削除できます。 組み込みのセキュリティ ロールを削除することはできません。 すべての管理ユーザーには、少なくとも 1 つのセキュリティ ロールが必要です。 セキュリティ ロールを削除する前に、削除したロールに加えて、すべてのユーザーにロールがあることを確認してください。</p>\n<p>セキュリティ ロールとアクセス許可の詳細については、「 <a href=&quot;/mem/configmgr/core/understand/fundamentals-of-role-based-administration&quot;>Configuration Manager でのロールベースの管理の基礎</a>」を参照してください。</p>\n<div class=&quot;NOTE&quot;>\n<p>注:</p>\n<p>\n              <code>PS XYZ:\\&amp;gt;</code>など、Configuration Manager サイト ドライブから Configuration Manager コマンドレットを実行します。 詳細については、「作業の <a href=&quot;/powershell/sccm/overview&quot;>開始</a>」を参照してください。</p>\n</div>\n\" />\r\n<meta name=\"hideEdit\" content=\"true\" />\r\n<meta name=\"loc_file_id\" content=\"Github-72476255.live.MSDN.sccm-powershell.sccm-ps/ConfigurationManager/Remove-CMSecurityRole.md\" />\r\n<meta name=\"loc_source_id\" content=\"Github-72476255#live\" />\r\n<meta name=\"loc_version\" content=\"2024-08-21T21:18:36.7205003Z\" />\r\n<meta name=\"module\" content=\"ConfigurationManager\" />\r\n<meta name=\"ms.contentlocale\" content=\"ja-jp\" />\r\n<meta name=\"ms.translationtype\" content=\"MT\" />\r\n<meta name=\"name\" content=\"Remove-CMSecurityRole\" />\r\n<meta name=\"notes\" content=\"\" />\r\n<meta name=\"schema\" content=\"PowershellCmdlet\" />\r\n<meta name=\"summary\" content=\"<p>カスタム セキュリティ ロールを削除します。</p>\n\" />\r\n<meta name=\"syntaxes\" content=\"Remove-CMSecurityRole [-Force] -InputObject <IResultObject> [-DisableWildcardHandling] [-ForceWildcardHandling]\n [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"Remove-CMSecurityRole [-Force] -Id <String> [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf]\n [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"Remove-CMSecurityRole [-Force] -Name <String> [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf]\n [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"uid\" content=\"ConfigurationManager.Remove-CMSecurityRole\" />\r\n","themesRelativePathToOutputRoot":"_themes/"}