Windows Server 2012 Powershell commandlets
Windows Server 2012 list of Powershell commandlets & a few common ones
With the release of Windows Server 2012 server powershell got a few changes as well. There are some quick start guides available here: http://www.microsoft.com/en-us/download/details.aspx?id=30002 that will make most tasks in the command prompt much easier. Below are a few common commandlets that can be useful to know:
Installation and removal of Windows features (always useful if you are running a core installation):
- Install-WindowsFeature – ServerManagerCmd.exe. Can install Windows Roles and Features.
- Remove-WindowsFeature – ServerManagerCmd.exe. Can uninstall Windows Roles and Features.
Some general IP / Network commands:
- Get-NetIPConfiguration – IPConfig. Obtain IP addresses for network adapters.
- New-NetFirewallRule – Netsh Advfirewall Add. Can add a new Windows Firewall rule.
- Get-NetTCPConnection – Netstat. Can retrieve statistics of TCP connections.
- Get-NetRoute – Route Print. Can display network routing.
- New-SmbMapping – Net Use. Can map a network path.
Service / Computer management:
- Restart-Computer – shutdown.exe. Can restart local or remote computers.
- Start-Service – Net Start. Can start a Windows service.
- Stop-Service – Net Stop. Can stop a Windows service
- Restart-Service – Net Stop | Net Start. Can restart a Windows service.
Love
Can we use Let's Encrypt, the free and open certificate authority?
Hola! gracias por la info, me sirvió el comando sacandole el nombre del server. En mi caso, fue una migración…
Yes 3rd option helped me too. I removed the WC key Values from config file then started working.
I know this is from 2014. But really, thank you!