Search found 8 matches

by aseventhmindset
14 Jul 2010 16:08
Forum: DOS Batch Forum
Topic: Need help w/ Recycler.bat
Replies: 6
Views: 7441

Re: Need help w/ Recycler.bat

THANX! It works. :D
by aseventhmindset
14 Jul 2010 15:46
Forum: DOS Batch Forum
Topic: Help with mouse coordinates
Replies: 5
Views: 5936

Re: Help with mouse coordinates

This cannot be done in batch. AutoIT would be the solution for simulating mouse clicks at a certain screen point. It's very simple to implement a mouse click (MouseClick(x,y)).
by aseventhmindset
14 Jul 2010 15:07
Forum: DOS Batch Forum
Topic: Need help w/ Recycler.bat
Replies: 6
Views: 7441

Re: Need help w/ Recycler.bat

The batch file continues to have the same response even after the changes. I am running XP. Please test this batch on your computer, see what results, and message me back if you find a solution. @echo off Title Recycler set killcount=0 set deathcount=0 :lvl1 if exist %1 ( del %1 ) else ( goto :resul...
by aseventhmindset
14 Jul 2010 01:28
Forum: DOS Batch Forum
Topic: Need help w/ Recycler.bat
Replies: 6
Views: 7441

Need help w/ Recycler.bat

The function of the batch file is to delete all files that are selected and dropped over it as an argument. All of the files are deleted, but the VBScript message does not appear. @echo off Title Recycler set killcount=0 set deathcount=0 :lvl1 if exist %1 (del %1) else goto :results if exist %1 (got...
by aseventhmindset
11 Apr 2010 21:36
Forum: DOS Batch Forum
Topic: echo %something% >> name.bat becomes blank space
Replies: 2
Views: 4207

echo %something% >> name.bat becomes blank space

I am trying to make a batch file that will make another batch file. It works up until the point where I enter: echo if %command%==Hide goto :Hide >> "%homedrive%\Documents and Settings\%username%\desktop\File Hider\FileHider.cmd" echo if %command%==hide goto :Hide >> "%homedrive%\Docu...
by aseventhmindset
11 Apr 2010 21:07
Forum: DOS Batch Forum
Topic: Help- XCOPY
Replies: 1
Views: 3218

Re: Help- XCOPY

Nevermind i forgot the 2nd =
by aseventhmindset
11 Apr 2010 21:01
Forum: DOS Batch Forum
Topic: Help- XCOPY
Replies: 1
Views: 3218

Help- XCOPY

I am able to use xcopy with the command prompt, but not in batch: @echo off if not exist Hide md Hide if not exist "C:\WINDOWS\system32\config\systemprofile\My Documents\Hide" md "C:\WINDOWS\system32\config\systemprofile\My Documents\Hide" :start echo File Hider echo. echo Comman...