Search found 5 matches

by hckR360
13 Jan 2017 14:35
Forum: DOS Batch Forum
Topic: Remotely close Program
Replies: 3
Views: 3220

Re: Remotely close Program

wait... how can you launch a batch file on apple? it is a linux-based system, no?
by hckR360
12 Jan 2017 12:14
Forum: DOS Batch Forum
Topic: Firefox & Chrome history deleter
Replies: 5
Views: 6661

Re: Firefox & Chrome history deleter

You should add a tasklist check to check if the browser is closed and also a 'if exist' check to know if the browser is installed or not as let's say the person has Chrome installed but not Firefox. As your script deletes Firefox history first it would print 'system cannot find the file path specif...
by hckR360
26 Dec 2016 16:56
Forum: DOS Batch Forum
Topic: Firefox & Chrome history deleter
Replies: 5
Views: 6661

Firefox & Chrome history deleter

Save time by using my Firefox & Chrome history deleter . code: @echo off tasklist | find "firefox.exe" >nul 2>nul if "%errorlevel%" == "0" (goto ffxopen) else (goto ffxclosed) :ffxopen: set /p "ffxinput=the command cannot be executed because firefox is running....
by hckR360
25 Dec 2016 19:44
Forum: DOS Batch Forum
Topic: batch: run batch on a remote computer
Replies: 1
Views: 2413

batch: run batch on a remote computer

hi everyone,
is there a way to run batch files using batch on a remote computer without a "shared folder"? like on a server or something? pls no powershell