Here is the complete error message that I get in the Package Manager Console when starting VS2010:
Import-Module : The specified module \'C:\\Users\\ada
I have no idea what was wrong, but I finally fixed this by editing the file init.ps1
inside the folder \packages\EntityFramework.4.3.1\tools
.
I changed this line:
Import-Module (Join-Path $toolsPath 'EntityFramework.psd1') -ArgumentList $installPath
Into this:
Import-Module '.\packages\EntityFramework.4.3.1\tools\EntityFramework.psd1' -ArgumentList $installPath