I have just installed SQL Server 2014 Express Exition, and are now faced with a prompt whenever turning to a powershell.
The prompt looks like this: SQLSERVER:\>
How can I disable this behavior and get my good old powershell back?
I have just installed SQL Server 2014 Express Exition, and are now faced with a prompt whenever turning to a powershell.
The prompt looks like this: SQLSERVER:\>
How can I disable this behavior and get my good old powershell back?
You can't necessarily disable the fact that loading SQLPS drops you in the SQLServer provider. A workaround would be to push and pop your current location when loading the module:
I would definitely recommend this. While in the SQLServer provider, you get some wonky behavior (e.g. test-path \path\to\valid\share will fail).
Edit: Just noticed your comment - you could place the push and pop around the Get-Module -ListAvailable | Import-Module line for the same effect.
Cheers!