#“cannot connect to this network”
1 messages · Page 1 of 1 (latest)
done all that
are you putting the password in correctly
has it workd in the past
yep
go to cmd
On the taskbar search, type "Command Prompt."
Right click on Command Prompt and press "run as administrator."
When asked whether to allow Command Prompt to make changes to your computer, select Yes.
Open Command Prompt
Type the command ipconfig /flushdns then press enter
Type the command ipconfig /registerdns then press enter
Type the command ipconfig /release then press enter
Type the command ipconfig /renew then press enter
Type the command netsh winsock reset then press enter
Restart the computer
ok thanks i will let you know if it works
did you try forgetting the network and reinserting the password?
do you got a clever brother who is in IT?
can you try ethernet if not can you disable and enable the network device
done that
ethernet works but this is temporary
need wireless to work
well did wireless work before
if it did, what has changed in between?
as in changed settings on the router? changed location of wireless router? changed location of the PC?
went from w10 to w11
could be a reinstall of the drivers for your wireless
a driver install that makes it not functional?
nope. ive checked its correct
so time to reinstall drivers for the wifi
if that doessnt work 🤷♂️ time to install windows 10 and maybe its a OS related problem
done thast
well didnt work?
well put down the name of the wifi card ? is it on a motherboard?
As in directly connected to the motherboard? or a pci card? usb dongle? wifi?
so yeah, you looked up the drivers on the motherboard on the motherboard support page?
and checked the OS for it as well on the driver support page of the motherboard page?
can you run the windows troubleshoot?
ive done that, it says it cant be fixed
ive uninstalled and re installed my network wireless driver
what shows up in device manager
can you uninstall it and reinstall
@spice walrus I am not exactly sure this will work but
import subprocess
def diagnose_wifi():
#Check if wifi adapter is enabled
print("Checking if wifi adapter is enabled...")
process = subprocess.run('netsh interface show interface | findstr /i wifi', stdout=subprocess.PIPE, shell=True)
if process.stdout == b'':
print("Wifi adapter is disabled. Please enable it and try again.")
return
#Check if wifi adapter is connected to network
print("Checking if wifi adapter is connected to network...")
process = subprocess.run('netsh wlan show interfaces | findstr /i state', stdout=subprocess.PIPE, shell=True)
if b'connected' not in process.stdout:
print("Wifi adapter is not connected. Please connect it and try again.")
return
#Check IP address
print("Checking IP address...")
process = subprocess.run('ipconfig | findstr /i ipv4', stdout=subprocess.PIPE, shell=True)
if b'169.254' in process.stdout:
print("IP address is invalid. Please check your network settings.")
return
#Check DNS
print("Checking DNS...")
process = subprocess.run('nslookup www.google.com | findstr /i address', stdout=subprocess.PIPE, shell=True)
if b'Address:' not in process.stdout:
print("DNS is not working. Please check your network settings.")
return
#No problems found
print("No wifi problems found.")
#Call the function
diagnose_wifi()
run this with pytho
python
ow nm if you dont have python instsalled no point