I am trying to create Conemu task just to open some directory in the current console. This task setup, for example, opens this directory in a new powershell tab:
powershell.exe -new_console:d:C:\Users\User\example-dir\example-subdir
Is there a way to open it in a current console? I tried these, but it just opens new empty tab with text 'Press Enter or Esc to exit...':
powershell.exe -Command "cd example-dir"
I also tried:
powershell.exe -cur_console:d:C:\Users\User\example-dir\example-subdir
But it opens it in new tab, just like first one i posted. Any help?