web analytics

MSXSL.EXE: Microsoft Command Line XSL Transformation Utility

Options
@2017-09-29 23:26:06

MSXML 6 Files show up in the following locations:

  • C:\Windows\winsxs subfolders; look for folders with names like C:\Windows\winsxs\amd64_microsoft-windows-msxml60[.resources]_[guid]_[VERSION]_[lang]_[guid] or C:\Windows\winsxs\x86_Microsoft-windows-msxml60[.resources]_[guid]_[VERSION]_[lang]_[guid]
  • C:\Windows\System32 folder; look for files with names like msxml6.dll> and msxml6r.dll
  • C:\Windows\System32/[Lang] folder; look for files with names like msxml6.dll.mui> and msxml6r.dll.mui
  • C:\Windows\SysWOW64 folder; look for files with names like msxml6.dll> and msxml6r.dll
  • C:\Windows\SysWOW64/[Lang] folder; look for files with names like msxml6.dll.mui> and msxml6r.dll.mui
@2019-11-27 16:32:46

You also uses JavaScript to load a source and stylesheet document and display the result in the body of the HTML page.

<html>
  <head>
    <title>Transform Sample</title>
    <script language="javascript">
      function init()
      {
        // load XML source document
        var source = new ActiveXObject("Msxml2.DOMDocument.6.0");
        source.async = false;
        source.load("helloworld.xml");

        // load XSLT stylesheet document
        var stylesheet = new ActiveXObject("Msxml2.DOMDocument.6.0");
        stylesheet.async = false;
        stylesheet.load("helloworld.xsl");

        // transform the source using the XSLT stylesheet
        target.innerHTML = source.transformNode(stylesheet);
      }
    </script>
  </head>

  <body onload="init()">
    <div id="target" />
  </body>
</html>

Note

Google Chrome, Mozilla Firefox and Microsoft Edge don't support ActiveXObject, and never have, and never will. ActiveX has no place in modern web browsers, only IE supports ActiveXObject.

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com