Python Forum
os.system("netsh interface set interface 'Wi-Fi' enabled")
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
os.system("netsh interface set interface 'Wi-Fi' enabled")
#9
(Jan-17-2019, 04:51 PM)nilamo Wrote: What output do you get if you pass a list to subprocess.call()?

>>> import subprocess
>>> help(subprocess.call)
Help on function call in module subprocess:

call(*popenargs, timeout=None, **kwargs)
    Run command with arguments.  Wait for command to complete or
    timeout, then return the returncode attribute.

    The arguments are the same as for the Popen constructor.  Example:

    retcode = call(["ls", "-l"])

>>> subprocess.call(['netsh', 'interface', 'set', 'interface', 'Wi-Fi', 'disabled'])

0

Hello nilamo, Thanks for taking the time to work on my issues.
I tried your code and gives me the following error
import subprocess
#help(subprocess.call)
subprocess.call(['netsh', 'interface', 'set', 'interface', 'Wi-Fi', 'disabled'])
Output:
The requested operation requires elevation (Run as administrator). Process finished with exit code 0
FYI, I am using Pycharm as text editor. and i have tried to run my python script in the windows command terminal, but still no luck.
Please advise.
Reply


Messages In This Thread
RE: os.system("netsh interface set interface 'Wi-Fi' enabled") - by aniyanetworks - Jan-17-2019, 06:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  python command interface cwc2 5 1,270 Sep-20-2023, 05:19 AM
Last Post: Larz60+
  Help on the User Interface Afia 1 565 Jul-21-2023, 07:22 PM
Last Post: snippsat
  Keep trying link until enabled kamaleon 4 1,441 Jul-30-2022, 07:11 AM
Last Post: kamaleon
  user interface Button not working Frankduc 4 1,482 Feb-16-2022, 02:52 PM
Last Post: Frankduc
  how to startup canbus interface on pi korenron 2 2,274 Oct-24-2021, 09:51 PM
Last Post: DeaD_EyE
  Build a matrix by pressing buttons of an interface in Tkinter which extract data from juandiegopulla 1 1,983 Sep-13-2021, 07:28 PM
Last Post: deanhystad
  in a login interface when i try login with a user supposed to say test123 but nothing NullAdmin 3 2,308 Feb-20-2021, 04:43 AM
Last Post: bowlofred
  Difference between os.system("clear") and os.system("cls") chmsrohit 7 16,728 Jan-11-2021, 06:30 PM
Last Post: ykumar34
  Help with User Interface design code ai_masti 0 1,953 Nov-19-2020, 05:58 PM
Last Post: ai_masti
Question Difference between Python's os.system and Perl's system command Agile741 13 6,926 Dec-02-2019, 04:41 PM
Last Post: Agile741

Forum Jump:

User Panel Messages

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