This commit is contained in:
ricardopolo 2019-11-14 16:53:56 -05:00
commit 9aa051d7b8

View File

@ -356,8 +356,8 @@ function getWindowsIEEE8021x(connectionType, iface, ifaces) {
}
} else if (connectionType == 'wireless'){
try {
// const SSID = getWindowsWirelessIfaceSSID(iface);
const SSID = '1';
const SSID = getWindowsWirelessIfaceSSID(iface);
// const SSID = '1';
if(SSID !== 'Unknown') {
i8021xState = execSync(`netsh wlan show profiles "${SSID}" | findstr "802.1X"`, util.execOptsWin);
i8021xProtocol = execSync(`netsh wlan show profiles "${SSID}" | findstr "EAP"`, util.execOptsWin);