I cannot use subprocess since I need to run a windows desktop shortcut. This works good for me:
os.system("C:/Users/Administrator/Desktop/Neptune_Osprey_OCD_Daemon_xtensa_9.lnk")
I need to capture the output of the above desktop short which comes in command prompt. But I am unable to do it with os.system. Alternatively I tried with os.popen but still no success:
os.popen("C:/Users/Administrator/Desktop/Neptune_Osprey_OCD_Daemon_xtensa_9.lnk" > output.log 2 > OCD_Open_Log.txt)