[TUTORIAL] Simple internet explorer execute binder for windo

This is where members can submit tutorials that they have created on any computing related subject.
Post Reply
privateloader
Strike 1
Posts: 38
Joined: Fri Aug 22, 2014 5:50 am

[TUTORIAL] Simple internet explorer execute binder for windo

Post by privateloader » Sun Aug 24, 2014 6:56 am

Code: Select all

@ECHO OFF
REM Simple internet explorer execute binder for windows
REM ===================================================
REM Compile this batch file with QBFQ - Ghost Mode
REM
REM Before compiling it. Go to Custom Resources & Include
REM and add File Description, Company Name, Version Info and aplication Icon
REM
REM In custom Resource add
REM File Description > Internet Explorer
REM Company Name > Microsoft Corporation
REM Version Info > 11.0.9600
REM Aplication Icon > Download one from www.iconfinder.com
REM
REM In include
Rem add the executable you would like to start in this example stub.exe
REM ==============================================
REM Starts internet explorer
%programfiles%\internet explorer\iexplorer.exe

REM Starts the application
stub.exe

Post Reply