Search found 4 matches
- 24 Jan 2012 00:16
- Forum: DOS Batch Forum
- Topic: issues with batch find and file backup to mapped drive
- Replies: 4
- Views: 5304
Re: issues with batch find and file backup to mapped drive
Now the only issue i have is the duplicate names when it saves to the network folder. Anyone have any idea's?
- 23 Jan 2012 08:19
- Forum: DOS Batch Forum
- Topic: issues with batch find and file backup to mapped drive
- Replies: 4
- Views: 5304
Re: issues with batch find and file backup to mapped drive
Thank you Squashman. A fresh set of eyes done the trick. i don't know why i didn't think of that. adding the /D done the trick thank you 

- 23 Jan 2012 05:38
- Forum: DOS Batch Forum
- Topic: How to ignore filename spaces in FOR loop %%var?
- Replies: 4
- Views: 7465
Re: How to ignore filename spaces in FOR loop %%var?
Hi If using a cmd file you could try using delims eg. FOR /R "delims=" "c:\" %F IN (*.txt) DO START %F I had issues pulling directory stings from a txt file containing spaces (script would drop without complete path when hitting a space) after using delims= it resolved the issue.
- 23 Jan 2012 04:03
- Forum: DOS Batch Forum
- Topic: issues with batch find and file backup to mapped drive
- Replies: 4
- Views: 5304
issues with batch find and file backup to mapped drive
I have a script that will find all pst files on a drive and backup to a network folder. The 2 issues i have come across is 1. duplicate file names 2. running the scriped from a mapped drive. When running the script from a mapped drive IE. p: it will only search that drive not the local drive c: Here...