Hey, I was looking through the source code and saw this:
if (arguments.ContainsKey("startat"))
{
startat = arguments["startat"];
}
if (arguments.ContainsKey("logonuser"))
{
// setting startat to value of logonuser
startat = arguments["logonuser"];
}
Is this a bug? I would assume the value of logonuser should be set to the logonuser variable.