Python Forum
Calling exe on network drive
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling exe on network drive
#1
Hi
I am trying to call an exe on a network drive
1
2
3
4
d = "x:\\\RequirmentsEditorInstall.exe"
subprocess.run([d,
                     '/silent',
                     ])
When this runs I get the following
1
2
3
4
5
6
7
8
9
10
11
12
13
Traceback (most recent call last):
  File "C:\Azure Devops\Agents\TPG\_work\_temp\6f42d270-a33f-46f5-adb5-9ac9afd9a6c0.py", line 22, in <module>
    subprocess.run([d,
  File "C:\Program Files\Python310\lib\subprocess.py", line 501, in run
    with Popen(*popenargs, **kwargs) as process:
  File "C:\Program Files\Python310\lib\subprocess.py", line 966, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
  File "C:\Program Files\Python310\lib\subprocess.py", line 1435, in _execute_child
    hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] The system cannot find the file specified
 
##[error]The process 'C:\Program Files\Python310\pythonw.exe' failed with exit code 1
Finishing: Produce Requirements Editor Reports
If I execute the command manually it succeeds

What am I doing wrong?
Reply
#2
Try this:
1
d = r"x:\RequirmentsEditorInstall.exe"
Reply
#3
(Jan-21-2022, 09:04 AM)ibreeden Wrote: Try this:
1
d = r"x:\RequirmentsEditorInstall.exe"

Unfortunately I get the same result
Reply
#4
That is a pity. I am not sure but could it be you are executing your script with pythonW.exe? This is a version without terminal window and so without stdin, stdout and stderr. This may cause the troubles. Can you execute your script with python.exe instead?
Reply
#5
(Jan-21-2022, 11:23 AM)ibreeden Wrote: That is a pity. I am not sure but could it be you are executing your script with pythonW.exe? This is a version without terminal window and so without stdin, stdout and stderr. This may cause the troubles. Can you execute your script with python.exe instead?
Hi
Seems the trick is to pass shell=True
Thanks for your hints
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question How to get a removable disc type in drive Daring_T 12 4,544 Feb-11-2024, 08:55 AM
Last Post: Gribouillis
  Create dual folder on different path/drive based on the date agmoraojr 2 1,288 Jan-21-2024, 10:02 AM
Last Post: snippsat
  open python files in other drive akbarza 1 1,449 Aug-24-2023, 01:23 PM
Last Post: deanhystad
  Integrating Google Drive in App Lahearle 0 1,019 Jul-19-2023, 05:51 PM
Last Post: Lahearle
  code to send attachments contained on the drive. stefanoste78 1 1,524 Oct-12-2022, 02:16 AM
Last Post: Larz60+
  access is denied error 5 for network drive mapping ? ahmedbarbary 2 2,743 Aug-17-2022, 10:09 PM
Last Post: ahmedbarbary
  Cant Access D: Drive kucingkembar 4 2,476 Jul-28-2022, 04:53 PM
Last Post: kucingkembar
  Deploy Python to Cloud and save output to Google Drive chandrabr80 2 2,375 Jan-25-2022, 06:56 AM
Last Post: ndc85430
  string.format() suddenly causing errors with google drive API zwitrader 0 2,341 Jun-28-2021, 11:38 PM
Last Post: zwitrader
  Failing to copy file from a network to a local drive tester_V 4 9,993 Jan-20-2021, 07:40 AM
Last Post: tester_V

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020