強制的にインストールされる Web アプリのリストを構成する
サポートされているバージョン
- Windows と macOS での 80 以降
説明
ポリシーを設定すると、ユーザーの操作なしでサイレント インストールする Web アプリのリストが指定されます。 ユーザーは、ポリシーをオフにしたり、これらの Web アプリをアンインストールしたりすることはできません。
ポリシーの各リスト アイテムは、必須のメンバー: URL (インストールする Web アプリの URL) を持つオブジェクトです。
および 6 件の省略可能なメンバー:
default_launch_container (Web アプリの開き方については、新しいタブが既定値です)
create_desktop_shortcut (Linux および Microsoft Windows デスクトップ ショートカットを作成する場合は True)。
fallback_app_name (Microsoft Edge バージョン 90 以降、アプリ名がプログレッシブ Web アプリ (PWA) ではない場合は完全にオーバーライドできます。インストールを完了さために認証が必要な場合は、アプリ名を一時的にオーバーライドできます。 custom_name と fallback_app_name の両方が指定されている場合、後者は無視されます)。
custom_name (Microsoft Edge バージョン 112 以降では、すべてのデスクトップ プラットフォームで、すべての Web アプリと PWA のアプリ名を完全にオーバーライドできます。)
custom_icon (Microsoft Edge バージョン 112 以降では、すべてのデスクトップ プラットフォームで、インストールされているアプリのアプリ アイコンをオーバーライドできます。アイコンは正方形、最大 1 MB のサイズで、次のいずれかの形式である必要があります: jpeg、png、gif、webp、ico。ハッシュ値は、アイコン ファイルの SHA256 ハッシュである必要があります。アプリのインストール時にアイコンを使用できるにするようにするため、URL は認証なしでアクセスできる必要があります。)
install_as_shortcut (Microsoft Edge バージョン 107 以降)。 有効にすると、指定された URL が、デスクトップ ブラウザー GUI の [ショートカットの作成...] オプションを介して行われたかのように、ショートカットとしてインストールされます。 ショートカットとしてインストールすると、URL のマニフェストが変更されても更新されないことに注意してください。 無効または未設定の場合、指定された URL の Web アプリは通常どおりインストールされます。 (これは現在 Microsoft Edge でサポートされていません。)
サポートされている機能
- 必須にすることができるか: はい
- 推奨にすることができるか: いいえ
- 動的なポリシーの更新: はい
- プロファイルごと: はい
- Microsoft アカウントでサインインしているプロファイルに適用: いいえ
データ型
- Dictionary
Windows の情報と設定
グループ ポリシー (ADMX) 情報
- GP 固有の名前: WebAppInstallForceList
- GP 名: 強制インストールする Web アプリの一覧を構成する
- GP パス (必須): 管理用テンプレート/Microsoft Edge
- GP パス (推奨): なし
- GP ADMX ファイル名: MSEdge.admx
値の例
[{"create_desktop_shortcut": true, "default_launch_container": "window", "url": "https://www.contoso.com/maps"}, {"default_launch_container": "tab", "url": "https://app.contoso.edu"}, {"default_launch_container": "window", "fallback_app_name": "Editor", "url": "https://app.contoso.edu/editor"}, {"custom_name": "Spreadsheets", "default_launch_container": "window", "install_as_shortcut": true, "url": "https://app.contoso.edu/sheets"}, {"custom_icon": {"hash": "c28f469c450e9ab2b86ea47038d2b324c6ad3b1e9a4bd8960da13214afd0ca38", "url": "https://mydomain.example.com/sunny_icon.png"}, "url": "https://weather.example.com"}]
レジストリの設定
- パス (必須): SOFTWARE\Policies\Microsoft\Edge
- パス (推奨): なし
- 値名: WebAppInstallForceList
- 値の型: REG_SZ
レジストリ値の例
[{"create_desktop_shortcut": true, "default_launch_container": "window", "url": "https://www.contoso.com/maps"}, {"default_launch_container": "tab", "url": "https://app.contoso.edu"}, {"default_launch_container": "window", "fallback_app_name": "Editor", "url": "https://app.contoso.edu/editor"}, {"custom_name": "Spreadsheets", "default_launch_container": "window", "install_as_shortcut": true, "url": "https://app.contoso.edu/sheets"}, {"custom_icon": {"hash": "c28f469c450e9ab2b86ea47038d2b324c6ad3b1e9a4bd8960da13214afd0ca38", "url": "https://mydomain.example.com/sunny_icon.png"}, "url": "https://weather.example.com"}]
拡張されたレジストリ値の例
[
{
"create_desktop_shortcut": true,
"default_launch_container": "window",
"url": "https://www.contoso.com/maps"
},
{
"default_launch_container": "tab",
"url": "https://app.contoso.edu"
},
{
"default_launch_container": "window",
"fallback_app_name": "Editor",
"url": "https://app.contoso.edu/editor"
},
{
"custom_name": "Spreadsheets",
"default_launch_container": "window",
"install_as_shortcut": true,
"url": "https://app.contoso.edu/sheets"
},
{
"custom_icon": {
"hash": "c28f469c450e9ab2b86ea47038d2b324c6ad3b1e9a4bd8960da13214afd0ca38",
"url": "https://mydomain.example.com/sunny_icon.png"
},
"url": "https://weather.example.com"
}
]
Mac の情報と設定
- 基本設定キー名: WebAppInstallForceList
- サンプル値:
<key>WebAppInstallForceList</key>
<array>
<dict>
<key>create_desktop_shortcut</key>
<true/>
<key>default_launch_container</key>
<string>window</string>
<key>url</key>
<string>https://www.contoso.com/maps</string>
</dict>
<dict>
<key>default_launch_container</key>
<string>tab</string>
<key>url</key>
<string>https://app.contoso.edu</string>
</dict>
<dict>
<key>default_launch_container</key>
<string>window</string>
<key>fallback_app_name</key>
<string>Editor</string>
<key>url</key>
<string>https://app.contoso.edu/editor</string>
</dict>
<dict>
<key>custom_name</key>
<string>Spreadsheets</string>
<key>default_launch_container</key>
<string>window</string>
<key>install_as_shortcut</key>
<true/>
<key>url</key>
<string>https://app.contoso.edu/sheets</string>
</dict>
<dict>
<key>custom_icon</key>
<dict>
<key>hash</key>
<string>c28f469c450e9ab2b86ea47038d2b324c6ad3b1e9a4bd8960da13214afd0ca38</string>
<key>url</key>
<string>https://mydomain.example.com/sunny_icon.png</string>
</dict>
<key>url</key>
<string>https://weather.example.com</string>
</dict>
</array>