Search found 5 matches

by TomBombo
15 Aug 2013 18:48
Forum: DOS Batch Forum
Topic: Should be an easy batch file modification?
Replies: 4
Views: 3815

Re: Should be an easy batch file modification?

Thanks guys..
Working like a charm..

Much appreciated!

Is this a good place where I can request help for processing my icacl returns or should something more powerful like Powershell should do that?
by TomBombo
15 Aug 2013 01:43
Forum: DOS Batch Forum
Topic: Should be an easy batch file modification?
Replies: 4
Views: 3815

Should be an easy batch file modification?

HI guys I need help with a a batch file modifications. Should be pretty easy with someone with a bit of experience but I am not great at this yet. 1. I have this @echo off setLocal EnableDelayedExpansion for /f "tokens=* delims= " %%a in (f.txt) do ( set /a N+=1 echo icacls ^"%%a^&quo...
by TomBombo
13 Aug 2013 00:01
Forum: DOS Batch Forum
Topic: Help sorting a txt file
Replies: 4
Views: 3225

Re: Help sorting a txt file

Perfect!!!!

Thank you again Foxidrive. You have made my day.. My boss will be impressed with this job I am trying to get! :wink:
by TomBombo
12 Aug 2013 23:28
Forum: DOS Batch Forum
Topic: Help sorting a txt file
Replies: 4
Views: 3225

Re: Help sorting a txt file

WOW.. Thankyou Foxi.. I got it working.. awesome!! A couple of quick questions.. 1. the file names its generating are all out by 1.. i.e. depth - 6 is actually a 5 depth folder path.. Not a big issue coz I can eaily rename all the outputs but will saying "depth - %%b-1.txt work? I guess not Als...
by TomBombo
12 Aug 2013 21:59
Forum: DOS Batch Forum
Topic: Help sorting a txt file
Replies: 4
Views: 3225

Help sorting a txt file

HI I need help to write a batch file that will sort a text file of a directory listing and rewite it into different files depending on folder depth. e.g. input which contains something like g:\folder1 g:\folder1\folder2 g:\folder3 g:\folder4\folder5 g:\folder6\folder7\folder8 Now I want to sort this...