About
Pricing
Community
Teams
Start Free Trial
Log in
Thomas N
asked on
9/9/2016
setup IE as default using GPO
Im trying to set IE 11 as default using GPO and following the instructions below:
https://technet.microsoft.com/en-us/itpro/internet-explorer/ie11-deploy-guide/set-the-default-browser-using-group-policy
https://technet.microsoft.com/en-us/library/hh825038.aspx
When I try to export the appassoc.xml file it gives me error: Error: 87
"The export-defaultappassociati
ons option is unknown.
For more information, refer to the help by running DISM.exe /?. "
I attached the log file. Any ideas?
dism.log
Windows Server 2008
Windows 7
Active Directory
4
1
Last Comment
Brad99
8/22/2022 - Mon
Mahesh
9/9/2016
you need to logon to windows 8.1 machine / 2012 R2 machine with admin user and run below command from elevated command prompt (navigate to C:\windows\system32)
dism /online /Export-DefaultAppAssociations:"C:\Apps\Appassoc.xml"
Select all
Open in new window
Output Folder must be precreated
Also double quotes are mandatory for output
Then you will get the exported file
Mahesh.
Thomas N
9/12/2016
ASKER
Im using Windows 7, is this still the same command?
ASKER CERTIFIED SOLUTION
Mahesh
9/12/2016
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Brad99
9/13/2016
Hi,
we also had the problem when using multiple browser in our env (50.000+) clients.
With GPO settings we tried a lot, but finally still the popup of IE "Would you make IE default" came up.
We manged finally to fix this by adding several regkey to the logon scripts (or via gpo prefs - reg)
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
Shell\Asso
ciations\U
rlAssociat
ions\http\
UserChoice
]
“Progid”=”IE.HTTP”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
Shell\Asso
ciations\U
rlAssociat
ions\https
\UserChoic
e]
“Progid”=”IE.HTTPS”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
Shell\Asso
ciations\U
rlAssociat
ions\ftp\U
serChoice]
“Progid”=”IE.FTP”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.htm\Us
erChoice]
“Progid”=”IE.AssocFile.HTM
”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.html\U
serChoice]
“Progid”=”IE.AssocFile.HTM
”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.mht\Us
erChoice]
“Progid”=”IE.AssocFile.MHT
”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.mhtml\
UserChoice
]
“Progid”=”IE.AssocFile.MHT
”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.partia
l\UserChoi
ce]
“Progid”=”IE.AssocFile.PAR
TIAL”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.svg\Us
erChoice]
“Progid”=”IE.AssocFile.SVG
”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.url\Us
erChoice]
“Progid”=”IE.AssocFile.URL
”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.websit
e\UserChoi
ce]
“Progid”=”IE.AssocFile.WEB
SITE”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.xht\Us
erChoice]
“Progid”=”IE.AssocFile.XHT
”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
CurrentVer
sion\Explo
rer\FileEx
ts\.xhtml\
UserChoice
]
“Progid”=”IE.AssocFile.XHT
”
[HKEY_CURRENT_USER\Softwar
e\Clients\
StartMenuI
nternet]
@=”IEXPLORE.EXE”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
Shell\Asso
ciations\M
IMEAssocia
tions\text
/html\User
Choice]
“Progid”=”IE.text/html”
[HKEY_CURRENT_USER\Softwar
e\Microsof
t\Windows\
Shell\Asso
ciations\M
IMEAssocia
tions\mess
age/rfc822
\UserChoic
e]
“Progid”=”IE.message/rfc82
2″
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
Open in new window
Output Folder must be precreated
Also double quotes are mandatory for output
Then you will get the exported file
Mahesh.