You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Import the NetAdapter module (available in the latest version of Windows, both client and server). Using the Get-NetAdapter cmdlet, display a list of nonvirtual network adapters (adapters whose Virtual property is False, which PowerShell represents with the special $False constant).
Import-Module NetAdapter
Get-NetAdapter| gm
Get-NetAdapter-Physical
Import the DnsClient module (available in the latest version of Windows, both client and server). Using the Get-DnsClientCache cmdlet, display a list of A and AAAA records from the cache. Hint: if your cache comes up empty, try visiting a few web pages first to force some items into the cache.
Import-Module DnsClient
Get-DnsClientCache| gm
Get-DnsClientCache-Type A,AAAA
Display all EXE files under C:\Windows\System32 that are larger than 5 MB.
Display a list of hotfixes that are security updates.
Get-HotFix-Description *Security*
Display a list of hotfixes that were installed by the Administrator, and which are updates. If you don’t have any, try finding hotfixes installed by the System account. Note that some hotfixes won’t have an “installed by” value—that’s OK.