Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Command

Displays current TCP/IP information

Code Block
ipconfig

Displays curent TCP/IP information verbosely

Code Block
ipconfig /All

Verifies connectivity to another PC

Code Block
ping 

Verifies connectivity to another PC verbosely

Code Block
ping -t

Verifies connectivity to another PC with PC name

Code Block
ping -a

Disables File Based Write Filter on Windows 7 PCs

Code Block
fbwfmgr /disable

Enables File Based Write Filter on Windows 7 PCs

Code Block
fbwfmgr /enable

Disables File Based Write Filter on Windows 10 PCs

Code Block
uwfmgr filter disablesdisable

Enables File Based Write Filter on Windows 10 PCs

Code Block
uwfmgr filter enable

Add exclusion to File Based Write Filter on Windows 10 PC

Code Block
Uwfmgr.exe file add-exclusion  “ ”

Open Certificates - Local Computer window

Code Block
certlm.msc

Open Network and Sharing Center

Code Block
ncpa.cpl

show mac address on screen

Code Block
getmac

get mac address and copy it to clipboard

Code Block
getmac | clip

Import certificate into personal

Code Block
Import-PfxCertificate -FilePath C:\Temp\*.pfx -Password (ConvertTo-SecureString -String 'TypePasswordHere' -AsPlainText -Force) -CertStoreLocation Cert:\LocalMachine\my

Import certificate into trusted root

Code Block
Import-PfxCertificate -FilePath C:\Temp\*.local.pfx -Password (ConvertTo-SecureString -String 'TypePasswordHere' -AsPlainText -Force) -CertStoreLocation Cert:\LocalMachine\root