Search found 9 matches

by alperefe
30 Jul 2012 01:11
Forum: DOS Batch Forum
Topic: Echo line
Replies: 2
Views: 2566

Re: Echo line

well there will be a long list applications in the batch so I need space :)
by alperefe
29 Jul 2012 18:19
Forum: DOS Batch Forum
Topic: Echo line
Replies: 2
Views: 2566

Echo line

@ECHO OFF REM -- Prepare the Command Processor SETLOCAL ENABLEEXTENSIONS SETLOCAL ENABLEDELAYEDEXPANSION REM -- Set Color and Window Mode set Clr=color 30 & set Wnd=MODE CON: COLS=49 LINES=56 :Install REM -- Install Applications cls&%Wnd%&%Clr% ECHO.³ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß...
by alperefe
02 Jul 2012 05:07
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15783

Re: Batch moving using text file

yes I ve noticed that too but as I said above my intention is to move the batch into $build$ folder. so when I run it next time, it will create the whole directory structure again whether it is missing or not.
by alperefe
02 Jul 2012 00:32
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15783

Re: Batch moving using text file

thanx for help foxidrive but things got even more complicated. here is the deal; @echo off set dest=%cd%$Build$\ for /f "delims=" %%A in (folders.lst) do ( if not exist ..\$Build$\%~nx0 ( md $Build$ 2>Nul ) if not exist %%A ( md %%A 2>Nul ) xcopy "%%A" "%dest%" /E ) :EO...
by alperefe
29 Jun 2012 20:36
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15783

Re: Batch moving using text file

batch will create one folder named "build" and under it, will be folders like these: Global Image Mount\Boot Mount\MountBasic Mount\MountPremium Mount\MountPro Mount\MountStarter Mount\MountUltimate batch will create these folders if they are non-existant and after creation it will copy it...
by alperefe
29 Jun 2012 04:01
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15783

Re: Batch moving using text file

I am using the first one. it is exact same order and folder design. I ve checked it many times so its not the issue I think. may be someone can post a whole working batch. of if anyone can manage to make something similar to this it would be great. all I want a batch that will create a bunch of fold...
by alperefe
28 Jun 2012 03:51
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15783

Re: Batch moving using text file

actually I am testing the batch as it is in the first post, so my txt setup is the exact same. folders are same etc. I removed the enabledexpansions stuff and now it shows me the code but doesnt do anything.
by alperefe
28 Jun 2012 02:11
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15783

Re: Batch moving using text file

nobody has any idea?
by alperefe
20 Jun 2012 21:27
Forum: DOS Batch Forum
Topic: Batch moving using text file
Replies: 23
Views: 15783

Re: Batch moving using text file

I am trying to use this code in a batch. but it gives "echo was unexpected at this time" kinda error. I ve tried ENABLEDELAYEDEXPANSION stuff but it didnt make a difference. can you post complete batch file please?