====== Start Menu Layout (Windows 10) ====== * It seems like the only way to set the initial start tile layout is to force the layout using group policy. This has the advantage that it is static meaning that it can not be changed. So for restricted users like students this might be a good thing, but for staff it is less than desirable. ====== AD GPO Method ====== ===== Setup ===== - First customize your start menu tiles until they are arranged to your liking. - Then open **Powershell** - **In powershell** run the command Export-StartLayout -Path C:\Users\defaultstartlayout.xml - Then open **gpedit.msc** (local) or the your target gpo in **Group Policy Management** (ADS) - Go to **User Configuration** > **Administrative Templates** > **Start Menu and Taskbar**{{:windows:startlayout_main.png?400|}} - Then edit **Start Screen Layout** - Enable the policy and put the path of the xml file you exported in step 3 (C:\Users\defaultstartlayout.xml for this example){{:windows:startlayout.png?300|}} ====== Default User/ Import Layout Method ====== * It is possible to update the Default profile "C:\Users\Default" to have a custom start menu layout. The process is pretty straightforward simply export your current start menu layout in Powershell then import the resultant XML file into the default user profile. This method has the benefit that new users can modify their start menu unlike forcing the start menu through GPO policy. - Setup your start menu as you would like for new users. Be sure no do put folders or files located in your profile like your "Documents" folder since they point to the folder in your profile not the symbolic Documents folder. This is a example of what I used for my business lab{{:windows:start_meu.png?300}} - Start **powershell as administrator** (this is required since we need to modify the default user profile){{:windows:powershell.png?300}} - Run the following in **powershell**Export-StartLayout -Path C:\custom_layout.xml - Here is a example of the xml file - Lastly Import the xml file to your default user profileImport-StartLayout -LayoutPath C:\custom_layout.xml -MountPath $env:SystemDrive\ --- //[[tschulz@sebeka.k12.mn.us|Thad Schulz]] 2015/11/25 10:37//