Search found 9 matches

by sklub
10 May 2017 10:21
Forum: DOS Batch Forum
Topic: just something i made in my free time on win7
Replies: 2
Views: 3154

just something i made in my free time on win7

just something i made in my free time on win7: it does not realy do anything...usefull that cmd cant do. @echo off color 0a Title FILER. set isfile=0 set backer=0 goto :notfindfile :main if %findfile%==0 if %checked%==1 if %equals%==1 goto :notfindfile if %findfile%==0 if %checked%==1 if %equals%==0...
by sklub
27 Jan 2017 06:48
Forum: DOS Batch Forum
Topic: Question please.
Replies: 2
Views: 3151

Re: Question please.

Heres the script by the way: @echo off :default set ruimte=. set draad=0 set kraal=0 set endkral=11 set endraad=11 set midA=6 set midb=6 set moder=0 set mods=1 set mode=dir set pinga=0 set pingb=0 set nslook=0 set nslookA=0 set clear=0 set colors=0 set setter=0 set loop=:leegmem set mem=empty set se...
by sklub
27 Jan 2017 06:42
Forum: DOS Batch Forum
Topic: Question please.
Replies: 2
Views: 3151

Question please.

ok so i ve learned batch the best i can from home and im far from being an expert. but i have a little problem when writing a script... when i put in a set /p command i want to have a %symbol% there always at the end of the line. i want to put in a space instead so i can just set /p command=Abc%spac...
by sklub
15 Jan 2017 15:55
Forum: DOS Batch Forum
Topic: My AT script...
Replies: 2
Views: 3323

My AT script...

@echo off :AT Rem Enter time set AT=00:00 Rem Enter command set DO=start cmd :ClockMain set time=%time% if %time:~1,1%==: goto :timeA if %time:~2,1%==: goto :timeB goto :ClockMain :timeA set A=0 set B=%time:~0,1% set C=%time:~2,1% set D=%time:~3,1% goto :DoAt :timeB set A=%time:~0,1% set B=%time:~1...
by sklub
15 Jan 2017 15:52
Forum: DOS Batch Forum
Topic: Goto %loop%
Replies: 7
Views: 7755

Re: Goto %loop%

Well im just messing around with scripts Learning in the process...Thanks for the posts
by sklub
13 Jan 2017 13:54
Forum: DOS Batch Forum
Topic: Rename files in subfolders based on folder or other file?
Replies: 2
Views: 3470

Re: Rename files in subfolders based on folder or other file?

:scan set location=c:\. rem enter location set name=test rem enter name dir /b %location% > location.txt set exist=0 for /f %%Y in ( location.txt ) do ( if %%Y==%name% set exist=1 ) del location.txt if %exist%==1 cd %location% if %exist%==1 rename %name% %newname% rem done just edit it yourself. ha...
by sklub
13 Jan 2017 13:32
Forum: DOS Batch Forum
Topic: Goto %loop%
Replies: 7
Views: 7755

Re: Goto %loop%

not the script itself thats garbage for the garbage can.
but im looking for usefull fuction to implement a goto %loop% function...
does any one know any good use for this,because so far ive only been replacing it with real loops.
by sklub
13 Jan 2017 13:15
Forum: DOS Batch Forum
Topic: Batch security
Replies: 4
Views: 4729

Re: Batch security

i would use a binary incrypted password.
you can make one using batch...i dont have the file anymore.
will take some time though...
by sklub
13 Jan 2017 13:03
Forum: DOS Batch Forum
Topic: Goto %loop%
Replies: 7
Views: 7755

Goto %loop%

Code: Select all

:top
set loop=:top
goto %loop%


does anyone use this ?