{"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":"Jonas Ohmsen","id":"38567823","name":"jonasatgit","profile_url":"https://github.com/jonasatgit"},{"display_name":"Aaron Czechowski","id":"26784733","name":"aczechowski","profile_url":"https://github.com/aczechowski"}],"update_at":"2026/09/01","updated_at_date_time":"2026-09-01T12:42:43.9874272Z"},"_path":"module/configurationmanager/set-cmclientsettingsoftwarecenter.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/set-cmclientsettingsoftwarecenter?view=sccm-ps","content_git_url":"https://github.com/MicrosoftDocs/sccm-docs-powershell-ref/blob/main/sccm-ps/ConfigurationManager/Set-CMClientSettingSoftwareCenter.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":"1e266c123449f9941e52a0741ed825134ace84bc","gitcommit":"https://github.com/MicrosoftDocs/sccm-docs-powershell/blob/1e266c123449f9941e52a0741ed825134ace84bc/sccm-ps/ConfigurationManager/Set-CMClientSettingSoftwareCenter.md","github_contributors":["jonasatgit","aczechowski"],"locale":"ja-jp","manager":"laurawi","Module Name":"ConfigurationManager","monikers":["sccm-ps"],"ms.author":"dannygu","ms.service":"configuration-manager","ms.subservice":"other","ms.topic":"reference","online version":"","open_to_public_contributors":true,"original_content_git_url":"https://github.com/MicrosoftDocs/sccm-docs-powershell/blob/live/sccm-ps/ConfigurationManager/Set-CMClientSettingSoftwareCenter.md","original_content_git_url_template":"{repo}/blob/{branch}/sccm-ps/ConfigurationManager/Set-CMClientSettingSoftwareCenter.md","PlatyPS schema version":"2.0.0","products":["https://authoring-docs-microsoft.poolparty.biz/devrel/f1499c3b-793f-48c3-a9ce-20285bcc6541"],"site_name":"Docs","titleSuffix":"Configuration Manager","uhfHeaderId":"MSDocsHeader-Powershell","updated_at":"2026-09-01 12:42 PM","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/set-cmclientsettingsoftwarecenter","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"Set-CMClientSettingSoftwareCenter","schemaType":"PowershellCmdlet","summary":"<p>このコマンドレットを使用して、 <strong>ソフトウェア センター</strong> グループのクライアント設定を構成します。</p>\n","uid":"ConfigurationManager.Set-CMClientSettingSoftwareCenter"}],"ocv-translation-feedback":true},"_xrefmap":{"ConfigurationManager":{"href":"./","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"ConfigurationManager","schemaType":"PowershellModule","uid":"ConfigurationManager"},"ConfigurationManager.Set-CMClientSettingSoftwareCenter":{"href":"set-cmclientsettingsoftwarecenter","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"Set-CMClientSettingSoftwareCenter","schemaType":"PowershellCmdlet","summary":"<p>このコマンドレットを使用して、 <strong>ソフトウェア センター</strong> グループのクライアント設定を構成します。</p>\n","uid":"ConfigurationManager.Set-CMClientSettingSoftwareCenter"}},"description":"<p>このコマンドレットを使用して、 <strong>ソフトウェア センター</strong> グループのクライアント設定を構成します。</p>\n<div class=\"NOTE\">\n<p>注:</p>\n<p>Configuration Manager コマンドレットは、Configuration Manager サイト ドライブから実行する必要があります。 詳細については、概要に関するドキュメント <a href=\"/powershell/sccm/overview\">を</a> 参照してください。</p>\n</div>\n","examples":[{"code":"$itemA = New-CMSoftwareCenterTabItem -Name \"1abc\" -Url \"http://www.a\"\n$itemB = New-CMSoftwareCenterTabItem -Name \"2abc\" -Url \"https://www.b\"\n$itemC = New-CMSoftwareCenterTabItem -Name \"3abc\" -Url \"http://www.c\"\n$itemD = New-CMSoftwareCenterTabItem -Name \"4abc\" -Url \"https://www.d\"\n$itemE = New-CMSoftwareCenterTabItem -Name \"5abc\" -Url \"http://www.e\"\nSet-CMClientSettingSoftwareCenter -DefaultSetting -AddCustomTab ($itemA, $itemB, $itemC, $itemD, $itemE)","description":"","summary":"<p>5 つのカスタム タブ インスタンスを追加します。</p>\n","title":"例 1: カスタム タブを追加する"},{"code":"Set-CMClientSettingSoftwareCenter -DefaultSetting -SetInvisibleTabName (\"2abc\",\"4abc\", \"5abc\")","description":"","summary":"<p>カスタム タブを名前で非表示に設定します。</p>\n","title":"例 2: タブを非表示にする"},{"code":"Set-CMClientSettingSoftwareCenter -DefaultSetting -RemoveCustomTabName (\"3abc\",\"4abc\")","description":"","summary":"<p>カスタム タブを名前で削除します。</p>\n","title":"例 3: タブを削除する"},{"code":"Set-CMClientSettingSoftwareCenter -DefaultSetting -SetVisibleTabName (\"2abc\", \"5abc\")","description":"","summary":"<p>カスタム タブを名前で表示するように設定します。</p>\n","title":"例 4: 非表示のタブを表示する"},{"code":"# Move selected custom tab to specific position by name:\nSet-CMClientSettingSoftwareCenter -DefaultSetting -SelectCustomTabName \"1abc\" -MoveSelectedTabToIndex 0\n\n# Move selected built-in tab to specific position:\nSet-CMClientSettingSoftwareCenter -DefaultSetting -SelectBuiltInTab AvailableSoftware -MoveSelectedTabToIndex 0\n\n# Move selected tab to specific position by current index of position:\nSet-CMClientSettingSoftwareCenter -DefaultSetting -SelectTabIndex 0 -MoveSelectedTabToIndex 1","description":"","summary":"","title":"例 5: タブ オーダーを変更する"},{"code":"Set-CMClientSettingSoftwareCenter -DefaultSetting -SelectCustomTabName \"1abc\" -SelectedTabNewName \"new1abc\" -SelectedTabNewUrl http://www.aNew","description":"","summary":"<p>カスタム タブの名前と URL を名前で変更します。</p>\n","title":"例 6: タブのプロパティを変更する"},{"code":"Set-CMClientSettingSoftwareCenter -DefaultSetting -ClearCustomTab","description":"","summary":"<p>クライアント設定からすべてのカスタム タブをクリーンアップします。</p>\n","title":"例 7: カスタム タブを削除する"}],"inputs":[{"description":"","name":"<span class=\"no-loc xref\">Microsoft.ConfigurationManagement.ManagementProvider.IResultObject</span>\n"}],"links":[{"href":"/mem/configmgr/core/clients/deploy/about-client-settings#software-center","text":"クライアント設定について - ソフトウェア センター"},{"href":"/mem/configmgr/apps/plan-design/plan-for-software-center","text":"ソフトウェア センターの計画"}],"module":"ConfigurationManager","name":"Set-CMClientSettingSoftwareCenter","notes":"","outputs":[{"description":"","name":"<span class=\"no-loc xref\">System.Object</span>\n"}],"parameters":[{"aliases":"AddCustomTabs","defaultValue":"None","description":"<p>このパラメーターを使用して、Software Center クライアント設定にカスタム タブを追加します。</p>\n","name":"AddCustomTab","parameterValueGroup":"","position":"Named","type":"<p><span class=\"no-loc xref\">SoftwareCenterTabItem</span><span>[</span><span>]</span></p>\n"},{"aliases":"ClearAllCustomTabs","defaultValue":"None","description":"<p>ソフトウェア センター クライアント設定からカスタム タブを削除するには、このパラメーターを使用します。</p>\n","name":"ClearCustomTab","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターを使用して、ソフトウェア センター クライアント設定の <strong>[ソフトウェア センターの配色] を構成します</strong>。\ncolor オブジェクトの例: Red=255、Green=74、Blue=74: <strong>$colorObject = [system.drawing.color]::FromArgb(255,255,74,74)</strong></p>\n","name":"ColorScheme","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Color</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターを使用して、ソフトウェア センター のクライアント設定 ( <strong>会社名)</strong> を構成します。</p>\n","name":"CompanyName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"cf","defaultValue":"None","description":"<p>コマンドレットを実行する前に確認メッセージを表示します。</p>\n","name":"Confirm","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターは非推奨です。 カスタム タブを作成するには、 <a href=\"new-cmsoftwarecentertabitem\">New-CMSoftwareCenterTabItem コマンドレットを</a> 使用します。</p>\n","name":"CustomTabName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターは非推奨です。 カスタム タブを作成するには、 <a href=\"new-cmsoftwarecentertabitem\">New-CMSoftwareCenterTabItem コマンドレットを</a> 使用します。</p>\n","name":"CustomTabUrl","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Uri</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターは、既定のクライアント設定に設定を適用します。 任意のカスタム クライアント設定にパラメーター <strong>-Name を</strong> 使用します。</p>\n","isRequired":true,"name":"DefaultSetting","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>ソフトウェア センターの既定の [アプリケーション] タブを表示または非表示にするには、このパラメーター <strong>を</strong> 使用します。</p>\n","name":"EnableApplicationsTab","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターの既定の <strong>[デバイス コンプライアンス</strong> ] タブを表示または非表示にするには、このパラメーターを使用します。</p>\n","name":"EnableComplianceTab","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターを使用すると、ソフトウェア センターのカスタム設定が有効になります。 配色やロゴのように。</p>\n","name":"EnableCustomize","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターの既定の <strong>[オペレーティング システム</strong> ] タブを表示または非表示にするには、このパラメーターを使用します。</p>\n","name":"EnableOperatingSystemsTab","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターの既定の <strong>[オプション]</strong> タブを表示または非表示にするには、このパラメーターを使用します。</p>\n","name":"EnableOptionsTab","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターの既定の <strong>[インストール状態]</strong> タブを表示または非表示にするには、このパラメーターを使用します。</p>\n","name":"EnableStatusTab","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターの既定の <strong>[更新プログラム</strong> ] タブを表示または非表示にするには、このパラメーターを使用します。</p>\n","name":"EnableUpdatesTab","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</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":"","defaultValue":"None","description":"<p>\n              <strong>ソフトウェア センター</strong> グループで次のクライアント設定を有効または無効にするには、このパラメーターを使用します。<strong>ソフトウェア センターの [アプリケーション カタログの非表示] リンク</strong></p>\n","name":"HideApplicationCatalogLink","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア <strong>センター</strong> グループで次のクライアント設定を有効または無効にするには、このパラメーターを使用します。 <strong>ソフトウェア センターでインストールされているアプリケーションを非表示にする</strong></p>\n","name":"HideInstalledApplication","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア <strong>センター</strong> グループで次のクライアント設定を有効または無効にするには、このパラメーターを使用します。 <strong>ソフトウェア センターで承認されていないアプリケーションを非表示にする</strong></p>\n","name":"HideUnapprovedApplication","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>\n              <strong>Get-CMClientSetting</strong> のオブジェクト</p>\n","isRequired":true,"name":"InputObject","parameterValueGroup":"","pipelineInput":true,"position":"Named","type":"<span class=\"no-loc xref\">IResultObject</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターでロゴとして表示するイメージへのファイル パスを指定するには、このパラメーターを使用します。</p>\n","name":"LogoFilePath","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターのタブの順序を変更するには、このパラメーターを使用します。 位置の整数を指定し、先頭に <code>0</code> を指定します。 移動するタブを選択するには、次のいずれかのパラメーターを使用します。 <strong>SelectCustomTabName</strong>、 <strong>SelectBuiltInTab</strong>、 <strong>SelectTabIndex</strong>。</p>\n","name":"MoveSelectedTabToIndex","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Int32</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>クライアント設定を名前で指定するには、このパラメーターを使用します。</p>\n","isRequired":true,"name":"Name","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターを追加して、作業中のアイテムを表すオブジェクトを返します。 既定では、このコマンドレットは出力を生成しない場合があります。</p>\n","name":"PassThru","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"RemoveCustomTabNames","defaultValue":"None","description":"<p>クライアント設定から削除するカスタム タブの名前を指定します。 1 つ以上の名前を設定できます。</p>\n","name":"RemoveCustomTabName","parameterValueGroup":"","position":"Named","type":"<p><span class=\"no-loc xref\">String</span><span>[</span><span>]</span></p>\n"},{"aliases":"","defaultValue":"None","description":"<p>このパラメーターを使用して、ソフトウェア センターの組み込みタブのいずれかを選択します。 同じコマンドで次のいずれかのパラメーターを使用して、タブの構成を変更します。 <strong>MoveSelectedTabToIndex</strong>、 <strong>SelectedTabNewName</strong>、 <strong>SelectedTabNewUrl</strong>。</p>\n","name":"SelectBuiltInTab","parameterValueGroup":"AvailableSoftware, Updates, Osd, InstallationStatus, Compliance, Options","position":"Named","type":"<span class=\"no-loc xref\">BuiltInTab</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターでカスタム タブを名前で選択するには、このパラメーターを使用します。 同じコマンドで次のいずれかのパラメーターを使用して、タブの構成を変更します。 <strong>MoveSelectedTabToIndex</strong>、 <strong>SelectedTabNewName</strong>、 <strong>SelectedTabNewUrl</strong>。</p>\n","name":"SelectCustomTabName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"SelectedCustomTabNewName","defaultValue":"None","description":"<p>タブを選択したときと同じコマンドで、このパラメーターを使用してタブの名前を変更します。</p>\n","name":"SelectedTabNewName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"SelectedCustomTabNewUrl","defaultValue":"None","description":"<p>タブを選択する場合と同じコマンドで、このパラメーターを使用してタブの URL を変更します。</p>\n","name":"SelectedTabNewUrl","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Uri</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>ソフトウェア センターでタブを順番に選択するには、このパラメーターを使用します。 位置の整数を指定し、先頭に <code>0</code> を指定します。 同じコマンドで次のいずれかのパラメーターを使用して、タブの構成を変更します。 <strong>MoveSelectedTabToIndex</strong>、 <strong>SelectedTabNewName</strong>、 <strong>SelectedTabNewUrl</strong>。</p>\n","name":"SelectTabIndex","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Int32</span>\n"},{"aliases":"SetInvisibleCustomTabNames","defaultValue":"None","description":"<p>名前に基づいてカスタム タブを非表示にするには、このパラメーターを使用します。 1 つ以上のタブを指定できます。</p>\n","name":"SetInvisibleTabName","parameterValueGroup":"","position":"Named","type":"<p><span class=\"no-loc xref\">String</span><span>[</span><span>]</span></p>\n"},{"aliases":"SetVisibleCustomTabNames","defaultValue":"None","description":"<p>名前に基づいてカスタム タブを表示するには、このパラメーターを使用します。 1 つ以上のタブを指定できます。</p>\n","name":"SetVisibleTabName","parameterValueGroup":"","position":"Named","type":"<p><span class=\"no-loc xref\">String</span><span>[</span><span>]</span></p>\n"},{"aliases":"wi","defaultValue":"None","description":"<p>コマンドレットが実行されるとどうなるかを示します。 コマンドレットは実行されません。</p>\n","name":"WhatIf","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"}],"schema":"PowershellCmdlet","summary":"<p>このコマンドレットを使用して、 <strong>ソフトウェア センター</strong> グループのクライアント設定を構成します。</p>\n","syntaxes":["Set-CMClientSettingSoftwareCenter [-AddCustomTab <SoftwareCenterTabItem[]>] [-ClearCustomTab]\n [-ColorScheme <Color>] [-CompanyName <String>] [-CustomTabName <String>] [-CustomTabUrl <Uri>]\n [-EnableApplicationsTab <Boolean>] [-EnableComplianceTab <Boolean>] [-EnableCustomize <Boolean>]\n [-EnableOperatingSystemsTab <Boolean>] [-EnableOptionsTab <Boolean>] [-EnableStatusTab <Boolean>]\n [-EnableUpdatesTab <Boolean>] [-HideApplicationCatalogLink <Boolean>] [-HideInstalledApplication <Boolean>]\n [-HideUnapprovedApplication <Boolean>] [-LogoFilePath <String>] [-MoveSelectedTabToIndex <Int32>]\n [-RemoveCustomTabName <String[]>] [-SelectBuiltInTab <BuiltInTab>] [-SelectCustomTabName <String>]\n [-SelectedTabNewName <String>] [-SelectedTabNewUrl <Uri>] [-SelectTabIndex <Int32>]\n [-SetInvisibleTabName <String[]>] [-SetVisibleTabName <String[]>] -Name <String> [-PassThru]\n [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","Set-CMClientSettingSoftwareCenter [-AddCustomTab <SoftwareCenterTabItem[]>] [-ClearCustomTab]\n [-ColorScheme <Color>] [-CompanyName <String>] [-CustomTabName <String>] [-CustomTabUrl <Uri>]\n [-EnableApplicationsTab <Boolean>] [-EnableComplianceTab <Boolean>] [-EnableCustomize <Boolean>]\n [-EnableOperatingSystemsTab <Boolean>] [-EnableOptionsTab <Boolean>] [-EnableStatusTab <Boolean>]\n [-EnableUpdatesTab <Boolean>] [-HideApplicationCatalogLink <Boolean>] [-HideInstalledApplication <Boolean>]\n [-HideUnapprovedApplication <Boolean>] [-LogoFilePath <String>] [-MoveSelectedTabToIndex <Int32>]\n [-RemoveCustomTabName <String[]>] [-SelectBuiltInTab <BuiltInTab>] [-SelectCustomTabName <String>]\n [-SelectedTabNewName <String>] [-SelectedTabNewUrl <Uri>] [-SelectTabIndex <Int32>]\n [-SetInvisibleTabName <String[]>] [-SetVisibleTabName <String[]>] [-DefaultSetting] [-PassThru]\n [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","Set-CMClientSettingSoftwareCenter [-AddCustomTab <SoftwareCenterTabItem[]>] [-ClearCustomTab]\n [-ColorScheme <Color>] [-CompanyName <String>] [-CustomTabName <String>] [-CustomTabUrl <Uri>]\n [-EnableApplicationsTab <Boolean>] [-EnableComplianceTab <Boolean>] [-EnableCustomize <Boolean>]\n [-EnableOperatingSystemsTab <Boolean>] [-EnableOptionsTab <Boolean>] [-EnableStatusTab <Boolean>]\n [-EnableUpdatesTab <Boolean>] [-HideApplicationCatalogLink <Boolean>] [-HideInstalledApplication <Boolean>]\n [-HideUnapprovedApplication <Boolean>] [-LogoFilePath <String>] [-MoveSelectedTabToIndex <Int32>]\n [-RemoveCustomTabName <String[]>] [-SelectBuiltInTab <BuiltInTab>] [-SelectCustomTabName <String>]\n [-SelectedTabNewName <String>] [-SelectedTabNewUrl <Uri>] [-SelectTabIndex <Int32>]\n [-SetInvisibleTabName <String[]>] [-SetVisibleTabName <String[]>] -InputObject <IResultObject> [-PassThru]\n [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]"],"uid":"ConfigurationManager.Set-CMClientSettingSoftwareCenter","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/Set-CMClientSettingSoftwareCenter.md","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/set-cmclientsettingsoftwarecenter","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"Set-CMClientSettingSoftwareCenter","schemaType":"PowershellCmdlet","summary":"<p>このコマンドレットを使用して、 <strong>ソフトウェア センター</strong> グループのクライアント設定を構成します。</p>\n","uid":"ConfigurationManager.Set-CMClientSettingSoftwareCenter"}],"canonical_url":"https://learn.microsoft.com/ja-jp/powershell/module/configurationmanager/set-cmclientsettingsoftwarecenter?view=sccm-ps","_op_canonicalUrl":"https://learn.microsoft.com/ja-jp/powershell/module/configurationmanager/set-cmclientsettingsoftwarecenter?view=sccm-ps"},"pageMetadata":"<meta name=\"description\" content=\"<p>このコマンドレットを使用して、 <strong>ソフトウェア センター</strong> グループのクライアント設定を構成します。</p>\n<div class=&quot;NOTE&quot;>\n<p>注:</p>\n<p>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/Set-CMClientSettingSoftwareCenter.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=\"Set-CMClientSettingSoftwareCenter\" />\r\n<meta name=\"notes\" content=\"\" />\r\n<meta name=\"schema\" content=\"PowershellCmdlet\" />\r\n<meta name=\"summary\" content=\"<p>このコマンドレットを使用して、 <strong>ソフトウェア センター</strong> グループのクライアント設定を構成します。</p>\n\" />\r\n<meta name=\"syntaxes\" content=\"Set-CMClientSettingSoftwareCenter [-AddCustomTab <SoftwareCenterTabItem[]>] [-ClearCustomTab]\n [-ColorScheme <Color>] [-CompanyName <String>] [-CustomTabName <String>] [-CustomTabUrl <Uri>]\n [-EnableApplicationsTab <Boolean>] [-EnableComplianceTab <Boolean>] [-EnableCustomize <Boolean>]\n [-EnableOperatingSystemsTab <Boolean>] [-EnableOptionsTab <Boolean>] [-EnableStatusTab <Boolean>]\n [-EnableUpdatesTab <Boolean>] [-HideApplicationCatalogLink <Boolean>] [-HideInstalledApplication <Boolean>]\n [-HideUnapprovedApplication <Boolean>] [-LogoFilePath <String>] [-MoveSelectedTabToIndex <Int32>]\n [-RemoveCustomTabName <String[]>] [-SelectBuiltInTab <BuiltInTab>] [-SelectCustomTabName <String>]\n [-SelectedTabNewName <String>] [-SelectedTabNewUrl <Uri>] [-SelectTabIndex <Int32>]\n [-SetInvisibleTabName <String[]>] [-SetVisibleTabName <String[]>] -Name <String> [-PassThru]\n [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"Set-CMClientSettingSoftwareCenter [-AddCustomTab <SoftwareCenterTabItem[]>] [-ClearCustomTab]\n [-ColorScheme <Color>] [-CompanyName <String>] [-CustomTabName <String>] [-CustomTabUrl <Uri>]\n [-EnableApplicationsTab <Boolean>] [-EnableComplianceTab <Boolean>] [-EnableCustomize <Boolean>]\n [-EnableOperatingSystemsTab <Boolean>] [-EnableOptionsTab <Boolean>] [-EnableStatusTab <Boolean>]\n [-EnableUpdatesTab <Boolean>] [-HideApplicationCatalogLink <Boolean>] [-HideInstalledApplication <Boolean>]\n [-HideUnapprovedApplication <Boolean>] [-LogoFilePath <String>] [-MoveSelectedTabToIndex <Int32>]\n [-RemoveCustomTabName <String[]>] [-SelectBuiltInTab <BuiltInTab>] [-SelectCustomTabName <String>]\n [-SelectedTabNewName <String>] [-SelectedTabNewUrl <Uri>] [-SelectTabIndex <Int32>]\n [-SetInvisibleTabName <String[]>] [-SetVisibleTabName <String[]>] [-DefaultSetting] [-PassThru]\n [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"Set-CMClientSettingSoftwareCenter [-AddCustomTab <SoftwareCenterTabItem[]>] [-ClearCustomTab]\n [-ColorScheme <Color>] [-CompanyName <String>] [-CustomTabName <String>] [-CustomTabUrl <Uri>]\n [-EnableApplicationsTab <Boolean>] [-EnableComplianceTab <Boolean>] [-EnableCustomize <Boolean>]\n [-EnableOperatingSystemsTab <Boolean>] [-EnableOptionsTab <Boolean>] [-EnableStatusTab <Boolean>]\n [-EnableUpdatesTab <Boolean>] [-HideApplicationCatalogLink <Boolean>] [-HideInstalledApplication <Boolean>]\n [-HideUnapprovedApplication <Boolean>] [-LogoFilePath <String>] [-MoveSelectedTabToIndex <Int32>]\n [-RemoveCustomTabName <String[]>] [-SelectBuiltInTab <BuiltInTab>] [-SelectCustomTabName <String>]\n [-SelectedTabNewName <String>] [-SelectedTabNewUrl <Uri>] [-SelectTabIndex <Int32>]\n [-SetInvisibleTabName <String[]>] [-SetVisibleTabName <String[]>] -InputObject <IResultObject> [-PassThru]\n [-DisableWildcardHandling] [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"uid\" content=\"ConfigurationManager.Set-CMClientSettingSoftwareCenter\" />\r\n","themesRelativePathToOutputRoot":"_themes/"}