XML files are opened in Oxygen because Internet Explorer uses the
Windows file associations for opening files and you associated XML
files with Oxygen XML Editor/Author in the installer panel called File
Associations. This installer panel displays a warning above the XML
file association that XML files will not be viewed correctly in
Internet Explorer if you associate them with Oxygen XML
Editor/Author. For viewing XML files in Internet Explorer again you have to
associate XML files with IE by right-clicking on an XML file in
Windows Explorer, selecting Open With -> Choose Program, selecting IE
in the list of applications and checking the checkbox "Always use the
selected program". Also you have to run the following command from a
command line: wscript revert.vbs where revert.vbs is a text file with the following content:
function revert()
Set objShell = CreateObject("WScript.Shell")
objShell.RegWrite "HKCR\.xml\", "xmlfile", "REG_SZ"
objShell.RegWrite "HKCR\.xml\Content Type", "text/xml", "REG_SZ"
end function
revert() |