I've been struggeling a while to get a compliant workflow going.
I need to be able to submit jobs and retrieve server information in 3ds max without running max as administrator.
I've tried many things already, but besides wrapping the commandline in a socketserver of some sort I've not been able to properly communicate with the commandline interface (C:\Program Files (x86)\RenderPal V2\CmdRC\RpRcCmd.exe)
I use windows 10 and have UAC off, (but can't run max as admin). Every command I try will fire up a cmd window and that will fire up a new window (probably elevated) that executes, but that in turn doesn't write any data anymore.
Here's an example:
Code: Select all
rprccmd = "\"C:\\Program Files (x86)\\RenderPal V2\\CmdRC\\rprccmd\" "
cmd = "-compact -listpools >> d:\\temp_list.txt"
hiddendoscommand (rprccmd + cmd)
Tried the python wrapper as well, same results.
I have a hard time understanding what the need for elevated rights is. Also tried changing rights on the exe, also did nothing.
How can I submit jobs from max to renderpall and retreive information from the manager without running max as admin.
Thanks!
-Johan