Skip to content

Instantly share code, notes, and snippets.

@riebschlager
Created May 19, 2016 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riebschlager/a1c04cdcb5938932b408ccd4a521c541 to your computer and use it in GitHub Desktop.
Save riebschlager/a1c04cdcb5938932b408ccd4a521c541 to your computer and use it in GitHub Desktop.
Launching an application via Site Kiosk
<!--
http://www.provisio.com/helpconsole/SiteKiosk%20Help/en-US/add_programs.htm
-->
<html>
<head>
<script type="text/javascript">
function Init_ScriptInterface() {
window.external.InitScriptInterface();
}
function ExecuteProg() {
SiteKiosk.ExternalApps.Run("c:\\Documents\\berthouville-win32-x64\\berthouville.exe", true);
}
</script>
<title></title>
</head>
<body onload="Init_ScriptInterface();ExecuteProg();"></body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment