Introduction
In previous posts I showed you how you can upgrade to System Center 2012 R2 SP1 Configuration Manager and how to Deploy Windows 10 x64 Enterprise. In this post I’ll explain how you can customize the Windows 10 start menu for use during a task sequence deployment using an MDT 2013 update 1 integrated task sequence. You could use active directory Group Policy (Administrative Templates\Start Menu and Taskbar\Start Menu Layout) or other methods to do this however this method works very nicely and is easy to implement. I’ll cover customizing the taskbar in a separate post.
Note: I’ve noticed that Internet Explorer doesn’t show up even though pinned to start. Perhaps it’s a way of discouraging usage of same in favor of Microsoft Edge.
Step 1. Review a standard Windows 10 start menu
Using a Windows 10 virtual machine that was previously built (with apps you intend to use in your organization), log in and review the start menu before any customization’s are performed. In the screenshot below there are three columns in the start menu. The left column is where Windows informs you about things it thinks you should know such as recently installed applications or most used apps. In addition you have some standard actions available. The second and third columns contain tiles (boxes) which can be live or not. Live tiles update themselves with (for example) photos, or news snippets depending on the application. Tiles can be resized as
- small
- medium
- wide
- large
but those resize options can vary depending on what type of tile it is. In addition to the columns there group names so that you can group tiles of similar nature together (for example Microsoft Office) and give them an appropriate group name (Office 365).
Step 2. Customize the Windows 10 start menu
Now that you have familiarized yourself with the Windows 10 start menu it’s time to make it look the way you want but before you do understand what is allowed or not.
On Windows 10 for desktop editions, the customized Start works by:
- The OS performs level checks to determine the chosen base default layout, such as the desktop edition and whether Cortana is supported for the country/region.
- The OS reads the LayoutModification.xml file and only allows groups to be appended to Start. The groups have the following constraints:
- 2 groups that are 6 columns wide, or equivalent to the width of 3 medium tiles.
- 2 medium-sized tile rows in height. The OS ignores any tiles that are pinned beyond the second row.
- No limit to the number of apps that can be pinned. There is a theoretical limit of 24 tiles per group (4 small tiles per medium square x 3 columns x 2 rows).
Remove some tiles
To customize the start menu, logon as a user with administrative credentials on that machine. You can begin by removing any tiles that you do not want appearing in the finished menu. To do that, right click on a tile you want to remove and choose Unpin from Start. Repeat as necessary until you’ve removed all the tiles you do not want to appear in your finished start menu.
After removing a bunch of tiles your start menu can look totally empty or at least different to the way it looked in the beginning. In my screenshot below I’ve removed all tiles from the start menu so it is effectively a blank slate.
Add some Tiles
Next, it’s time to add back some colour to your start menu, start with a bunch of apps you’ll be using in your organization and try and group the tiles in a way that you think your users will use often.
To add a tile, click on All Apps in the bottom left corner to see all the applications installed on this computer. Keep in mind that you need to install whatever apps you intend to offer in your organization prior to this customization.
In the list of applications browse to the group that interests you and select an app, right click the app and choose Pin to Start.
Once done, the application will appear in it’s own tile in the first available column.
Repeat as necessary adding a bunch of apps that you want made into a group.
Reposition tiles
Next grab a tile (by selecting a tile, left clicking and holding the mouse button down) that you want to move and move it to the location you want it to appear, when happy, release the mouse button.
Resize tiles
Once you are happy with the order you might want to resize one or more tiles, to do so, right click a tile and choose from the sizes available. Repeat as necessary.
Name groups of tiles
Now that you’ve created a group of tiles, give the group a name. To name a group simply point the mouse cursor to the top of a group of tiles and Name Group (or a previous group name) will appear, click anywhere in the text to enter in a new group name.
After naming a group, you can see the results immediately.
And after you are done customizing the start menu you can review your work. Awesome.
Step 3. Export the custom menu using PowerShell
Now you are ready to capture the customizations using PowerShell. To do so fire up an Administrative cmd prompt and type the following command to store our custom xml files.
mkdir C:\Temp
Next we need to start PowerShell, do so by typing the following command
powershell
At the PowerShell cmd prompt, type the following
Export-StartLayout -Path C:\Temp\LayoutModification.xml
Tip: If you get access denied errors, make sure you are logged in as a user with Administrative permissions on the computer (not just an administrative command prompt), or specify a folder that you have appropriate access to.
Step 4. Copy the XML file to ConfigMgr sources
Using an account that has permissions adequate to write a file to your Configmgr sources structure, on the Windows 10 machine with the custom start menu browse to the C:\Temp folder, select the LayoutModification.xml file and choose copy.
Paste the file into your ConfigMgr sources into a suitably named folder structure (eg: \\sccm\sources\os\Windows 10\Start Menu) such as below
Step 5. Download a PowerShell script
Download the following PowerShell script (in a ZIP archive)
ApplyCustomMenu.zip 356bytes 2617 downloads
extract it and copy the extracted script into the folder structure created above.
Step 6. Create a Package
To deploy the changes to new Windows 10 machines during OSD, you need to make the file above available via a package. In the Configuration Manager console, select software library then applications and right click on Packages. Choose Create Package.
give the package a suitable name such as Windows 10 start screen customizations and point the data source to the folder where you copied the xml file above
Choose Do not create a program and continue through the rest of the wizard until completion.
Step 7. Distribute the package
To distribute this package right click and choose Distribute Content this will make the content available to computers being imaged from selected distribution points.
On the content destination screen, click add then select any distribution points you want to make this available to.
continue through the wizard until completion.
Step 8. Edit a Deploy Windows 10 task sequence
In a previous post you learned how to deploy Windows 10, in this guide you will edit that task sequence to include the custom start menu. In the Configuration Manager console browse to Software Library, Operating Systems and select Task Sequences, locate your Windows 10 task sequence, right click it and choose edit.
Scroll down to a section that occurs after Set Status 4, select Add, select New Group and give it a name like Windows 10 Start Screen Customizations.
Next select the Add dropdown, select General and choose Run Command Line, paste in the following command.
cmd.exe /c copy LayoutModification.xml C:\Windows\Temp & %deployroot%\tools\x64\ServiceUI.exe -process:TSProgressUI.exe %SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy bypass -File "ApplyCustomMenu.ps1"
give the step a suitable name like Import Customized start menu
and make sure to select the previously created Windows 10 Start Screen customizations package so that it can reference the content correctly as shown here
Apply the changes and close the task sequence editor.
Step 9. Deploy a new Windows 10 machine
To review the changes, deploy a new Windows 10 computer
Once it is complete, logon and you’ll see the customized start menu in action. Job done ! Yes I know the Internet Explorer icon is missing, see the note at the top of the page.
Note that the customized xml file above is copied to the default profile path listed below:
C:\Users\Default\AppData\Local\Microsoft\Windows\Shell
Remember that your newly deployed Windows 10 machines start menu will only show pinned tiles that are installed.
Recommended Reading
- How can I deploy Windows 10 Enterprise x64 with MDT 2013 Update 1 integrated with System Center 2012 R2 SP1 Configuration Manager ?
- How can I upgrade to System Center 2012 R2 SP1 with MDT 2013 update 1 integrated ?
- Start layout for Windows 10 desktop editions
Well that’s all, until next time,
cheers
niall
Pingback: Remove tiles from start menu for all users