Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"No interfaces Found on this device!" #44

Open
Kevinzc10 opened this issue Jan 11, 2025 · 10 comments
Open

"No interfaces Found on this device!" #44

Kevinzc10 opened this issue Jan 11, 2025 · 10 comments

Comments

@Kevinzc10
Copy link

I just got this downloaded today, and it said that I have no interface card. I checked to see if i have a interface card. And i do. What is going on?

Interface

@TechnicalUserX
Copy link
Collaborator

Could you provide the output of the netsh wlan show interfaces command?

Blur the MAC address portions if you wish.

@Kevinzc10
Copy link
Author

Could you provide the output of the netsh wlan show interfaces command?

Blur the MAC address portions if you wish.

InterfaceTESTresults

@TechnicalUserX
Copy link
Collaborator

Which "commit" are you using right now? I mean, is it the newest version? Some older versions had issues with detecting interfaces.

@Kevinzc10
Copy link
Author

Which "commit" are you using right now? I mean, is it the newest version? Some older versions had issues with detecting interfaces.

I am using the latest commit, updated 4 days ago (0b05f8b)

@santiagodops
Copy link

Qual "commit" você está usando agora? Quero dizer, é a versão mais nova? Algumas versões mais antigas tinham problemas com a detecção de interfaces.

Estou usando o último commit, atualizado há 4 dias ( 0b05f8b )

Estou com o mesmo problema

@1nnuendo2000
Copy link

Image
i have the sam problem
no interface detected
using last version on donload (18.01.2025)
any suggestion?
(not used english as language for lock screen as solution becaus my connection not allow me to download language package)

@rgmhacks
Copy link

I was facing the same problem so the solution is go to Settings > Privacy & security and then turn on "Location services" and "Let apps access your location" and then try to run it again. This worked for me

@1nnuendo2000
Copy link

i solved this iusses using chatgpt and asking it to focus on language problems

it wrote this code to modify the source code and it worked


:interface_detection
cls
echo.
call :color_echo . yellow "Detecting interfaces..."
set interface_temp_index=-1
set interface_number=0

:: Estrai tutte le righe che contengono informazioni
for /f "tokens=1,*" %%a in ('netsh wlan show interfaces') do (
    :: Controlla la presenza di linee che indicano un nome, una descrizione e un indirizzo fisico
    if "%%a"=="Nome" (
        set /a interface_temp_index+=1
        set interface[!interface_temp_index!]_id=%%b
    )
    if "%%a"=="Description" (
        set interface[!interface_temp_index!]_description=%%b
    )
    if "%%a"=="Physical" (
        set interface[!interface_temp_index!]_mac=%%b
    )
)

:: Conta il numero di interfacce trovate
set /a interface_number=!interface_temp_index!+1
timeout /t 2 >nul
cls

goto :eof

@vajez
Copy link

vajez commented Jan 22, 2025

i solved this iusses using chatgpt and asking it to focus on language problems

it wrote this code to modify the source code and it worked

:interface_detection cls echo. call :color_echo . yellow "Detecting interfaces..." set interface_temp_index=-1 set interface_number=0

:: Estrai tutte le righe che contengono informazioni
for /f "tokens=1,*" %%a in ('netsh wlan show interfaces') do (
    :: Controlla la presenza di linee che indicano un nome, una descrizione e un indirizzo fisico
    if "%%a"=="Nome" (
        set /a interface_temp_index+=1
        set interface[!interface_temp_index!]_id=%%b
    )
    if "%%a"=="Description" (
        set interface[!interface_temp_index!]_description=%%b
    )
    if "%%a"=="Physical" (
        set interface[!interface_temp_index!]_mac=%%b
    )
)

:: Conta il numero di interfacce trovate
set /a interface_number=!interface_temp_index!+1
timeout /t 2 >nul
cls

goto :eof

dato che anche a me da lo stesso problema ho provato con il tuo codice ma mi trova solo una interfaccia "()" e se provo a fare scan non mi trova nessuna rete

Image

@nidalaquil
Copy link

I have the same problem but my computer is in french and I do have an interface

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants