Hi
I'm having a strange installation issue (and I've had it only on this one machine): basically, this is a W7 x64 install, and no matter where I put the pscx files:
c:\windows\system32\windowspowershell\v1.0\Modules\
c:\windows\syswow64\windowspowershell\v1.0\Modules\
c:\users\mark\Documents\WindowsPowerShell\Modules\
when I try to import the module, I get a file not found error even tho the files are there:
Import-Module : The specified module 'Pscx' was not loaded because no valid module file was found in any module directory.
At line:1 char:14
+ import-module <<<< Pscx
+ CategoryInfo : ResourceUnavailable: (Pscx:String) [Import-Module], FileNotFoundException
+ FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Comm
ands.ImportModuleCommand
now I'm surely missing something, and I beg everyone pardon, but I'm banging my head at this since a couple of hours and I can't install.. what I'm doing wrong?
Thanks everyone!
Btw: If I specify the FULL path to the pscx files, it does find it, but that's not how it should work.. I would want to install for every user. here's my $env:psmodulepath:
PS C:\> $env:psmodulepath
C:\Users\Mark\Documents\WindowsPowerShell\Modules;C:\Windows\system32\Windo
wsPowerShell\v1.0\Modules\
|