What tool contains all of the customizations and configurations for your Windows computer?

You can customize the Windows guest operating systems of the virtual machines when you deploy a new virtual machine from a template or clone an existing virtual machine. Customizing the guest operating system helps prevent conflicts that might result if you or other users deploy virtual machines with identical settings, such as duplicate computer names.

You can prevent Windows from assigning new virtual machines or templates with the same Security IDs (SIDs) as the original virtual machine. Duplicate SIDs do not cause problems when the computers are part of a domain and only domain user accounts are used. However, if the computers are part of a Workgroup or local user accounts are used, duplicate SIDs can compromise file access controls. For more information, see the documentation for your Microsoft Windows operating system.

Important: After customization, the default administrator password is not preserved for Windows Server 2008. During customization, the Windows Sysprep utility deletes and recreates the administrator account on Windows Server 2008. You must reset the administrator password when the virtual machine starts the first time after customization.

Prerequisites

  • Verify that all requirements for customization are met. See Guest Operating System Customization Requirements.
  • Verify that there are customization specifications available for use. For information about creating a guest customization specification, see Create a Customization Specification for Windows.

Procedure

  1. Right-click any vSphere Client inventory object that is a valid parent object of a virtual machine, such as data center, cluster, vApp, resource pool, or host, and select New Virtual Machine.
  2. On the Select a creation page, select Clone an existing virtual machine or Deploy from template.
  3. Click Next.
  4. Follow the prompts until you reach the Select clone options page.
  5. On the Select clone options page, select the Customize the operating system check box and click Next.
  6. On the Customize guest OS page, apply a customization specification to the virtual machine, and click Next.
    OptionAction
    Select an existing specificationSelect a customization specification from the list.
    OverrideTo change the guest customization specification for this deployment only, click Override, complete the steps in the Override VM Customization Specification wizard, and click OK.
  7. On the User settings page, specify the required settings for the virtual machine.

    This page of the wizard appears only if the selected specification requires additional customization.

  8. On the Ready to complete page, review the details and click Finish.

Results

When the new virtual machine starts for the first time, the guest operating system runs finalization scripts to complete the customization process. The virtual machine might restart several times during this process.

If the guest operating system pauses when the new virtual machine starts, it might be waiting for you to correct errors, such as an incorrect product key or an invalid user name. To determine whether the system is waiting for information, open the virtual machine console.

What to do next

After you deploy certain Windows operating systems that are not volume licensed, you might need to reactivate your operating system on the new virtual machine.

If the new virtual machine encounters customization errors while it is starting, the errors are logged to %WINDIR%\temp\vmware-imc. To view the error log file, from the Windows Start menu navigate to .

Microsoft giveth, and Microsoft taketh away. Such is the lifecycle of Windows OS releases. Microsoft wows us with new features and slick animations, but it forgets to mention everything we give up when we transition to a new OS. 

One feature that’s become far less reliable with each new Windows OS release is the ability to customize the default profile using Sysprep. Let’s cover these changes and what we can do to achieve similar results with default profiles in Windows 11. 

What happened to CopyProfile

In years past, sysadmins could make changes to the local Administrator account in audit mode and run a Sysprep command with the “CopyProfile” option enabled; those changes would be copied into the default user account. These customizations would replicate across new user accounts that logged in to that computer. If this was a reference VM and captured for imaging purposes, the customized default profile would be distributed to all endpoints and applied to all users who log in to those endpoints. 

Unfortunately, this procedure hasn’t worked reliably since very early in the lifespan of Windows 10 (mid-2016) and even less so on Windows 11. However, that won’t stop us from finding new ways to customize the default profile. 

Customize the Windows 11 Start menu

The drastically different Start menu was probably the most significant change introduced in Windows 11. Not only did Microsoft change the look, feel, and location of the Start menu, but the company also changed the way we manage it. We’ll talk about this a bit more in a later section, but for now, here’s how we can customize the start menu and copy it to the default profile. 

  1. Remove apps pinned to the Start menu by default by right-clicking on the app and clicking Unpin from Start. Leave any of the default apps you wish to keep.
    What tool contains all of the customizations and configurations for your Windows computer?
  2. To add app pins to the Start menu, click All apps. Then, right-click on the apps you wish to add, and click Pin to Start.
    What tool contains all of the customizations and configurations for your Windows computer?
  3. Continue adding and removing app pins until your Start menu is fully customized. You can rearrange app pins by clicking, holding, and dragging the pin into place. Here is my finished Start menu layout.
    What tool contains all of the customizations and configurations for your Windows computer?

    With our Start menu customized, we’ll use Robocopy to copy the start.bin file, which contains all the changes we made. The start.bin file is located at: C:\Users\<username>\AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalStateDepending on your version of Windows 11, the file may be called start.bin, start2.bin, or some other variation of this filename. We need to copy this file into the default user profile. However, the folder structure doesn’t exist yet. You can manually create the folder structure, mirroring the logged-on user structure, or use this Robocopy script to copy the file and folder structure over. Here is the script, which needs to run from an elevated command prompt:
    robocopy "C:\Users\<username>\AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState" "C:\Users\Default\AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState" "start.bin" 
What tool contains all of the customizations and configurations for your Windows computer?
You’ll need to modify username and start.bin to match your environment.

Once the file has been copied, we’re ready to move on to the next step: customizing the taskbar.

Customizing the Windows 11 taskbar

To customize the taskbar in Windows 11, we’ll create a LayoutModification.xml file that contains the apps we want pinned to the taskbar. This method remains unchanged from Windows 10. Here’s how it works: 

    1. Click on the Start button, then type Notepad in the search bar. Right-click on the Notepad app, and click Run as administrator.
      What tool contains all of the customizations and configurations for your Windows computer?
    2. Copy and paste this XML into Notepad:
      <?xml version="1.0" encoding="utf-8"?> <LayoutModificationTemplate xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout" Version="1"> <CustomTaskbarLayoutCollection> <defaultlayout:TaskbarLayout> <taskbar:TaskbarPinList> <taskbar:DesktopApp DesktopApplicationID="Microsoft.Windows.Explorer" /> <taskbar:DesktopApp DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\System Tools\Command Prompt.lnk" /> </taskbar:TaskbarPinList> </defaultlayout:TaskbarLayout> </CustomTaskbarLayoutCollection> </LayoutModificationTemplate>
    3. This XML contains examples of two apps that will be linked to the taskbar: Windows Explorer and Command Prompt. Windows Explorer uses the DesktopApplicationID, and Command Prompt uses the DesktopApplicationLinkPath. You can use either format to add apps to your XML file. Copy or replace these examples with the apps that you want to add to the taskbar following the structure provided.

      You can get AppIDs using this PowerShell command:

      Get-StartAppsAlternatively, you can get the ApplicationLinkPath for most applications from this hidden folder:

      C:\ProgramData\Microsoft\Windows\Start Menu\Programs

      Here is my finished XML using some LinkPaths and some ApplicationIDs:

      What tool contains all of the customizations and configurations for your Windows computer?

    4. Once you’ve modified the XML, click File > Save As.
    5. In the Save as window, navigate to: C:\Users\Default\AppData\Local\Microsoft\Windows\Shell.
    6. Name the file LayoutModification.xml.
    7. Click the dropdown menu next to Save as type and select All files (*.*).
      What tool contains all of the customizations and configurations for your Windows computer?
    8. Click Save.

      With the LayoutModification.xml file in place, newly created user accounts only have the pins specified in the XML file on their taskbar. Users can modify and add their own pins after logging on.

      At this point, we can ensure our Start menu and our taskbar settings are applied correctly by creating a new local user account and logging in to it.

      What tool contains all of the customizations and configurations for your Windows computer?

      With the new account created, let’s log in to it and ensure our customizations carried over.

      What tool contains all of the customizations and configurations for your Windows computer?

      Both the Start menu and the taskbar contain the app pins we specified.

Configuring default application associations

Default application associations ensure the correct application launches when a user opens a specific file type. While the process of exporting and importing applications associations hasn’t changed much since Windows 10, it’s worth highlighting. 

Setting default applications 

Here’s how to set default apps in Windows 11: 

  1. Right-click on the Start button, then click on Settings.
    What tool contains all of the customizations and configurations for your Windows computer?
  2. In the Settings menu, click Apps, then click Default apps.
    What tool contains all of the customizations and configurations for your Windows computer?
  3. Click on any application you want to set as a default.
    What tool contains all of the customizations and configurations for your Windows computer?
  4. Manually assign each file type association, or click Set default.
    What tool contains all of the customizations and configurations for your Windows computer?

Exporting a default application association XML 

With our defaults configured, the next thing we need to do is export these settings. 

  1. Click the Search button on the taskbar, then enter cmd into the search field. 
  1. Right-click on the Command Prompt application, and click Run as administrator.
    What tool contains all of the customizations and configurations for your Windows computer?
  2. If prompted to allow the app to make changes to your device, click Yes.
  3. Run the following command:
    Dism.exe /Online /Export-DefaultAppAssociations:\\<server_name>\<share_name>\Appassoc.xml
    What tool contains all of the customizations and configurations for your Windows computer?

Import a default application association XML 

We can use a few different methods to import a default application association XML. The first is to mount an offline Windows image, then import the file using these commands: 
Dism.exe /Mount-image /imagefile:<path_to_Image_file> /MountDir:<target_mount_directory> 

With the image mounted, use this command to import the app association file: 
Dism.exe /Image:C:\<target_mount_directory> /Import-DefaultAppAssociations:\\<server_name>\<share_name>\Appassoc.xml 

Alternatively, you can use a script to run the import command during a post-deployment task, such as during the Specialize or First Boot phases. 

Lastly, you can distribute the application association file with Group Policy. 

  1. Open Group Policy Management. 
  2. Right-click on the OU you wish to apply the policy to, then click Create a GPO in this domain, and link it 
  3. Name the GPO, then click OK
  4. Right-click on the newly created GPO, then click Edit
  5. Navigate to Computer Configuration > Policies > Administrative Templates > Windows Components > File Explorer
  6. Double-click the Set a default associations configuration file policy.
    What tool contains all of the customizations and configurations for your Windows computer?
  7. Select Enabled.
  8. Enter the path to the default application association file you exported.
    What tool contains all of the customizations and configurations for your Windows computer?
  9. Click Apply

If you choose to utilize this policy, the default app association file is processed and default associations are applied during logon. 

Using Group Policy to set the desktop background image 

Last but not least, we’ll configure a desktop background image to round out our default profile. And, if you’re feeling particularly power-hungry, we can also make it so users can’t change the image. Don’t worry; I won’t judge you. Here’s how to do it:

  1. Save your desktop background image to a shared drive. Your users need to have read access to the share. 
  2. Open Group Policy Management. 
  3. Right-click on the user OU you wish to apply this policy to. 
  4. Click Create a GPO in this domain, and Link it.
    What tool contains all of the customizations and configurations for your Windows computer?
  5. Name the GPO, and click OK.
  6. Right-click on the newly created GPO, and click Edit.
    What tool contains all of the customizations and configurations for your Windows computer?
  7. Navigate to User Configuration > Policies > Administrative Templates > Desktop > Desktop.
  8. Double-click the Desktop Wallpaper policy. 
    What tool contains all of the customizations and configurations for your Windows computer?
  9. Select Enabled.
  10. Enter the share path to the desktop background image.
  11. Select Fill for the Wallpaper Style. You may need to test this setting to ensure the image is sized correctly on your devices. 
    What tool contains all of the customizations and configurations for your Windows computer?
  12. Click OK to close the policy.
  13. Expand the Control Panel directory, then click the Personalization folder.
  14. Double-click the Prevent changing desktop background policy. 
    What tool contains all of the customizations and configurations for your Windows computer?
  15. Select Enabled, then click OK
    What tool contains all of the customizations and configurations for your Windows computer?

Now your users will be stuck rocking that sweet company background image. I hope you’re proud of yourself. 

Adapting to change 

Let’s be honest; just because something isn’t broke doesn’t mean Microsoft won’t try to fix it. Such is the case with the CopyProfile setting.

To be fair, Microsoft has every right to evolve the Windows ecosystem to adapt to societal trends and defend against security threats. As the market changes, Windows must also change. Hopefully, future iterations of Windows operating systems provide administrative controls that are efficient and easy to manage.

Better yet, why wait for Microsoft when you can power up your administrative tasks and endpoint management right now? SmartDeploy has everything you need to manage your local and remote devices. Deploy applications, drivers, OS updates, and even Windows images to all of your local and remote devices with an internet connection — no VPN required. Download a free trial and experience what the next generation of endpoint management has to offer.

Brock Bingham

Born in the '80s and raised by his NES, Brock quickly fell in love with everything tech. With over 15 years of IT experience, Brock now enjoys the life of luxury as a renowned tech blogger and receiver of many Dundie Awards. In his free time, Brock enjoys adventuring with his wife, kids, and dogs, while dreaming of retirement.

Which option is used to customize the desktop?

You can choose a picture for your desktop background or change the accent color for Start, the taskbar, and other items. Select Start > Settings > Personalization. The preview window gives you a sneak peek of your changes as you make them.

Which provides options to Personalize Windows?

Windows themes A theme is a combination of pictures, colors, and sounds that help you personalize your PC.

What is Windows 10 and its configuration?

Windows 10 is a Microsoft operating system for personal computers, tablets, embedded devices and internet of things devices. Microsoft released Windows 10 in July 2015 as a follow-up to Windows 8. Windows 10 has an official end of support date of October, 2025, with Windows 11 as it's successor.

What are the items contained on the Windows desktop?

The Windows desktop has the following program access points:.
Work area. The onscreen area where users can perform their work, as well as store programs, documents, and their shortcuts. ... .
Start button. ... .
Quick Launch. ... .
Taskbar. ... .
Deskbands. ... .
Notification area..