CompTIA A+ · Operating Systems
Configure a Windows client for network access — domain vs workgroup membership, network profiles, firewall exceptions, the four TCP/IP parameters, VPN and wireless connections, proxy settings, UNC paths, and metered connections.
25 min read · Windows Networking on the Desktop
// CHECK YOUR KNOWLEDGE
Connecting a Windows to a network involves several independent layers: the network model the machine belongs to, the profile Windows assigns to the connection, the firewall rules that govern traffic, the parameters the adapter uses, and the connection method itself. This lesson applies the Core 1 Networking concepts you already know to the Windows client configuration context — it does not re-teach addressing, , or . The focus is where to configure those parameters in Windows and what a technician does in each scenario.
Every Windows PC participates in one of two network models.
Domain — A Windows domain is a centrally managed network anchored by a Windows Server running (AD). Every machine in the domain authenticates against AD:
Workgroup — The default Windows peer-to-peer configuration. Each machine stands alone:
▸ EXAM TIP
Domain vs Workgroup — the core A+ distinction:
| | Domain | Workgroup | |---|---|---| | Central server required? | Yes (Windows Server + AD) | No | | User accounts | Centralized in Active Directory | Local to each machine | | Single sign-on? | Yes | No | | Group Policy? | Yes | No | | Edition restriction | Pro / Pro for Workstations / Enterprise only | Any edition (including Home) | | Typical scale | Enterprise, school | Home, small office |
Exam trap: A user cannot join a Home edition machine to a domain. If a scenario involves domain join failing, check the Windows edition first.
Both models support sharing resources across the network:
Z:, Y:, etc. — so it appears in File Explorer and applications as though it were a local drive. The drive reconnects automatically at logon when configured to do so. The net use command maps drives from the command line — see L5 for syntax; this lesson does not re-teach it.When Windows connects to a new network for the first time, it asks you to classify the connection. The classification controls which firewall profile Windows applies. Three classifications exist:
▸ EXAM TIP
Private = permissive; Public = restrictive.
Scenario pattern: a user at a hotel connects to the hotel Wi-Fi (Public profile) and cannot browse shared drives on a colleague's laptop on the same Wi-Fi. The Public profile blocks network discovery — this is correct behavior, not a misconfiguration. The hotel network should stay Public.
is the host-based firewall built into Windows. It filters traffic based on rules and applies different rulesets per network profile. A technician most often interacts with it when a newly installed application cannot receive incoming connections.
Application exceptions: → Windows Defender Firewall → "Allow an app or feature through Windows Defender Firewall." Each application can be permitted individually, with separate checkboxes for the Domain, Private, and Public profiles. An application can be allowed on Domain and Private while remaining blocked on Public.
Inbound vs outbound: By default, Windows Defender Firewall blocks unsolicited inbound connections but permits outbound connections. Advanced rules for both directions are configured in Windows Defender Firewall with Advanced Security (wf.msc). Core 1 Networking covered the stateful inspection concepts; here the focus is on the Windows administration surface.
The four parameters a technician configures on a Windows network adapter — these are Core 1 Networking concepts applied here to the Windows configuration path:
Where to configure: Network and Sharing Center → Change adapter settings → right-click the adapter → Properties → "Internet Protocol Version 4 (/)" → Properties. This is the adapter configuration dialog; L6 covered how to reach Network and Sharing Center from Control Panel — this lesson does not duplicate that path in detail.
Static vs dynamic:
▸ EXAM TIP
Static vs dynamic on the exam:
A Windows client showing a 169.254.x.x address received an APIPA address — it failed to contact a DHCP server. This is a Core 1 Networking concept; the troubleshooting step is to investigate DHCP availability, not change to static.
Wired (Ethernet): Connect the cable. Windows detects the adapter, classifies the network (Public or Private prompt for new networks), and requests a DHCP address. For most environments, no further configuration is needed. Manual IP assignment follows the path above.
Wireless (Wi-Fi): Click the network icon in the taskbar, or open Settings → Network & Internet → Wi-Fi. Windows lists available networks by . Select the network, enter the passphrase or credentials, and connect. Enterprise networks often use authentication — a username and password rather than a shared passphrase — flag for verification. Windows saves the network profile and reconnects automatically. Manage saved networks in Settings → Network & Internet → Wi-Fi → Manage known networks.
(Virtual Private Network): Windows includes a built-in VPN client. Configure in Settings → Network & Internet → VPN → Add a VPN connection. Required inputs:
The Core 1 Networking module covered VPN as a concept — this lesson covers only the Windows client configuration surface, not VPN protocol details or tunnel mechanics. Once connected, the VPN appears as a network adapter alongside the physical adapters.
(Wireless Wide Area Network) / Cellular: Laptops with a built-in cellular modem ( or physical ) connect to mobile carrier networks independently of Wi-Fi. The cellular adapter appears in Settings → Network & Internet alongside Wi-Fi and Ethernet as a separate connection type. Used when wired and Wi-Fi connections are unavailable — flag WWAN as a Windows adapter category for verification.
▸ NOTE
VPN type must match the server. IKEv2 is the modern default — fast reconnect after network changes, strong security. SSTP uses HTTPS (port 443) and passes through most firewalls. L2TP/IPsec is older but widely supported. PPTP is legacy with weak encryption and should not be used on new deployments. The A+ exam expects you to know that Windows has a native VPN client and that you configure the server address and protocol — not the cryptographic details of each protocol.
A acts as an intermediary between a Windows client and the internet. Corporate networks commonly route web traffic through a proxy for content filtering, logging, or caching. The client must send its requests to the proxy rather than directly to the destination.
Where to configure: Settings → Network & Internet → Proxy. Two modes:
The legacy path — Control Panel → Internet Options → Connections → settings — provides the same configuration for Internet Explorer-era environments and remains exam-relevant.
Network shares are addressed using UNC (Universal Naming Convention) paths.
UNC format: \\servername\sharename
Examples:
\\fileserver01\documents — the "documents" share on server "fileserver01"\\192.168.1.50\shared — same, using an IP address instead of a name\\fileserver01\documents\reports\2024 — includes a subfolder path after the share nameHow to access: Type the UNC path directly into File Explorer's address bar and press Enter. Windows connects to the share and prompts for credentials if required. This accesses the share without assigning a drive letter. For persistent access, map the share to a drive letter: in File Explorer, right-click "Network" → "Map network drive," or use the net use command (see L5 for syntax).
▸ EXAM TIP
UNC format: \\servername\sharename — two backslashes, server name, one backslash, share name.
Common exam distractor: //servername/sharename (forward slashes — correct for URLs and Linux paths, wrong for Windows UNC). Single backslash (\servername\sharename) is also wrong — must be two backslashes at the start.
A metered connection tells Windows the connection has limited data — typically a cellular connection or a Wi-Fi hotspot with a data cap. Windows reduces background data consumption on metered connections:
Where to configure: Settings → Network & Internet → Wi-Fi → [network name] → Properties → "Set as metered connection" toggle. For Ethernet connections: Settings → Network & Internet → Ethernet → [connection name] → Properties. Cellular connections are typically flagged as metered automatically.
▸ EXAM TIP
Metered connection exam pattern: A field technician using a cellular hotspot returns to find Windows downloaded a large feature update and consumed most of their data plan. The fix: mark the cellular or hotspot connection as metered in Settings → Network & Internet → [connection] → Properties. Windows defers large feature updates and non-critical app updates on metered connections. Critical security updates still download automatically regardless of the metered flag.
The check questions below test your ability to choose the right network model, classify network profiles, configure IP settings, navigate to network shares, and apply metered connection behavior to a real scenario.
Sign in to check your knowledge and earn XP. Sign in