I'm trying to setup Redis as a Windows Service by following this guide, https://github.com/SignalR/SignalR/wiki/SignalR-with-Redis-Running-on-a-Windows-Azure-Virtual-Machine
However, when I try to start the service through Powershell I get an exception.
(Get-Service -Name RedisWatcherSvc).Start()
Exception calling "Start" with "0" argument(s): "Cannot open RedisWatcherSvc service on computer '.'."
At line: 1 char:42
+ (Get-Service -Name RedisWatcherSvc).Start <<<< ()
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId: DotNetMethodException
What am I doing wrong?