I never used DX and don't know how it exactly works, but i needed to know the signal of the wlan i'm connected to for samurize and used: C:\Windows\System32\cmd.exe /c FOR /F "tokens=2 delims=: " %i IN ('netsh wlan show interfaces ^| find " Señal"') DO @echo %i or directly on a command prompt FOR /F "tokens=2 delims=: " %i IN ('netsh wlan show interfaces ^| find " Señal"') DO @echo %i IMPORTANT NOTE: it works for me both in Vista and 7. But my sys
19 Replies
13,331 Views