Disable the SQL powershell prompt

280 Views Asked by At

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?

1

There are 1 best solutions below

1
On BEST ANSWER

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:

#SQLPS drops you in SQLSERVER drive.
    Push-Location
    Import-Module SQLPS -DisableNameChecking
    Pop-Location

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!