When creating an ExecAction, add a value to the WorkingDirectory property.
// In constructor, last param is WorkingDirectoryvar action = new ExecAction("cmd.exe", "echo Working...", @"C:\"); // In object, use property action.WorkingDirectory = @"C:\Windows";