Thanks again for the quick turn-around on questions as I bump into things during thei migration. I just hit another snag on step 11. Migrate DHCP Scope and settings from SBS 2011 to Windows Server Essentials 2016
Remove-WindowsFeature DHCP
netsh dhcp server export was successful. Subsequently ran: Remove-WindowsFeature DHCP This returned " Gthe term 'Remove-WindowsFeature' is no recognized as the name of a cmdlet...
Is Uninstall-WindowsFeature the proper cmdlet? If yes, what would be the complete PS command?
Found resolution.
Resolved with PowerShell commands: Import-Module ServerManager Get-Command -module ServerManager
This imported six cmdlets including Remove-WindowsFeature
Presently running Remove-WindowsFeature DHCP
You need to run this first if you get that error
Import-Module ServerManager