「Windows10」LayoutModification.xmlでスタートメニューの初期設定をする方法

2020年12月23日

事前準備
スタートメニューが一切ピン留めされていない

■ LayoutModification.xmlの作成手順
1.「ここに入力して検索」欄に「Power」と入力します。

2.「Windows PowerShell」を右クリックし、「管理者として実行する」をクリックします。

3.「cd \」と入力します。
PS C:\>

4.「Set-ExecutionPolicy RemoteSigned」と入力し、実行ポリシーを変更します
PS C:\> Set-ExecutionPolicy RemoteSigned

実行ポリシーの変更
実行ポリシーは、信頼されていないスクリプトからの保護に役立ちます。実行ポリシーを変更すると、about_Execution_Policies
のヘルプ トピック (https://go.microsoft.com/fwlink/?LinkID=135170)
で説明されているセキュリティ上の危険にさらされる可能性があります。実行ポリシーを変更しますか?
[Y] はい(Y) [A] すべて続行(A) [N] いいえ(N) [L] すべて無視(L) [S] 中断(S) [?] ヘルプ (既定値は “N"): Y

5.下記コマンドで開始メニューのxmlを生成します。
PS C:\> Export-Startlayout -path C:\Windows\Temp\StartMenu_Test.xml

6.下記コマンドで配布用標準開始メニューを生成します。
PS C:\> Import-StartLayout -LayoutPath C:\Windows\Temp\StartMenu_Test.xml -MountPath c:/

7.下記場所に「LayoutModification.xml」を生成します。
C:\Users\Default\AppData\Local\Microsoft\Windows\Shell

8.「LayoutModification.xml」の内容確認
内容

<LayoutModificationTemplate xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
  <LayoutOptions StartTileGroupCellWidth="6" />
  <DefaultLayoutOverride>
    <StartLayoutCollection>
      <defaultlayout:StartLayout GroupCellWidth="6" />
    </StartLayoutCollection>
  </DefaultLayoutOverride>
</LayoutModificationTemplate>

 

■ 利用方法
1.作成した「LayoutModification.xml」をコピーします。
2.他のPCに「C:\Users\Default\AppData\Local\Microsoft\Windows\Shell」に置きます

■ 動作確認
1.新規ユーザ作成し、OSにログインします
2.起動メニューを確認します。

Windows10

Posted by arkgame