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")
#11
(Jan-17-2019, 07:00 PM)nilamo Wrote: What happens if you run it with admin privileges, as it suggests?
The output is this without error and without doing anything. it doesn't do anything at all.
Output:
Process finished with exit code 0
Reply
#12
Are you sure it didn't do anything? If it succeeds, netsh doesn't have any output, and an exit code of zero means success. For me, when I ran that, there was no output, but my wifi adapter had been disabled.
Reply
#13
(Jan-17-2019, 10:31 PM)nilamo Wrote: Are you sure it didn't do anything? If it succeeds, netsh doesn't have any output, and an exit code of zero means success. For me, when I ran that, there was no output, but my wifi adapter had been disabled.

IT is Working now. Thanks
import os
import subprocess
os.system("netsh interface show interface")
# It will enabled Wi-Fi Network
subprocess.call(['netsh', 'interface', 'set', 'interface', 'Wi-Fi', 'enabled'])
Output:
Admin State State Type Interface Name ------------------------------------------------------------------------- Disabled Disconnected Dedicated Wi-Fi Disabled Disconnected Dedicated TPALAN Process finished with exit code 0
Working Perfectly. Thank you
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Listening on receiving Interface (using scapy) CodyTheCodeNoob 1 1,602 Dec-22-2024, 10:51 PM
Last Post: PolandoFaker
  PyQt5 - issue of delay in overall performance & user interface while using serial COM thiru 0 739 Jun-18-2024, 08:34 AM
Last Post: thiru
  python command interface cwc2 5 2,866 Sep-20-2023, 05:19 AM
Last Post: Larz60+
  Help on the User Interface Afia 1 1,097 Jul-21-2023, 07:22 PM
Last Post: snippsat
  Keep trying link until enabled kamaleon 4 2,193 Jul-30-2022, 07:11 AM
Last Post: kamaleon
  user interface Button not working Frankduc 4 2,245 Feb-16-2022, 02:52 PM
Last Post: Frankduc
  how to startup canbus interface on pi korenron 2 3,447 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 2,845 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 3,108 Feb-20-2021, 04:43 AM
Last Post: bowlofred
  Difference between os.system("clear") and os.system("cls") chmsrohit 7 19,460 Jan-11-2021, 06:30 PM
Last Post: ykumar34

Forum Jump:

User Panel Messages

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