Reading the documentation for winrm, I thought that doing winrm quickconfig as admin (windows 7) was needed only once, and that winrm would then starts automatically at boot.
But that does not seem to work for me: how can I check/ensure it is setup to start automatically ?
Are you sure it's not starting up automatically?
[...]
Having said that, if the problem really is the service not starting up at boot time, you can issue
sc config "WinRM" start= auto
from the command line to change the service to automatic startup, andnet start WinRM
to start it. If it's already started, it will tell you as much, so that's a way quick check as well.And there's always service management/
services.msc
for a GUI option.