
Search found 10 matches
- 20 Jan 2016 06:35
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
thanks! That seems to work 

- 18 Jan 2016 04:43
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
well ok. while the script was running we found another problem. when all files are rendered the variable first_file keeps is value and the renderer re-renders the final image over and over again. i tried to fix this by setting the variable to blank. this works great and the final image is not re-ren...
- 14 Jan 2016 09:07
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
For anyone who contributed to my problem: I hope I didn't do that - I contributed to the solution. Sorry, just poking fun there and I shouldn't as your mother tongue isn't English - but did you see my post just before yours? Yeah I saw your post and it looked good. But as I finished the scripts and...
- 13 Jan 2016 05:54
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
I want to write a script, that searches for a file from the server. copies it to another folder and then renders it. move that file from "\\server\all files" to "\\server\rendered files" You can see where the confusion arises. Exactly. Copy was said four times which was confusin...
- 12 Jan 2016 04:56
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
I want to write a script, that searches for a file from the server. copies it to another folder and then renders it. move that file from "\\server\all files" to "\\server\rendered files" You can see where the confusion arises. Oh I am sorry. I wasnt precise enough in the introdu...
- 12 Jan 2016 02:10
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
@ShadowThief: Thank you very much, I will try that tomorrow. I am not understanding how any of the other computers would know not to render the file. What happens if they both try to render the same file at the same time? That is why I want to move the file first from "all files" to render...
- 11 Jan 2016 17:00
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
You may need to use the net use command to temporarily mount the server locations as network drives, but from there the move command will work like usual. yeah I used that command once for another project. my biggest problem right now is a) how to copy only 1 file of the directory b) save the filen...
- 11 Jan 2016 16:58
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
well ok, I do not need to "search" for the server. I can provide the IP address. The Lan Server does not need any authentification. The folder is shared to everyone in the network. (Its a LAN only used for rendering.) the file must not be copied to the local machines. the local machine onl...
- 11 Jan 2016 10:10
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Re: Need some help to create a render-distribution-script
This is what i got until now:
Code: Select all
:start
tasklist /FI "IMAGENAME eq pvengine64.exe" | findstr "pvengine64.exe" >nul
if %ERRORLEVEL% == 1 goto render
timeout /t 240
goto start
:render
|MISSING PART (move file and start the renderprocess)
:eof
exit
- 11 Jan 2016 02:59
- Forum: DOS Batch Forum
- Topic: Need some help to create a render-distribution-script
- Replies: 18
- Views: 9496
Need some help to create a render-distribution-script
Hi there, first of all two infos. 1) About me: I now the most important dos commands and can handle batch files. I have already some data-backup batches by myself, but this one is too tricky for me. That is why I need your help. 2) About this script: I have a server (LAN not WAN) that has a folder w...