SCCM – Change Windows 10 Default Internet Browser During OSD

sccm logo

Last updated on April 17th, 2023 at 12:14 am

Read Time:1 Minute, 18 Second

You should have noticed by now that the default internet browser Microsoft want you to use is their new Edge browser. Well, ok, its fine for home browsing but a lot of companies have legacy programs that still need Internet Explorer 11 to run them. So, how do you get your SCCM Operating System Deployment (OSD) to make the change from Edge to IE to be your default during the task sequence process?

Note that this guide assumes you are using SCCM with MDT integrated and that your OS installation disk has a variable of %OSDisk%

First of all, you will need a Windows 10 machine already built. Then change all the file associations to what you would want them to be on your deployment machine. Then you need to run the following powershell script:

 dism /online /export-defaultappassociations:c:AppAssoc.xml  

This will export an XML file to your C: drive. You then need to take this file and add it to your MDT scripts folder and then redistribute your MDT package within SCCM to update your distribution points with this new file.

Then, in your task sequence add a β€œRun Command Line” step and add the following command:

 cmd.exe /c Dism.exe /Image:%OSDisk% /Import-DefaultAppAssociations:%DEPLOYROOT%ScriptsViaMonstraAppAssoc.xml  

This will now apply those settings with the XML and you should then find that the default browser is Internet Explorer 11 and not Edge!

COMMENTS

If you have any comments or questions on this post, please feel free to leave us a message below using our comments system.

Click to rate this post!
[Total: 0 Average: 0]

Discover more from TechyGeeksHome

Subscribe to get the latest posts to your email.

Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.