Free Windows Networking Features practice questions
10 free 220-1202 questions on Windows Networking Features, each with a full explanation — no account needed. This section sits in the Operating Systems part of the exam. Answer every question to see your score, then read the lessons below for anything you missed.
A user connected their laptop to a hotel Wi-Fi network, and Windows prompts them to choose a network profile. Which profile should be selected to reduce the PC's exposure on this untrusted network?
The Public profile exists for networks you do not control: it turns network discovery off, disables file and printer sharing, and applies the most restrictive Windows Defender Firewall rule set, so the laptop is invisible to the other hotel guests. Private is meant for a trusted home or office network and enables discovery and sharing, which is exactly the exposure to avoid at a hotel. Domain cannot be chosen by a user; Windows applies it automatically only when a domain-joined PC can reach its domain controller. Choosing Private and then switching discovery off by hand still leaves the more permissive Private firewall rules active, so it is weaker than simply choosing Public.
A user returns from a business trip and reports that they cannot load any websites at home, even though their laptop shows a connected network icon and other family devices browse normally. Which of the following is the MOST likely cause?
A laptop that browsed fine at the office but fails on every site at home is commonly still configured with a manual proxy that points at the corporate proxy server. That proxy is unreachable from outside the office network, so all web requests fail even though the network link itself works. Clearing the manual proxy entry or re-enabling automatic detection restores browsing. The home network being set to a Private profile would not block internet access; Private actually enables discovery and sharing on trusted networks, so this is not the cause. A metered connection only defers large updates and throttles background data — it does not block normal web browsing. A corrupted wireless driver would typically prevent the device from connecting at all or show no network icon, but here the icon shows connected and the link works. The key diagnostic clue is that the device is 'connected' yet cannot reach any external site, which points directly to a proxy misconfiguration rather than a hardware or driver problem.
Which Windows proxy configuration method uses the Web Proxy Auto-Discovery protocol to locate settings from DHCP or DNS without any manual entry?
The 'Automatically detect settings' option uses the Web Proxy Auto-Discovery protocol (WPAD). The client queries DHCP or DNS to locate a configuration file automatically, requiring no manual entry from the user. This is convenient on managed corporate networks but depends on the infrastructure advertising the proxy correctly; if WPAD is misconfigured, clients may fail to reach the internet or experience delays. 'Use setup script' requires an administrator to supply the URL of a PAC file, so it is not fully automatic discovery — it points to a script that decides proxy-versus-direct routing per destination. 'Manual proxy setup' requires the technician to type in the proxy's address and port directly, which is the opposite of zero-touch configuration. 'Direct connection bypass' is not a Windows proxy method; while you can list bypass addresses within manual setup, it is not a standalone discovery mechanism. WPAD is the only method that queries network infrastructure automatically to find the proxy configuration.
A user on a trusted home network complains that they cannot see a shared printer or any other computers when browsing File Explorer, although internet access works fine. Which of the following should the technician check FIRST?
A network profile set to Public is the single most common reason a device 'can't find' a shared printer or other computers on a trusted network. On a Public profile, Windows turns network discovery off and applies a stricter firewall stance that blocks the inbound traffic needed for sharing, so shared resources simply do not appear even though internet connectivity works. Switching the profile to Private restores discovery and sharing. A stopped print spooler service would prevent printing to installed printers but would not hide other computers from appearing in the Network view, so it does not match the symptom of nothing being visible. An invalid proxy setup script URL would break web browsing, but the user confirms internet access works fine, ruling that out. Reinstalling the printer driver addresses a printer that is found but malfunctioning, not a situation where the printer and all network devices are invisible. When local resources 'vanish' but the internet works, always confirm the Public versus Private profile before touching drivers or services.
A technician needs to write a UNC path to access the 'Training' folder inside the 'Public' share hosted on a server named FS01. Which of the following is correctly formatted?
A UNC (Universal Naming Convention) path follows the pattern \\server\share\folder, using two leading backslashes before the server name and single backslashes between each element. \\FS01\Public\Training correctly identifies FS01 as the server, Public as the share, and Training as the subfolder. The format //FS01/Public/Training uses forward slashes, which is a URL/Unix convention and will not resolve in Windows File Explorer. \FS01\Public\Training uses only a single leading backslash, which Windows interprets as a root-relative path rather than a network resource, so it fails. FS01:\Public\Training uses a colon after the server name, which is the syntax for a drive letter (like C:) rather than a network host, so it is invalid. Remembering the exact double-backslash UNC format is essential, because a mistyped path is one of the most common causes of 'can't access the shared drive' tickets. When name resolution fails, the same path can also be written with the server's IP address, such as \\192.168.1.20\Public\Training.
A large organization needs some web traffic routed through a proxy while internal sites connect directly, all controlled from one centrally managed file. Which proxy configuration method BEST meets this requirement?
A setup script that references a PAC (Proxy Auto-Config) file URL is the correct choice. A PAC file is a small JavaScript file containing a FindProxyForURL(url, host) function that returns which proxy — or a direct connection — to use for each destination. This lets an organization centralize routing logic, sending internal sites direct and external sites through the proxy, from one managed file without configuring every PC individually. A manual proxy address and port entry forces all traffic through a single specified proxy and cannot make per-destination decisions, so it does not meet the requirement for selective routing. Automatic detection using WPAD locates a configuration automatically but is about discovery, not about defining granular proxy-versus-direct rules per site the way a PAC script does. A per-device firewall inbound rule governs inbound connection filtering, not the routing of outbound web requests to a proxy. The PAC file is specifically the middle-ground solution that provides centralized, per-destination proxy logic.
A technician suspects a personal laptop has been infected with malware that redirects web traffic. Which of the following observations would MOST strongly indicate a rogue proxy has been configured?
The strongest indicator of a rogue proxy is proxy settings being enabled with an unfamiliar address that the user never configured. Malware sometimes sets a rogue proxy to intercept traffic, redirect users to fake sites, or block updates and security tools. A strange proxy address containing random numbers, an unknown domain, or unexpected loopback entries — especially on a personal device where nothing network-related was installed — is a classic red flag. A network profile switching from Private to Public affects discovery and firewall behavior but is not characteristic of traffic-redirecting malware and does not intercept web requests. A Wi-Fi connection marked as metered only changes data-saving behavior such as deferring updates; it does not redirect or intercept traffic. A mapped network drive failing to reconnect at sign-in points to credential, path, or connectivity issues with a file share, not to a malicious proxy. When investigating suspected traffic redirection, examine the proxy configuration for entries the user did not create, remove unknown proxy settings, and run a full antivirus scan.
A technician cannot open \\FS01\Data but is able to open \\192.168.1.20\Data, which points to the same server. Which of the following is the MOST likely cause?
When a UNC path fails by hostname but succeeds using the IP address of the same server, the problem is name resolution — DNS cannot resolve FS01 to its IP address. Since the IP form connects successfully, the share exists, permissions allow access, and file sharing is functional; only the name-to-address lookup is broken. NTFS or share permissions denying access would block the connection regardless of whether you used the hostname or the IP address, since both reach the same share, so permissions are not the cause. A Public network profile would block sharing traffic entirely, meaning both the hostname and IP forms would fail — but here the IP form works. If SMB were disabled on the client, file sharing would fail through both the name and the IP path, which is not what is happening. Testing the IP form of a path is a deliberate troubleshooting step precisely to isolate DNS issues from other causes: if the IP works and the name does not, DNS resolution is the culprit.
A user complains that their laptop has fallen chronically out of date and Microsoft Store apps stop refreshing on their own, although the device connects to the internet and browses normally. Which of the following is the MOST likely cause?
A connection marked as metered is the classic cause of a device that browses fine but keeps deferring updates and stops refreshing Store apps. On a metered connection, Windows defers larger, non-priority updates until an unmetered connection is available, pauses Microsoft Store app updates, and reduces background data activity — all while normal browsing continues to work. Checking whether the active connection is flagged as metered is a fast diagnostic step for a chronically out-of-date device. Setting the network profile to Private affects discovery and firewall behavior for local sharing, not Windows Update or Store app download behavior. A misconfigured PAC setup script URL would break web browsing across the device, but the user confirms browsing works normally, ruling it out. Turning off network discovery only hides the device from other computers on the network and has no effect on update installation or Store refreshes. When updates and app refreshes stall but internet access is healthy, the metered flag is the first thing to verify.
A technician is troubleshooting a Windows 11 laptop that shows 'Connected' to Wi-Fi but cannot load any websites. Running ipconfig reveals the client has an IP address of 169.254.14.203. Which of the following is the MOST likely cause?
An address in the 169.254.x.x range is an Automatic Private IP Address (APIPA), which Windows self-assigns only when it cannot reach a DHCP server to obtain a lease. This strongly indicates a DHCP failure, so the client has no usable IP, gateway, or DNS information and cannot reach the router or the internet. A DNS server being unreachable would not produce a 169.254 address; the client would still have a valid IP but would fail to resolve names while pings to public IPs succeed. An incorrectly set default gateway would allow local access to succeed while internet access fails, but the client would still hold a proper DHCP-assigned IP, not an APIPA address. A wrong subnet mask causes inconsistent behavior where some local devices work and others do not, but again the client would retain a normal address rather than a 169.254 value. The proper first step is to confirm DHCP reachability, often by running ipconfig /release and ipconfig /renew or toggling the adapter to force a fresh DHCP request.
Study this section
Every lesson that covers Windows Networking Features on the 220-1202 exam.