Hi All,
I'm using the python tool in atleryx to perform some automated task in excel and ran into below.
Issue:
os.system/os.popen works on simple cmd like calculator, but does not work on network drive cmd function.
Example
import os
os.system('calc'). This works
import os
os.system('abc') This doesn't work (abc is not a windows built-in cmd. It's an in-house cmd to launch specific function excel. Location of this cmd is on network drive). It would return an output of 255.
I've tried the full network path of the cmd. Still doesn't work
Using full network path of the cmd in 'event' tab in workflow configuration, this works. Also, usingi os.system in Anaconda (Python environment),
Any idea why such difference?