Reini
Reini

Reputation: 1281

Running PowerShell Script in real PowerShell Window

When I type this command in a classic windows command promt (black, small, not full resizable, small pre defined scroll buffer)

powershell myScript.ps1

The script will be executed in the classic command prompt window.
But I want to have a real power shell window (blue background, bigger, full resizable, "endless" scolling).

How to do this?

Upvotes: 0

Views: 721

Answers (1)

johnshen64
johnshen64

Reputation: 3884

if i understand you correctly, you just want to have a powshell window instead of a cmd one. open a powershell window by typing powershell in start->run

you can just ./myScript.ps1 to execute your script, assuming that your execution policy is set up properly already.

Upvotes: 1

Related Questions