Search found 21 matches

by belegdae
Wed Aug 28, 2019 2:17 pm
Forum: General
Topic: Pre task command
Replies: 5
Views: 5339

Re: Pre task command

Image

It's working! Distributed Meshroom!

Cheers Tim!
by belegdae
Wed Aug 28, 2019 11:50 am
Forum: General
Topic: Pre task command
Replies: 5
Views: 5339

Re: Pre task command

Brilliant idea, I have it working now, thank you!

Sadly I don't have control over the operating systems we use for workstations/rendering, it's a large university with plenty of bureaucracy!

I appreciate the help as always!

Rich
by belegdae
Wed Aug 28, 2019 8:23 am
Forum: General
Topic: Pre task command
Replies: 5
Views: 5339

Re: Pre task command

As a side note: I've looked into command concatonation, using & and && to join the commands together, but this seems unreliable once submitted. If i take the following string: call \\server.com\live\_PLUGINS\_TOOLS\_HELPERSCRIPTS\pushDrive.py r: \\server.com\renderfarm\rjh1\MeshroomTrial...
by belegdae
Wed Aug 28, 2019 8:13 am
Forum: General
Topic: Pre task command
Replies: 5
Views: 5339

Pre task command

Hello! I'm writing a custom submission script for Meshroom, but due to a bug in incrimnetalSFM, it can't execute from windows UNC paths, so needs a windows drive letter mapping. Is it possible to assign pre-task commands for each render to run before executing a task? I know that pre-commands can be...
by belegdae
Tue Jun 11, 2019 11:30 am
Forum: General
Topic: Error: JSON.parse
Replies: 9
Views: 8907

Re: Error: JSON.parse

Hey Timur,

Binaries from sourceforge:
http://sourceforge.net/projects/cgru/fi ... p/download

It's not an essential feature for me, I just wanted to make sure it wasn't having other unexpected effects!

I've not compiled before, but not afraid to look into it! Thank you!
by belegdae
Sat Jun 08, 2019 8:41 am
Forum: General
Topic: Error: JSON.parse
Replies: 9
Views: 8907

Re: Error: JSON.parse

Hey Timur, I've recorded a video of what happens in various browsers: https://i.imgur.com/du3Nnhh.mp4 Shown in the video is Chrome, Internet Explorer and Firefox. Other commands like reboot, launch command appear to work fine with "action processed" We're a univeristy, and our layout is 40...
by belegdae
Fri Jun 07, 2019 10:42 am
Forum: General
Topic: Error: JSON.parse
Replies: 9
Views: 8907

Re: Error: JSON.parse

Hi Timur, It is printed into the WebGUI after triggering a Wake-on-Lan job from the web GUI, along with other WWK job machines erroring too. It might be related, the wolwake job errors as follows: Fri 07 Jun 10:10.25 : Error task output: ======================================================= ['C:\\...
by belegdae
Fri Jun 07, 2019 9:04 am
Forum: General
Topic: Error: JSON.parse
Replies: 9
Views: 8907

Error: JSON.parse

Hey, I'm having an issue I'm struggling to find the cause of. In the log, I have a large number of JSON parse errors for what I believe is the render info: 3251: Error: JSON.parse: 3247: Unexpected token in JSON at position 1736 { "renders": [{ "name": "d104-01", "...
by belegdae
Tue May 28, 2019 3:26 pm
Forum: Setup
Topic: afcmd - setting nimby errors
Replies: 5
Views: 7051

Re: afcmd - setting nimby errors

That's great, thank you! For anyone that might need it, here's a little batch that converts the hostname to lower before calling afcmd: @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION CALL :LCase COMPUTERNAME _HOSTNAME_LOWER CALL _afcmd.cmd rNIMBY %_HOSTNAME_LOWER% ENDLOCAL GOTO:EOF :LCase SET _LCase=a b ...
by belegdae
Tue May 28, 2019 2:57 pm
Forum: Setup
Topic: afcmd - setting nimby errors
Replies: 5
Views: 7051

Re: afcmd - setting nimby errors

Aah, found the problem! Afanasy appears to convert all hostnames to lower case. If a machine has a hostname of "ABCDE" then it needs to command to be "abdce" first. If this is by design, could afcmd convert hostnames to lower as a feature request? I'll fix in our script for now T...