I\'m attached to the nice blue colour of the PowerShell window when you launch it from one of the pre-installed shortcuts. However, if you manually launch powershell.exe, yo
Launch powershell with default blue and white colors in current folder from Explore or Total Commander or Double Commander on Windows 7 Pro 64-bit:
Create a batch file named ps.bat somewhere in a folder that is on the system PATH (if you do not have such a folder just make one, let's say C:\run\cli and add it to the PATH system environment variable). This batch file has to contain the following command:
start "" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Accessories\Windows PowerShell\Windows PowerShell.lnk"
That's it. Now just type ps in the Explorer's path bar where the current folder is shown or in the command line box of Total Commander or Double Commander, etc...
On Windows 10, there is no need to modify the PowerShell shortcut from Start Menu and the ps.bat file from above may contain just the following command:
start %SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe