#“cannot connect to this network”

1 messages · Page 1 of 1 (latest)

old shadow
#

i think any of these should fix it

unplug ur network adapter and replug
restart the router
reinstall network adapter drivers

latent bough
#

are you putting the password in correctly

spice walrus
#

yep

#

@latent bough

latent bough
#

has it workd in the past

spice walrus
#

yep

latent bough
#

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

spice walrus
#

ok thanks i will let you know if it works

turbid star
#

did you try forgetting the network and reinserting the password?
do you got a clever brother who is in IT?

spice walrus
#

yes and no

#

hopefully that is you @turbid star

latent bough
#

can you try ethernet if not can you disable and enable the network device

spice walrus
#

ethernet works but this is temporary

#

need wireless to work

turbid star
#

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?

spice walrus
#

went from w10 to w11

turbid star
#

could be a reinstall of the drivers for your wireless

spice walrus
#

a driver install that makes it not functional?

turbid star
#

as an issue could be

#

or a password incorrect

spice walrus
#

nope. ive checked its correct

turbid star
#

so time to reinstall drivers for the wifi

#

if that doessnt work 🤷‍♂️ time to install windows 10 and maybe its a OS related problem

spice walrus
#

done thast

turbid star
#

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?

spice walrus
#

yeah with antenies on the back

#

built in to the mobo i think

turbid star
#

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?

latent bough
#

can you run the windows troubleshoot?

spice walrus
spice walrus
latent bough
#

what shows up in device manager

spice walrus
latent bough
#

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

spice walrus
#

do i need to download python to run it

#

?

latent bough
#

ow nm if you dont have python instsalled no point