Advertisement
opexxx

8a7acdfd430123cda3235f5bf63cefaeba3b504e8c56c2f7bfd7750a1601

Oct 10th, 2018
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.41 KB | None | 0 0
  1. <!--[if gt IE 6]>
  2. <!DOCTYPE html>
  3. <![endif]-->
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5.     <head>
  6.     <title>Snappy Driver Installer</title>
  7.     <meta HTTP-EQUIV="MSThemeCompatible" content="yes">
  8.     <meta http-equiv="X-UA-Compatible" content="IE=9">
  9.  
  10.     <HTA:APPLICATION ID="sdi"
  11.        application="yes"
  12.        applicationName="SDI"
  13.        border="none"
  14.        caption="no"
  15.        contextMenu="no"
  16.        icon="./icon.ico"
  17.        innerBorder="no"
  18.        maximizeButton="no"
  19.        minimizeButton="no"
  20.        navigable="yes"
  21.        scroll="no"
  22.        scrollFlat="no"
  23.        selection="no"
  24.        showInTaskBar="no"
  25.        singleInstance="yes"
  26.        sysMenu="yes"
  27.        version="0.1"
  28.        windowState="normal"
  29.    />
  30.  
  31.         <script type="text/javascript">
  32.             try {
  33.                 window.moveTo(-50000, 0);
  34.             } catch (e) {}
  35.  
  36.             var cmd = sdi.commandLine;
  37.             if (cmd != ''){
  38.                 cmd = '#' + encodeURIComponent(cmd);
  39.             }
  40.             try {
  41.                 window.onload = function () {
  42.                     window.location.href = '..\\main.html' + cmd;
  43.                 }
  44.             } catch (e) {
  45.                 document.write('<meta http-equiv="refresh" content="0;URL=\'..\\main.html' + cmd + '\'">');
  46.             }
  47.         </script>
  48.     </head>
  49.     <body>
  50.     </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement