vote up 1 vote down star
1

I've heard powershell 2.0 CTP has modules, but I can't find much example code or instructions. I've read what little help there seems to be online...

But I just keep getting "The term 'Add-Module' is not recognized as a cmdlet..." when I try and load a module.

Any help would be gratefully received!

flag

Wait just a couple of weeks and your wishes will come true with CTP3. – halr9000 Dec 9 '08 at 4:05

4 Answers

vote up 1 vote down check

With the Win7 build, Add-Module is gone. The new cmdlet is Import-Module. The easiest way to create a module is rename a PS1 file to a PSM1 file. From there you can do all sorts of things including the module manifest.

link|flag
Import-Module doesn't work either. In fact there are no commands that have the word module in them: gcm | ?{$_.Name.Contains("Module")} | fl name Oh well I'll wait until CTP 3 to find out more! – Hainesy Dec 17 '08 at 12:44
vote up 0 vote down

Modules will hopefully solve a few problems. Right now, we can use dot sourcing to get functions, variables, and scripts into a PowerShell session's global scope.

The problem is that this can pollute your session with all kinds of global variables and helper functions that an end user may not want/need directly.

Modules will allow you as an author to build scripts and only make certain functions/variables avaiable to the end user of the module.

They also essentially replace the concept of a PSSnapin. You can use Add-Module Some.dll to add an assembly that has cmdlets in it.

What is really cool is what is called a Module Manifest. This is a hash table that basically specifies all kinds of dependcies as well as author, name, GUID Identifier, and version number. When a user loads a module that has a module manifest, it will check all the dependencies and run any scripts the module author deems necessary.

There should be some decent documentation on these when CTP3 ships.

Hope that helps a bit.

Andy

link|flag
vote up 0 vote down

Windows PowerShell v2.0: TFM (sapienpress.com) has information and samples in one of the chapters. It's available as an ebook which is updated as new CTPs are released. I also blogged about them on ConcentratedTech.com, and there's been discussion on them at PowerShellCommunity.org in the forums.

link|flag
vote up 2 vote down

Here's a little bit of information. http://huddledmasses.org/powershell-modules/

http://blogs.msdn.com/mediaandmicrocode/archive/2008/08/10/microcode-all-about-modules-windows-powershell-ctp2.aspx

Let's hope that the upcoming CTP3 has some useful documentation about modules.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.