inSSIDer Software Download For Windows

[vc_row][vc_column][vc_tta_tabs style=”modern” active_section=”1″][vc_tta_section title=”About” tab_id=”aboutf856-8f34b9ea-4e30″][vc_column_text]InSSIDer is a useful application designed for the IT technicians that need to optimize the performance of a wireless network. The program intends to help you identify the interferences that have a negative impact on the signal strength.

The main goal of the application is to provide you with information about the nearby wireless networks such as the name, the broadcast channel and the used security method. It can also display the amplitude of each access point as a graph that enables you to easily view the one that has a stronger signal.

If the wireless routers in your neighborhood use the same frequency range, there is a good chance that the broadcasting channels overlap resulting in lower efficiency. This tool can detect the channels used by other networks in order to manually select the one that does not overlap with the others.

inssider software download

You can select certain networks from the list in order to track their RSSI over a longer time interval. This can help you identify the networks that are closer to your location and have a greater impact on your device performance.

InSSIDer includes a GPS feature that allows you to identify your location and to display the geographical coordinates of the detected networks. You can use the information collected by the GPS with other applications by exporting them to KML files.

When the program detects a lot of networks you can easily select the information that you want to view by using the filtering feature. With a few clicks, you can display only the devices from a certain vendor or the ones that use a certain security type and frequency range.

The interface of the program is easy to use, intuitive and requires insignificant resources to run. You can use it in the background without any impact on the performance of the system.

InSSIDer Features:

  • Visualize activity on each channel
  • Supports multi-AP networks
  • View non-WiFi interference
  • Get expert advice to fix issues fast
  • Works with Wi-Spy hardware

System Requirements:

  • 800 x 600 Resolution or Greater
  • 4 GB RAM
  • 1 USB PORT
  • Internal or USB Wi‑Fi Adapter (802.11n/ac recommended)
  • .NET 4.5.1

[/vc_column_text][/vc_tta_section][vc_tta_section title=”Video” tab_id=”videof856-8f34b9ea-4e30″][vc_column_text]

Official Video Intro inSSIDer Software

[/vc_column_text][vc_video link=”https://youtu.be/FU94K4W4bJo?list=PL98xN0R5aIR0_ENarOWGtIANC_2Ni_krx” align=”center” title=”Low Cost Packet Analysis webinar with MetaGeek”][/vc_tta_section][vc_tta_section title=”Alternatives” tab_id=”1613204936455-cd1a2326-6b56f856-8f34b9ea-4e30″][vc_column_text]

  • NetSpot
  • Wifi Analyzer
  • Acrylic Wifi
  • Vistumbler
  • WiFi Explorer
  • LinSSID

[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]

inSSIDer Software Overview

[/vc_column_text][vc_single_image image=”71361″][vc_column_text css=”.vc_custom_1634630215148{margin-top: 10px !important;}”]

技術規格

版本2021
檔案大小32.3 MB
語言英語
許可證Free Trial
開發人員MetaGeek, LLC.

[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]總結

InSSIDer is a powerful application that displays advanced information about the wireless networks and can help you optimize the signal strength of your adapter.[/vc_column_text][/vc_column][/vc_row]

// Constants for DOM elements const dropdownTriggers = document.querySelectorAll('.dz-menu-item.dropdown'); const dropdownContent = document.querySelector('.dz-dropdown-content'); const dropdownPanels = document.querySelectorAll('.dz-dropdown-panel'); const header = document.querySelector('.dz-header-wrap');// State to track the currently open menu item element let activeDropdownElement = null; let closeTimer = null; // Timer for delayed closing// Function to close all dropdowns function closeAllDropdowns() { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // Only proceed if the elements exist if (dropdownContent) { dropdownContent.classList.remove('open'); } dropdownPanels.forEach(panel => panel.classList.remove('active')); dropdownTriggers.forEach(item => item.classList.remove('active')); activeDropdownElement = null; }// Function to open a specific dropdown function openDropdown(item, targetPanel) { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // 1. Close all others closeAllDropdowns(); // 2. Open the new one item.classList.add('active'); targetPanel.classList.add('active'); if (dropdownContent) { dropdownContent.classList.add('open'); } activeDropdownElement = item; }// Event listener for each dropdown menu item dropdownTriggers.forEach(item => { item.addEventListener('click', function(e) { e.preventDefault(); const panelName = this.getAttribute('data-panel'); const targetPanel = document.querySelector(`.${panelName}`); if (!targetPanel) return;const isCurrentlyActive = this === activeDropdownElement;if (isCurrentlyActive) { // If the same dropdown is clicked, close it immediately. closeAllDropdowns(); } else { // Open the new dropdown openDropdown(this, targetPanel); } }); });/* --- MOUSE EVENTS FOR STABILITY FIX --- */ if (header) { // 1. When the mouse leaves the entire header area (menu + dropdown bar), start a timer to close it. header.addEventListener('mouseleave', () => { // Only initiate close if a dropdown is currently active if (activeDropdownElement) { // Set a delay (e.g., 300ms) to allow the user to move the mouse slightly closeTimer = setTimeout(closeAllDropdowns, 300); } });// 2. If the mouse re-enters the header area before the timer fires, cancel the close. header.addEventListener('mouseenter', () => { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } }); }// 3. Close when clicking anywhere outside the header (as a fallback) document.addEventListener('click', (e) => { // Check if header exists and if the click is outside the header AND a dropdown is open if (header && !header.contains(e.target) && activeDropdownElement) { closeAllDropdowns(); } });// Initial setup: ensure all are closed on load document.addEventListener('DOMContentLoaded', closeAllDropdowns); window.addEventListener('load', closeAllDropdowns);
滾動到頂端