This widget could not be displayed.
This widget could not be displayed.
cancel
Showing results for 
Search instead for 
Did you mean: 

wifi not working so many times

Joy_karmakar
Star I

Joy_karmakar_0-1752392778100.png

it's not showing so many times ..

i will reset this pc still have this problem , please help me 

i need to fixed this problem permanently......

 

 #asus_tuf_gaming_A15 2021 

@asus

1 REPLY 1

eyebrowz
Rising Star I

Hi

You don't actually give any details....

Make, Model and OS are always helpful. Along with the adapter type/name installed.

 

02F.png

For instance using something to list the Wi-Fi details, like the above piccy represents....

Therefore you copy the text below, and save it as 02F.bat, then run it.  OR just pick out the individual commands.

Post back, non-personal, results please.  Use 4 MAC_IFS and 7 DR_WLAN etc etc

If in doubt please ask.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

@EchoTHIS MAY HELP TO REPAIR / RECTIFY,
@EchoVERY, SIMPLE NETWORK DIFFICULTIES.
@EchoSOME ETHERNET / WIRELESS PROBLEMS.
@EchoTHE RESULTS WILL VARY ACCORDING TO
@EchoYOUR CONFIGURATION AND USER LEVEL.
@EchoA RE-BOOT MUST BE DONE AFTER DOING
@EchoSOME OF THE CHECKS OPTIONED BELOW.
@Echo...................................
:MENU
@EchoTYPE IN YOUR PREFERRED MENU CHOICE
@Echo...................................
@Echo.
@Echo0 - FINISHD Close this Command Box
@Echo1 - PING_LR Ping Local and Remote.
@Echo2 - ISP_MDM Ping Modem 192.168.X.1
@Echo3 - TRACERT Trace Route to Remote.
@Echo4 - MAC_IFS Get MAC and InterFaceS
@Echo5 - SEE_IFS See Network InterFaceS
@Echo6 - SH_CONN Show I/Face Connection
@Echo7 - DR_WLAN Drivers WLAN interface
@Echo8 - IP_CONF Display Network Config
@Echo9 - INFO_32 Shows MSINFO32 Screens
@EchoA - IPvFOUR Reset to remove errors
@EchoB - WINSOCK Reset to remove errors
@EchoC - IP_RNEW Force/Renew IP address
@EchoD - PROFILE Displays SSID listings
@EchoE - WIFIKEY Displays as clear text
@EchoF - CONNECT Manual WiFi connection

@Echo..................................
@EchoOFF
COLOR B1
SET /P M= Press 0-F, and then ENTER:

IF /I %M%==0 GOTO FINISHD
IF /I %M%==1 GOTO PING_LR
IF /I %M%==2 GOTO ISP_MDM
IF /I %M%==3 GOTO TRACERT
IF /I %M%==4 GOTO MAC_IFS
IF /I %M%==5 GOTO SEE_IFS
IF /I %M%==6 GOTO SH_CONN
IF /I %M%==7 GOTO DR_WLAN
IF /I %M%==8 GOTO IP_CONF
IF /I %M%==9 GOTO INFO_32
IF /I %M%==A GOTO IPvFOUR
IF /I %M%==B GOTO WINSOCK
IF /I %M%==C GOTO IP_RNEW
IF /I %M%==D GOTO PROFILE
IF /I %M%==E GOTO WIFIKEY
IF /I %M%==F GOTO CONNECT

:FINISHD
EXIT

:PING_LR
@EchoOVER 2, and 20ms is a POOR result IMO.
ping 127.0.0.1 & ping 13.107.4.52
echo.
PAUSE
GOTO MENU

:ISP_MDM
@EchoCovers most ISP modems.
ping 192.168.0.1 & ping 192.168.1.1
echo.
PAUSE
GOTO MENU

:TRACERT
pathping 127.0.0.1 & tracert 13.107.4.52
echo.
PAUSE
GOTO MENU

:MAC_IFS
@EchoListing MAC and Adapter details.
getmac & netsh interface ip show interface
echo.
PAUSE
GOTO MENU

:SEE_IFS
netsh lan show interfaces & netsh lan show all | more
echo.
PAUSE
GOTO MENU

:SH_CONN
powershell Get-NetConnectionProfile
echo.
PAUSE
GOTO MENU

:DR_WLAN
netsh wlan show drivers & powershell get-netadapter
pause
echo.
GOTO MENU

:IP_CONF
ipconfig /all | more
echo.
PAUSE
GOTO MENU

:INFO_32
msinfo32
echo.
PAUSE
GOTO MENU

:IPvFOUR
netsh int ipv4 reset reset.log
echo.
PAUSE
GOTO MENU

:WINSOCK
netsh winsock reset catalog
echo.
GOTO MENU

:IP_RNEW
ipconfig /release
ipconfig /renew
echo.
PAUSE
GOTO MENU

:PROFILE
netsh wlan show profiles
echo.
@EchoPLEASE NOTE every NETWORK-SSID
@EchoNAME and KEY for a connection.
echo.
PAUSE
GOTO MENU

:WIFIKEY
set /p wkey=Please type in the SSID
netsh wlan show profile name=%wkey% key=clear
echo.
PAUSE
GOTO MENU

:CONNECT
set /p wkey=Please type in the SSID
netsh wlan set profileparameter name="%wkey%" connectionmode=auto
echo.
PAUSE
GOTO MENU