1

In Eclipse I need to run awsokta that is setup using PowerShell terminal. Is there a way to open PowerShell terminal in Eclipse?

Zeus
  • 166
  • 1
  • 2
  • 14

2 Answers2

2

To open terminal you first use Ctrl + alt +t. After the terminal is open enter command powershell. This will open “powershell” terminal.

Dharman
  • 30,962
  • 25
  • 85
  • 135
Zeus
  • 166
  • 1
  • 2
  • 14
2

Adding PowerShell to eclipse terminal selection:

Go to Windows -> Preferences. search for terminal under local terminal click add and select PowerShell exec from your system. enter image description here

To view the terminal view go to Window -> show view -> other -> terminal enter image description here

by clicking one or buttons you can either open a new terminal window or switch to any terminal for the dropdown terminals selection.

enter image description here

Asaf Magen
  • 862
  • 10
  • 22
  • Is there a way to add a shortcut? – Michael Jul 07 '22 at 08:46
  • as answered by @Zeus above you can use "Ctrl + alt +t". – Asaf Magen Jul 07 '22 at 09:23
  • thx. that is what I am already doing. A shortcut to the powershell directly does not seem possible. Pressing CTRL+ALT+T and explicitly typing `powershell` has the advantage that you are immediately in the correct path. With your method you always start in the workspace root. – Michael Jul 07 '22 at 11:04