Can I please know how to check WDS service is running or not?
After patching, WDS service is disabled. Server asked for a reboot to start WDS. Can I know how to check WDS is running or not?
Can I please know how to check WDS service is running or not?
After patching, WDS service is disabled. Server asked for a reboot to start WDS. Can I know how to check WDS is running or not?
First solution:
Second solution:
Programmatically in PowerShell,
(Get-Service -Name "WDSServer").Status
To do the same remotely,
(Get-Service -ComputerName <computer name> -Name "WDSServer").Status