| Conversation from slack: Are people running commands over the local transport? What directory do you expect commands to be run from? Currently when running commands over winrm/ssh `run command` executes from the users home directory. For the local transport on non-windows the command executes from whatever directory bolt was invoked from. For windows local transport the command is executed from a randomized temporary directory. What would make the most sense to standardize on? nmaludy [10:11 AM] on local i expect it to be run from wherever bolt was run from would be nice in both cases if you could specify `cwd` for the command/script/etc iristyle [10:17 AM] On Windows, I would expect initial working directory to be users home directory When you start an interactive PowerShell session, that’s where you start (unless you’ve elevated, in which case you start in `c:\windows\system32`. When you connect over winrm, you end up in the users documents folder (at least on my machine) - let me see if there are any docs around that ```C:\Windows\system32> whoami desktop-phtd0h8\iristyle C:\Windows\system32> Enter-PSSession localhost [localhost]: PS C:\Users\Iristyle\Documents>``` |