op.exe
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
@echo off @setlocal IF "%1"== "" ( echo on echo opener of app, designed by admin@dev.easywaru.com echo f : FireFox echo c : Chrome echo i : Internet Explorer echo o : Opera echo dig : online dig echo df : dot net fiddle echo sf : sql fiddle echo jf : js fiddle echo fe : find dot net err exit ) IF "%1"=="this" ( IF EXIST "C:\Program Files (x86)\sakura\sakura.exe" ( start "" "C:\Program Files (x86)\sakura\sakura.exe" -- %0 exit ) start notepad %0 ) SET FF="C:\Program Files (x86)\Mozilla Firefox\firefox.exe" SET CRM="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" SET IE="C:\Program Files\Internet Explorer\iexplore.exe" SET OPR="C:\Program Files\Opera\launcher.exe" IF "%1" == "f" ( start "" %FF% ) IF "%1" == "c" ( start "" %CRM% ) IF "%1" == "i" ( start "" %IE% ) IF "%1" == "o" ( start "" %FF% ) IF "%1" == "dig" ( start "" %FF% https://toolbox.googleapps.com/apps/dig/ ) IF "%1" == "df" ( start "" %FF% https://dotnetfiddle.net/ ) IF "%1" == "sf" ( start "" %FF% http://www.sqlfiddle.com/ ) IF "%1" == "jf" ( start "" %FF% https://jsfiddle.net/ ) IF "%1" == "fe" ( start "" %FF% http://finderr.net/clr/ja/ ) |