I bet the "cd /home" works. You have to keep in mind that every RunCommand() has a new "shell".
If you want to run commands together in one context you have to create/manage your own shell or combine them with "&&" or "||".
e.g.: RunCommand("cd /home/ && pwd");
If you want to run commands together in one context you have to create/manage your own shell or combine them with "&&" or "||".
e.g.: RunCommand("cd /home/ && pwd");