Powershell powertab

I found this usefull plugin to PowerShell. It enables visual autocomplete aka intellisense Smile

http://powertab.codeplex.com/

image

I had some trouble installing the tool getting this error.

Import-Module : File C:\Users\something\Documents\WindowsPowerShell\Modules\PowerTab\PowerTab.psm1 cannot be loaded. The file C:\Users\han\Documents\Window
sPowerShell\Modules\PowerTab\PowerTab.psm1 is not digitally signed. The script will not execute on the system. Please see "get-help about_signing" fo
r more details..
At line:1 char:14
+ Import-Module <<<<  PowerTab
    + CategoryInfo          : NotSpecified: (:) [Import-Module], PSSecurityException
    + FullyQualifiedErrorId : RuntimeException,Microsoft.PowerShell.Commands.ImportModuleCommand

In order to fix this you need to do unblock the downloaded file before you copy the content to the modules folder

image

Now you can copy the content to the modules folder and run the import command Smile

Import-Module PowerTab

I prefer to use this tab item selector instead of the default one.

$PowerTabConfig.DefaultHandler = "Intellisense"

image

Etiketter: