Search found 14 matches

by Silent44
05 Mar 2015 10:47
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Re: Task Close after process finishes.

Hello, back again.... Code: Rar.exe x -r -idq -ad *.rar "%target%\" Rar.exe x -r -idq -ad *.001 "%target%\" I have added the -ad switch just to make sure that each archive is extracted to its own separate directory, remove it to match what you've got above, (not recommend). I tri...
by Silent44
04 Mar 2015 11:39
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Game Cube ISO Tool Script - FINSIHED

FINAL UPDATE ~ everything is working great now! Now I can just extract a zip file into my source directory containing all necessary bat files and programs. Edit the start.bat to my destination directory and run the start.bat. Final result = what I had originally hope for. I guess the two for command...
by Silent44
04 Mar 2015 01:04
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Re: Task Close after process finishes.

removed~
by Silent44
03 Mar 2015 18:15
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Re: Task Close after process finishes.

removed~useless code
by Silent44
03 Mar 2015 14:36
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Making Task Recursive

removed~useless code
by Silent44
02 Mar 2015 10:41
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Re: Task Close after process finishes.

Yours works great, much thanks! :D
by Silent44
02 Mar 2015 08:23
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Game Cube ISO Tool Script

removed~useless code
by Silent44
02 Mar 2015 07:17
Forum: DOS Batch Forum
Topic: Task Close after process finishes.
Replies: 20
Views: 13361

Task Close after process finishes.

Hello, I am having a bit of trouble figuring out how to kill a task after it has been completed in batch. @echo off gcit game.iso -f DiscEx -d J:\games\extracted\ I would like a line to follow that will close the task when it has finished its operation which could be 1 minute or 5 minutes. I have tr...
by Silent44
26 Jan 2013 09:43
Forum: DOS Batch Forum
Topic: Batch File Help
Replies: 6
Views: 4555

Re: Batch File Help

Works great! and you are right it is simple enough to move them all to a network share after.
I will have a look at that code you pasted though.

Thanks again so much, saved me a lot of time here!!

Regards,

Ryan
by Silent44
26 Jan 2013 09:00
Forum: DOS Batch Forum
Topic: Batch File Help
Replies: 6
Views: 4555

Re: Batch File Help

the output looks right..this is what i got from the temp.bat.txt that was created md "Jazz.Dance.Clips" & move "Jazz.Dance.Clips.E01.Danielle.Multi-Clips\*.*" "Jazz.Dance.Clips" i think i can proceed with actually doing it.... not sure what to change in the code to ...
by Silent44
26 Jan 2013 08:34
Forum: DOS Batch Forum
Topic: Batch File Help
Replies: 6
Views: 4555

Re: Batch File Help

sorry, more info...

The folders to search are all in one folder.

Working/Jazz.Dance.Clips.E01.Danielle.Multi-Clips
Working/Tap.Dance.Clips.E05.Britney.Multi-Clips
etc
etc

I would like to move them to another folder on my shared network

//Kristy/Complete/
by Silent44
26 Jan 2013 08:19
Forum: DOS Batch Forum
Topic: Batch File Help
Replies: 6
Views: 4555

Batch File Help

Hello, Having some problem trying to get this script working....wondering if I may have some help. I am trying to create folders based on a given search result. Example: Jazz.Dance.Clips.E01.Danielle.Multi-Clips/clip1.avi , clip2.avi , etc. (this is a folder with mulitple files in it) Tap.Dance.Clip...
by Silent44
29 Jan 2012 08:04
Forum: DOS Batch Forum
Topic: Need Help, Unrar Script.
Replies: 1
Views: 2437

Re: Need Help, Unrar Script.

Found my answer, for anyone this might help, here you go.

@echo off
@CLS
for /R %%i IN (.) do Rar.exe x "%%i/*.rar" D:\
@ECHO finished!


Cheers!
by Silent44
26 Jan 2012 18:19
Forum: DOS Batch Forum
Topic: Need Help, Unrar Script.
Replies: 1
Views: 2437

Need Help, Unrar Script.

Hello, I have been tinkering with this for a bit and can't seem to figure it out, was hoping for some wisdom. Here is my script thus far, and it works great for all rars made in the old format, ( *.r01, .r02, etc.) Everything unpacks to the set directory. My problem is when faced with a new style ra...