# Thursday, March 19, 2009

There’s a bit of a flap going on now around the blogosphere as various vendors, eager to get onto the PowerShell train, are doing the bare minimum to get their product “powershellized.” No one has spent any time reading – or if they did, they weren’t successful in trying to understand it – the Microsoft Command Line Standard.

Modules as Namespaces

That’s right, modules are not as crazy sounding as they seem. They can be used quite simply to just group a load of functions together while allowing easy disambiguation should there be a name collision with another function or cmdlet. It wasn’t always this easy.

Namespaces in PowerShell v1.0

In PowerShell v1.0 it was possible to load two snap-ins that contained identically named commands. This causes PowerShell to spit out an error about ambiguous commands should you try to invoke one. The answer to this was to get the containing snap-in name, and prefix it to the cmdlet name using a backslash as a separator:

$o = Pscx\New-Object Collections.Generic.Dictionary –Of String, Int

As you can see, this lets us call the hypothetical PowerShell Community Extensions version of New-Object to create a generic type. If you want to call the original one, you would have to prefix it like this:

$o = Microsoft.PowerShell.Utility\New-Object Int[] 5

Blech - that’s a bit of a lengthy sentence, but the solution to this is to use an alias. Aliases are found before Cmdlets in the search path:

New-Alias New-Object Microsoft.PowerShell.Utility\New-Object
$o = New-Object Int[] 5 

The reason we need an alias here is because if you just typed the cmdlet without the snap-in prefix, PowerShell v1.0 complains that it doesn’t know which one you want. We forgot to add the mind reader snap-in!

How about functions in PowerShell v1.0? If you dot source a ps1 file that contains functions that already exist in the caller’s session, how do you disambiguate them? Oops! You can’t. They are overwritten. Ouch.

You cannot use the namespace\ prefix for functions in v1 - the support is just not there. However…

Namespaces in PowerShell v2.0

Things are a lot better in this version. Let’s say you have two groups of functions that you use in your business. One for your SharePoint farms, and another set for your Citrix farms. Let’s ignore the perfectly acceptable idea of prefixing the noun to differentiate for the moment and just imagine we have two ps1 files, containing ideally named function with approved verb, simple noun:

# sharepoint functions
function Get-Server {
   # ... gets sharepoint server
}
function Get-Farm {
   # ... gets sharepoint farm
}

And the second script:

# citrix functions
function Get-Server {
    # ... gets citrix server
}
function Get-Farm {
    # ... gets citrix farm
}

If you tried to load these up with via a dot source, one after the other, the functions from the second ps1 would overwrite the first lot. So this is where the wonder world of modules is entered. First step:

After renaming both ps1 files to use the psm1 extension instead, you have created modules of the simplest form. Ignoring the details of how this is deployed (there are several ways – documented on Microsoft and on many blogs, including this one), let's look at how it's loaded and used:

import-module citrix
# Now our functions are loaded. Invocation options:
# assuming no clash, invoke with simple names
get-farm bleh
# load sharepoint module (it also has get-farm)
import-module sharepoint
# ok, sharepoint functions are loaded too, so we have two get-farm commands
# and the last loaded wins, so citrix get-farm is inaccessible through simple syntax, but...
# let's refer specifically to the citrix module function
citrix\get-farm
# and for sharepoint:
sharepoint\get-farm
# and thirdly, if you don't want to use the module qualifier (or "namespace") then you ALSO have the
# choice of applying a prefix on import - this is the primary use case for quick interactive use:
import-module citrix -prefix ctx
# now you can call functions like:
get-ctxfarm
# or even citrix\get-ctxfarm if you so felt like it, but redundant.
# same for sharepoint
import-module sharepoint -prefix sp
get-spfarm

Make sense so far? Unfortunately, as mentioned earlier, in v1.0 the module qualifier (or "namespace") works ONLY for binary commands imported in a Snap-In DLL. Let’s see how that works with get-childitem, a command from one of the preloaded Snap-Ins in PowerShell:

gcm get-childitem | select pssnapin

outputs:

PSSnapIn
--------
Microsoft.PowerShell.Management

Ergo, we invoke it like:
Microsoft.PowerShell.Management\get-childitem
# ... outputs file listing ...

Module Aliasing

Some modules may have longer names that you would be comfortable to type all the time. Thankfully, there is a trick you can do that takes advantage of the fact that modules can be nested. Let’s say you have a module from a vendor that is called something like “Vendor.Division.Product” and it has a cmdlet in it called Get-Thing that happens to clash with another Get-Thing you have loaded. Normally to disambiguate, you have to type:

import-module vendor.division.product
Vendor.Division.Product\Get-Thing

…which is a bit annoying. Instead, wrap the initial import-module statement in a dynamic module where you supply an explicit name for it, and import that instead ;-)

new-module –name product { import-module vendor.division.product } | import-module
# you can now invoke the command like this:
product\get-thing

Any modules that are imported inside a module have their commands automatically exported as if they are part of the root module (unless you control visibility with export-modulemember). Cool, eh?

Have fun!

posted on Thursday, March 19, 2009 10:20:46 AM (Eastern Standard Time, UTC-05:00)  #    Comments [0] Trackback
Related posts:
PowerShell Script Provider
PowerShell ISE Hacking: Change default save encoding to ASCII
PowerShell 2.0 – PSCX Labs: Invoke-Reflector
PowerShell 2.0 – Developer Essentials #1 – Initializing a Runspace with a Module
PowerShell 2.0 – Partial Application of Functions and Cmdlets
PowerShell – The Patchwork of Paths, PSPaths and ProviderPaths

Referred by:
http://twitturls.com/ [Referral]
http://www.google.com/ig [Referral]
http://powertwitter.me/ [Referral]
http://www.facebook.com/home.php? [Referral]
http://twitter.com/home [Referral]
http://www.google.com/reader/view/ [Referral]
http://www.powershellcommunity.org/Blogs/ExternalBlogs.aspx [Referral]
http://www.facebook.com/profile.php?id=627021671&v=feed&stor... [Referral]
http://identi.ca/stej/all [Referral]
http://blog.usepowershell.com/2009/02/adding-custom-properti... [Referral]
powershell (twitter.com) [Referral]
http://www.twittergadget.com/gadget.asp?lang=en&country=us&.... [Referral]
http://blog.usepowershell.com/wp-admin/index.php [Referral]
up time powershell version ctp3 (www.google.com.br) [Referral]
function ctp3 (www.google.com.au) [Referral]
powershell function namespace (www.google.ru) [Referral]
powershell generic functions (www.google.com) [Referral]
http://35.gmodules.com/ig/ifr?url=http://1o4.jp/google/modul... [Referral]
import module powershell (www.google.ca) [Referral]
http://docs.google.com/a/powerscripting.net/Doc?id=dgxpvkr_1... [Referral]
powershell module qualifier (www.google.com) [Referral]
load namespace powershell (www.google.com) [Referral]
http://feeds.feedburner.com/Powerscripting [Referral]
powershell (search.live.com) [Referral]
http://feeds2.feedburner.com/powerscripting [Referral]
http://powerscripting.libsyn.com/index.php?post_id=451075 [Referral]
http://powerscripting.wordpress.com/ [Referral]
http://www.google.com/reader/view/?hl=en&tab=wy [Referral]
http://www.bloglines.com/myblogs_display?sub=74402012&site=1... [Referral]
import-module powershell (www.google.com) [Referral]
powershell module alias (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
import-module powershell (www.google.de) [Referral]
powershell v2 dot source (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
how to get vendor id + powershell (www.google.com) [Referral]
powershell: loading modules (www.google.ie) [Referral]
powershell load sharepoint namespace (search.live.com) [Referral]
powershell load module (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
powershell and google (www.google.fr) [Referral]
powershell module (www.google.co.kr) [Referral]
module powershell (www.google.com) [Referral]
http://powerscripting.wordpress.com/2009/04/04/episode-65-la... [Referral]
The Export-ModuleMember cmdlet can only be called inside a module (www.google.fr) [Referral]
create second citrix farm (www.google.com) [Referral]
Import-Module powershell (www.google.com) [Referral]
powershell load functions in session (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
powershell "new-module" (www.google.com) [Referral]
powershell "import-module" (www.google.com) [Referral]
how do i import module in powershell v1 (www.google.com) [Referral]
powershell cmdlet collection.generic.dictionary (www.google.co.uk) [Referral]
"Import-module" powershell (www.google.de) [Referral]
import-module powershell (www.google.com) [Referral]
http://my.live.com/ [Referral]
powershell ctp3 snapin (www.google.com) [Referral]
module ctp3 (www.google.ca) [Referral]
http://www.google.nl/ig?t=2 [Referral]
powershell import-module error (www.google.de) [Referral]
powershell module namespace (www.google.com) [Referral]
powershell cmdlet name disambiguation (www.google.co.uk) [Referral]
can't dot source powershell (www.google.com) [Referral]
Powershell 2.0 CTP 3 rename files (www.google.com) [Referral]
powershell import-module (www.kumo.com) [Referral]
powershell practice (search.yahoo.com) [Referral]
powershell 2.0 modules (search.live.com) [Referral]
import-module powershell 2.0 (www.google.be) [Referral]
"import-module" powershell (www.google.com) [Referral]
powershell 2.0 2009 (www.google.de) [Referral]
load .net module powershell (www.google.com) [Referral]
powershell 2.0 import .net module (www.google.co.uk) [Referral]
http://snipr.com/eohid [Referral]
dot source powershell (www.google.com.sg) [Referral]
powershell import function (www.google.de) [Referral]
powershell Use-Namespace (www.google.ch) [Referral]
powershell cmdlets name collision (www.google.com) [Referral]
powershell import functions (www.google.com) [Referral]
powershell sub module (www.kumo.com) [Referral]
powershell load module (www.google.com.hk) [Referral]
powershell 2 import-module (www.google.com) [Referral]
sharepoint powershell snap-in (www.kumo.com) [Referral]
powershell sharepoint module (www.google.com.sg) [Referral]
powershell load namespace (www.google.com) [Referral]
PowerShell Module (www.google.com) [Referral]
powershell import module (www.kumo.com) [Referral]
powershell ctp3 import-module (www.google.com) [Referral]
BITS Module for PowerShell 2.0 CTP3 (www.google.com) [Referral]
powershell module export alias (www.google.com) [Referral]
powershell 2.0 dot sourcing (www.google.com) [Referral]
powershell load functions (www.google.com) [Referral]
powershell v2 namespace (www.google.com) [Referral]
powershell import module (www.google.com) [Referral]
powershell dot import (www.google.co.nz) [Referral]
powershell 2 ctp3 Biztalk (www.google.com) [Referral]
powershell import-module (www.google.de) [Referral]
powershell import-module (www.bing.com) [Referral]
import a module + powershell (www.google.nl) [Referral]
powershell 2.0 commands (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
powershell load module (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
powershell import statement (www.google.com) [Referral]
powershell import-module (www.bing.com) [Referral]
powershell importing functions (www.google.it) [Referral]
Import-Module powershell (www.google.com) [Referral]
powershell module namespace (www.google.com) [Referral]
powershell 2.0 (www.bing.com) [Referral]
powershell module alias (www.google.com) [Referral]
call function from module powershell (www.google.com) [Referral]
powershell how to load functions (www.bing.com) [Referral]
powershell 2.0 and snap-ins (www.google.com) [Referral]
powershell import-module (www.google.fr) [Referral]
powershell 2.0 import-module (www.google.com) [Referral]
powershell 2.0 commands (www.google.com) [Referral]
creating modules in powershell v1 (www.google.com) [Referral]
http://pscx.codeplex.com/Wiki/View.aspx?title=News%20Feeds [Referral]
powershell modules ctp3 (www.google.com) [Referral]
powershell module ctp3 (www.bing.com) [Referral]
dotsource powershell (www.google.ch) [Referral]
module powershell (www.google.com) [Referral]
load powershell module (www.google.com) [Referral]
http://technorati.com/posts/wLgtbTz6bpvNyK5eMOHg%2BumeZAGDfo... [Referral]
powershell module alias (www.google.co.uk) [Referral]
powershell load functions (www.google.com) [Referral]
command for citrix farm load (www.google.co.in) [Referral]
powershell v2 namespace (www.google.co.uk) [Referral]
powershell import-module (www.bing.com) [Referral]
modules in powershell (www.bing.com) [Referral]
import-module powershell (www.bing.com) [Referral]
modules in powershell (www.google.co.in) [Referral]
powershell new-object (www.bing.com) [Referral]
powershell 2.0 snap ins (www.google.com) [Referral]
import-module powershell (www.bing.com) [Referral]
powershell 2.0 cannot resolve alias (www.google.co.in) [Referral]
powershell 2.0 modules (www.bing.com) [Referral]
powershell snap in module (www.google.com) [Referral]
powershell module snap-in difference (www.google.com) [Referral]
generics powershell ctp3 (www.bing.com) [Referral]
load powershell sharepoint dll (www.google.com) [Referral]
powershell dot source (www.google.com) [Referral]
powershell vendors (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
import-module powershell (www.bing.com) [Referral]
Get Loaded Modules powershell (www.google.de) [Referral]
powershell dot source (www.bing.com) [Referral]
import-module load snapin (search.conduit.com) [Referral]
new-module powershell (www.google.com) [Referral]
Modules in PowerShell 2.0 (search.yahoo.com) [Referral]
powershell 2.0 modules load (www.google.com) [Referral]
PowerShell user function module load (www.google.com) [Referral]
"import-module" powershell (www.google.com) [Referral]
"powershell 2.0" eventing (www.google.com) [Referral]
powershell v2 load cmdlets (www.google.be) [Referral]
powershell modules "$error" command line (www.google.co.uk) [Referral]
powershell new-module (www.bing.com) [Referral]
powershell vendors (www.google.com) [Referral]
"import-module" powershell 2.0 (www.google.com) [Referral]
powershell generics (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
powershell import-module module file (www.google.com) [Referral]
powershell load function .ps1 (www.google.de) [Referral]
powershell module import-module (www.bing.com) [Referral]
generics powershell (www.google.com) [Referral]
load powershell functions (www.google.com) [Referral]
import-module powershell (www.google.fr) [Referral]
Import-Module powershell (www.google.ca) [Referral]
powershell generic collection (www.google.com) [Referral]
cmdlet can only be called from inside a module (www.google.ch) [Referral]
renaming files with powershell with overwrite (www.google.com) [Referral]
powershell module export alias (www.google.com) [Referral]
powershell module import Prefix (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
powershell (www.bing.com) [Referral]
Load a snapin as a module powershell (www.bing.com) [Referral]
powershell module (www.google.com) [Referral]
exportedaliases ctgp3 (www.google.se) [Referral]
import-module powershell (www.google.co.in) [Referral]
powershell create module (www.google.com) [Referral]
powershell 2.0 generics (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
http://untiny.me/ [Referral]
powershell load snapin (www.bing.com) [Referral]
powershell import-module (www.bing.com) [Referral]
powershell loading namespace (www.google.com) [Referral]
import .net namespaces in powershell (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
import in powershell (www.google.com) [Referral]
load functions in powershell (www.google.com) [Referral]
sharepoint powershell snap ins (www.google.ru) [Referral]
Poweshell module vs Snap-in (www.google.com.sg) [Referral]
Powershell import .net namespace (www.google.de) [Referral]
powershell generics (www.google.com.au) [Referral]
powershell 2.0 load functions (www.google.com) [Referral]
powershell dot source (www.google.com) [Referral]
powershell cmdlet name clashes (www.google.com) [Referral]
powershell load (www.google.com) [Referral]
generics powershell 2.0 (www.bing.com) [Referral]
loading namespace powershell (www.google.nl) [Referral]
powershell 2.0 ctp3 (www.google.co.uk) [Referral]
load powershell function (www.google.com) [Referral]
powershell 2.0 commands (www.google.com) [Referral]
dot source powershell function (www.google.com) [Referral]
powershell preload snapins (www.google.com) [Referral]
powershell load sharepoint snapin (www.google.com) [Referral]
powershell module collision (www.bing.com) [Referral]
powershell Import-Module (www.google.de) [Referral]
powershell module prefix (www.google.be) [Referral]
powershell 2 generic.dictionary[ (www.google.com) [Referral]
powershell ., dot (www.google.ru) [Referral]
powershell import-module (www.bing.com) [Referral]
powershell import (www.google.com) [Referral]
what is a powershell function versus a powershell module (www.google.com) [Referral]
calling a function in PowerShell ver 2.0 (www.google.com) [Referral]
load functions in powershell (www.google.se) [Referral]
load Sharepoint DLL powershell (www.google.com) [Referral]
powershell create module (www.google.ch) [Referral]
powershell generics (www.google.com) [Referral]
powershell import-module v1.0 (www.bing.com) [Referral]
Nttp. // www.google.com/m/support? Output =wmi (www.google.com) [Referral]
powershell 2.0 Import-Module (www.google.com) [Referral]
creating powershell modules (www.google.com) [Referral]
import-module powershell (www.google.de) [Referral]
powershell rename file overwrite (www.google.de) [Referral]
powershell ctp3 import module (www.google.com) [Referral]
PowerShell Community Extensions 2.0 ctp3 module (www.google.com) [Referral]
powershell module vs snapin (www.bing.com) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module (www.bing.com) [Referral]
powershell modules ctp3 (www.google.com) [Referral]
modules powershell 2.0 (www.google.com) [Referral]
powershell load module (www.google.nl) [Referral]
import-module powershell 2 (www.google.co.uk) [Referral]
powershell 2.0 import-module prefix (search.conduit.com) [Referral]
powershell module (www.google.com) [Referral]
powershell load function .ps1 (www.google.com) [Referral]
module powershell (www.google.fr) [Referral]
powershell import module (www.google.it) [Referral]
powershell import module (www.google.it) [Referral]
powershell import-modules (www.google.it) [Referral]
import ad module powershell (www.google.com) [Referral]
cmdlet snapin module name backslash (www.google.com) [Referral]
how to load powershell module (www.google.com) [Referral]
http://www.google.com.au/ [Referral]
http://delicious.com/save?url=http%3A%2F%2Fwww.nivot.org%2F2... [Referral]
http://www.worio.com/ [Referral]
crate module powershell (www.google.ch) [Referral]
powershell dot source function (www.google.com) [Referral]
powershell rename file and overwrite (www.google.com) [Referral]
powershell dot sourcing (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
powershell module alias (www.google.co.nz) [Referral]
powershell dot source (www.bing.com) [Referral]
http://delicious.com/strince [Referral]
powershell 2.0 snapin (www.google.com) [Referral]
powershell ctp3 module example (www.google.com) [Referral]
powershell +ambiguous snap ins (www.google.com) [Referral]
Export-ModuleMember & "from inside a module" (www.google.com) [Referral]
Export-Module Member & "can only be called from inside a module" (www.google.com) [Referral]
oisin (www.google.com) [Referral]
powershell -- how to load functions (www.google.com) [Referral]
load module powershell (www.google.co.uk) [Referral]
http://www.outertech.com/ [Referral]
Get Farm Cmdlet Error (www.google.com) [Referral]
powershell new-object (www.bing.com) [Referral]
loading powershell snapin as module (www.bing.com) [Referral]
Power Shell dot-source (www.google.kz) [Referral]
citrix farm commands (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com) [Referral]
"The Export-ModuleMember cmdlet can only be called from inside a module." (www.google.com) [Referral]
"cmdlet can only be called from inside a module." (www.google.com) [Referral]
powershell citrix getserver (www.google.com) [Referral]
import-module ctp3 (www.google.ca) [Referral]
powershell dot source (www.google.com) [Referral]
powershell load module (www.bing.com) [Referral]
The Export-ModuleMember cmdlet can only be called inside a module. (www.google.fr) [Referral]
"The Export-ModuleMember cmdlet can only be" (www.google.fr) [Referral]
import dll powershell (www.google.fr) [Referral]
import-module powershell snapin (www.google.com) [Referral]
powershell load functions (www.google.com) [Referral]
powershell V2 loading snapins (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
powershell snapin (www.bing.com) [Referral]
load powershell functions (www.google.com) [Referral]
powershell load system modules (www.google.com) [Referral]
powershell import dll (www.google.com.au) [Referral]
powershell namespace prefix (www.google.com) [Referral]
sharepoint powershell2 (www.google.de) [Referral]
import-module sharepoint (www.google.de) [Referral]
module powershell (www.google.fr) [Referral]
powershell Import-Module (www.google.com) [Referral]
"powershell 2.0" and importing modules (www.google.com) [Referral]
powershell cmdlet name collision (www.bing.com) [Referral]
powershell module search path (www.google.com) [Referral]
powershell 2.0 generics (www.google.com) [Referral]
powershell 2.0 generics (www.google.com) [Referral]
http://snipr.com/site/404checker [Referral]
PowerShell import-module how (www.google.ca) [Referral]
listing powershell modules (www.bing.com) [Referral]
powershell module load path (www.bing.com) [Referral]
powershell loading a module (www.bing.com) [Referral]
powershell sub modules (www.google.com) [Referral]
powershell module example (www.google.com) [Referral]
snapin modul powershell (www.google.cz) [Referral]
Import-Module dll powershell (www.google.de) [Referral]
powershell 2.0 loading module (www.google.com) [Referral]
powershell module example (www.google.com) [Referral]
powershell "import modules" (www.google.be) [Referral]
powershell module path ctp3 (www.google.ca) [Referral]
powershell module ctp3 (www.google.ca) [Referral]
powershell binary module "export alias" (www.google.cz) [Referral]
powershell loadmodule version (www.google.co.nz) [Referral]
powershell V2 CTP3 snap-in (www.google.fr) [Referral]
powershell snapin vs module difference (www.google.pl) [Referral]
powershell import module (www.google.de) [Referral]
powershell module example (www.google.com) [Referral]
powershell import module (www.google.ca) [Referral]
powershell get vendorid (www.google.com) [Referral]
load module powershell 2.0 (www.google.com) [Referral]
Export-ModuleMember : The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.ca) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.ca) [Referral]
how to load sharepoint powershell snapin (www.bing.com) [Referral]
powershell script modules (www.google.com) [Referral]
powershell 2.0 modules (www.bing.com) [Referral]
Module powershell (www.google.de) [Referral]
powershell imnport-module (www.google.com) [Referral]
powershell module namespace (www.google.com) [Referral]
powershell sub function (www.google.com) [Referral]
powershell new-module (www.google.com) [Referral]
loading a module in Powershell (www.bing.com) [Referral]
powershell 2.0 snapins (www.google.com) [Referral]
powershell, import module (www.google.com) [Referral]
powershell load namespace command (www.google.de) [Referral]
import-module powershell (www.google.com) [Referral]
http://www.nigma.ru/index.php?s=powershell+Import-module&t=w... [Referral]
powershell import modules (www.google.com) [Referral]
powershell 2.0 dll version (www.google.com) [Referral]
powershell module export type (www.google.com) [Referral]
powershell load modules (www.google.com) [Referral]
powershell v2 ctp3 error loading (www.google.com) [Referral]
powershell load function (www.google.com) [Referral]
powershell import module from path (www.google.co.uk) [Referral]
import-module powershell (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
snapin vs module powershell (www.bing.com) [Referral]
powershell v2 dot source (www.google.ca) [Referral]
load powershell modules (www.google.be) [Referral]
http://www.baidu.com/s?bs=powershell+2.0+Import-Module&f=8&w... [Referral]
import module powershell (www.google.jo) [Referral]
powershell module search path (www.google.com) [Referral]
powershell v2 CTP3 modules binary (www.google.com) [Referral]
powershell snap in module (www.google.nl) [Referral]
load functions in powershell (www.google.co.uk) [Referral]
import-module powershell (www.google.com) [Referral]
import-module + powershell (www.google.com.eg) [Referral]
nttp//www.baidu.com (www.google.com.tw) [Referral]
the export module member cmdlet can only be called from inside a module (www.google.co.in) [Referral]
powershell import module vs dot source (www.google.com) [Referral]
powershell new-module (www.google.com) [Referral]
powershell module exported function listing (www.bing.com) [Referral]
how to load powershell function (www.google.com) [Referral]
"Powershell" + Citrix (search.yahoo.com) [Referral]
load module powershell (www.google.com) [Referral]
Export-ModuleMember cmdlet can only be called from inside a module. (www.bing.com) [Referral]
import-module powershell (www.google.com) [Referral]
powershell modules (www.google.com) [Referral]
powershell command in module (www.google.co.uk) [Referral]
powershell 2 modules (www.google.com) [Referral]
powershell spfarm (www.google.com) [Referral]
powershell 2.0 generic types (www.google.co.uk) [Referral]
load powershell module (www.google.com) [Referral]
PowerShell Sharepoint snapin (www.google.pt) [Referral]
powershell import-module (www.google.no) [Referral]
how to load module powershell (www.google.nl) [Referral]
powershell find imported modules (www.google.fr) [Referral]
powershell 2.0 ctp 3 (www.google.com) [Referral]
powershell module (www.google.be) [Referral]
powershell import-module (www.google.de) [Referral]
powershell script modules (www.google.com) [Referral]
powershell import-module error (www.google.com) [Referral]
load powershell module (www.google.se) [Referral]
Import-Module powershell (www.google.es) [Referral]
import-module powershell (www.google.com.my) [Referral]
powershell generics (www.google.co.nz) [Referral]
powershell import module (www.google.com) [Referral]
sharepoint snapin (www.google.com) [Referral]
New-Object with generics powershell v2 (www.bing.com) [Referral]
powershell load functions (www.google.com) [Referral]
powershell asynchronous uptime (www.bing.com) [Referral]
powershell module search path (www.bing.com) [Referral]
import-module powershell 2.0 (www.google.com.br) [Referral]
import module powershell (www.google.com) [Referral]
Powershell Import-Module errors (www.google.ca) [Referral]
Windows PowerShell 2.0 loading modules (www.bing.com) [Referral]
powershell modules (www.google.com) [Referral]
powershell import-module sub modules (www.google.com) [Referral]
powershell sub module (www.bing.com) [Referral]
"can only be called from inside a module" (www.google.com) [Referral]
powershell import dll (www.google.com) [Referral]
import module powershell (www.google.com) [Referral]
powershell 2.0 generic collections (www.google.com) [Referral]
powershell .net load module (www.google.com) [Referral]
powershell export-modulemember (www.google.ca) [Referral]
dot-source powershell "import-module" (www.google.com) [Referral]
powershell import module dll (www.google.co.uk) [Referral]
http://127.0.0.1/iframe?url=http://www.nivot.org/2009/03/19/... [Referral]
powershell import-module (www.google.de) [Referral]
Import Module "PowerShell v1" (www.google.com) [Referral]
powershell Import-Module (www.google.com) [Referral]
powershell check loaded modules (www.google.com.au) [Referral]
nttp/www.google.com (www.bing.com) [Referral]
power shell 2 import bits module (www.google.hr) [Referral]
automatically import module powershell (www.google.co.id) [Referral]
using generics powershell (www.google.com.sg) [Referral]
powershell import-module (www.google.com) [Referral]
powershell 2.0 module path (www.google.com) [Referral]
load-module powershell (www.google.com) [Referral]
module snapin powershell (www.google.com) [Referral]
powershell 2.0 generics (www.google.co.uk) [Referral]
powershell load modules command line (www.google.co.uk) [Referral]
powershell 2.0 modules (www.bing.com) [Referral]
powershell snapin prefix (www.google.ru) [Referral]
http://www.backlinkwatch.com/index.php [Referral]
module powershell (www.google.fr) [Referral]
load script powershell dotsourcing (www.google.cz) [Referral]
loadmodules windows 2008 powershell (www.google.co.il) [Referral]
where are powershell 2.0 snapins (www.google.com) [Referral]
powershell modul calling module (www.google.com) [Referral]
powershell dot source (www.bing.com) [Referral]
powershell import-module (www.google.com) [Referral]
Export-ModuleMember cmdlet can only be called inside a module (www.google.cz) [Referral]
powershell import-module bits transfer (www.google.dk) [Referral]
http://yandex.ru/yandsearch?text=Import-Module+PowerShell&lr... [Referral]
powershell can't find nested function in exported module member (www.google.com.au) [Referral]
PowerSHell 2.0 namespace PSCX (www.google.co.jp) [Referral]
powershell get vendor-id (www.google.cz) [Referral]
powershell import-module (www.google.cn) [Referral]
import-module powershell (www.google.co.uk) [Referral]
powershell where do modules live (www.google.com) [Referral]
powershell Import-Module (www.google.nl) [Referral]
powershell module (www.google.nl) [Referral]
powershell modules (www.bing.com) [Referral]
powershell module (www.google.com) [Referral]
powershell import-module command line (www.google.com.au) [Referral]
powershell sub (www.bing.com) [Referral]
import-module powershell sharepoint (www.bing.com) [Referral]
powershell import module (www.google.com) [Referral]
NTTPWWW.GOOGIE.CH (www.google.ch) [Referral]
powershell v1 modules (www.google.co.uk) [Referral]
http://yandex.ru/yandsearch?text=import-module+PowerShell%5C... [Referral]
spit powershell output to asp (www.bing.com) [Referral]
powershell+load namespace (www.google.co.uk) [Referral]
powershell module path (www.google.com) [Referral]
"the Export-ModuleMember cmdlet can only be called from inside a module." (www.google.ch) [Referral]
powershell module (www.google.com.au) [Referral]
import powershell module (www.google.com.au) [Referral]
powershell module path (www.bing.com) [Referral]
powershell 2.0 snapins (www.ask.com) [Referral]
powershell import module (www.bing.com) [Referral]
create a powershell binary module (www.bing.com) [Referral]
loading PowerShell Modules (www.google.com.au) [Referral]
PowerShell .net generics (www.google.com) [Referral]
powershell Import-Module error (www.google.com) [Referral]
Import-module powershell v1.0 (www.google.co.uk) [Referral]
powershell 2.0 generic types (www.google.com) [Referral]
powershell 2.0 import-module (www.bing.com) [Referral]
powershell modules (www.google.com) [Referral]
http://yandex.ru/yandsearch?stype=&nl=0&text=powershell+load... [Referral]
powershell v2 import system modules (www.google.ch) [Referral]
powershell module (www.google.ch) [Referral]
powershell import module (www.google.com) [Referral]
module powershell (www.google.fr) [Referral]
powershell import-module (www.google.com) [Referral]
powershell dot net enterprise (www.google.be) [Referral]
powershell 2.0 module (www.bing.com) [Referral]
powershell "dot source" (www.bing.com) [Referral]
Nttp/www.facebook.com (www.google.co.id) [Referral]
import modules in powershell (www.google.co.in) [Referral]
powershell snapin to modfule (www.google.nl) [Referral]
load powershell module (www.google.ch) [Referral]
powershell v1 import-module (www.google.lu) [Referral]
powershell 2 import-module (www.google.de) [Referral]
powershell using modules (www.google.nl) [Referral]
powershell modules + automatically load (www.google.co.uk) [Referral]
powershell modules namespace (www.google.com) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com) [Referral]
powershell script module (www.google.com) [Referral]
powershell 2.0 generics (www.google.com) [Referral]
powershell namespace collision (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
load powershell module (www.google.com) [Referral]
powershell module alias (www.google.co.nz) [Referral]
powershell load module (www.google.fr) [Referral]
load powershell module (www.google.nl) [Referral]
powershell ctp3 import-module -global (www.bing.com) [Referral]
powershell dynamically loaded function (www.google.com) [Referral]
powershell dynamically loaded fuction (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
load module in powershell (www.google.com.sg) [Referral]
load module dll in powershell (www.google.com.sg) [Referral]
powershell module disambiguate (www.google.com) [Referral]
powershell import-module (www.google.com.au) [Referral]
powershell import dll (www.google.com) [Referral]
powershell create module (www.google.pl) [Referral]
powershell generics (www.google.cz) [Referral]
powershell loading modules (www.google.co.in) [Referral]
docs.google.ca (www.google.com) [Referral]
nttpwww.googie.com..au/ (www.google.com.au) [Referral]
powershell snapin better module (www.google.com) [Referral]
powershell create .dll module (www.bing.com) [Referral]
load powershell function (www.google.com) [Referral]
powershell 2.0 namespace (www.bing.com) [Referral]
import ctp3 modules powershell (www.google.com) [Referral]
powershell Import .net type (www.google.co.in) [Referral]
powershell how to check if something is already dot sourced (www.bing.com) [Referral]
powershell 2.0 snapins (www.google.com) [Referral]
Creating a powershell module + Powershell 2.0 (www.google.co.in) [Referral]
powershell import-module (www.google.ca) [Referral]
powershell module prefix (www.google.com) [Referral]
module full name prefix powershell (www.google.cz) [Referral]
powershell system modules (www.google.com) [Referral]
powershell import-module path (www.google.de) [Referral]
powershell 2.0 import module (www.google.co.uk) [Referral]
powershell import module that's a dll (www.google.co.uk) [Referral]
PowerShell 2.0 New-Module example (www.google.nl) [Referral]
powershell importdll (www.google.com) [Referral]
powershell and nested functions (www.google.com) [Referral]
powershell 2.0 import ad modules (www.google.com) [Referral]
powershell 2.0 modules (www.google.com) [Referral]
powershell "sub-module" (www.google.ru) [Referral]
powershell .net module (www.google.co.uk) [Referral]
create module powershell (www.google.com) [Referral]
powershell "generics" cmdlet (www.google.co.in) [Referral]
Export-ModuleMember cmdlet can only be called inside a module (www.google.co.in) [Referral]
Powershell CTP3 Modules (www.google.com) [Referral]
sharepoint powershell snapin (www.bing.com) [Referral]
Powershell 2.0 module Import-module (www.google.co.jp) [Referral]
powershell Module command (www.google.com) [Referral]
importing modules inside another module, powershell modules (www.bing.com) [Referral]
nivot requiredmodules (www.google.com) [Referral]
powershell import-module (www.google.co.uk) [Referral]
powershell modules namespace export-module (www.google.co.uk) [Referral]
powershell module (www.google.com.eg) [Referral]
powershell 2.0 create module (www.google.com) [Referral]
powershell "export-modulemember" (www.google.de) [Referral]
nttp www google com (www.bing.com) [Referral]
loading a module in powershell 2.0 (www.google.com) [Referral]
how to import system module in powershell 2.0 (www.google.com) [Referral]
powershell import system modules (www.google.com) [Referral]
powershell generic type create (www.google.nl) [Referral]
powershell binary module (www.google.com) [Referral]
new module powershell (www.google.fr) [Referral]
*.dll powershell (www.google.fr) [Referral]
powershell v1 load microsoft.sharepoint (www.google.com) [Referral]
sharepoint powershell module (www.google.gr) [Referral]
powershell import module (www.google.at) [Referral]
powershell "load cmdlets" (www.google.nl) [Referral]
powershell import-module and export (www.google.com) [Referral]
PowerShell Import DLL (www.google.cn) [Referral]
powershell import-module all (www.google.at) [Referral]
powershell generic collection (www.google.com) [Referral]
dot source powershell load function (www.google.co.uk) [Referral]
nttpwww (www.bing.com) [Referral]
powershell + nested modules (www.google.be) [Referral]
powershell load module (www.google.co.uk) [Referral]
load powershell modules (www.google.co.uk) [Referral]
load powershell module (www.google.com) [Referral]
powershell import system modules (www.google.com) [Referral]
powershell dot source v2 (www.google.com) [Referral]
load system modules powershell (www.google.com) [Referral]
powershell, functions, module (www.google.com) [Referral]
powershell 2.0 import-module (www.bing.com) [Referral]
powershell rename overwrite (www.google.com) [Referral]
powershell import binary module example (www.google.com) [Referral]
powershell module snapin (www.google.com) [Referral]
powershell "import-module" server 2008 -R2 (www.google.dk) [Referral]
powershell 2.0 modules (www.google.ru) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.bing.com) [Referral]
"Powershell 2.0 modules" (www.bing.com) [Referral]
powershell load dll (www.google.nl) [Referral]
module powershell (www.google.com) [Referral]
powershell modules 2.0 add-module psm1 2009 (www.google.com) [Referral]
get-module Export-ModuleMember nivot ink (www.google.com) [Referral]
powershell import dll (www.google.com) [Referral]
+powershell +module +snapin (www.google.com) [Referral]
powershell module load path (www.google.at) [Referral]
powershell load modul (www.google.ch) [Referral]
powershell module required modules (www.google.com) [Referral]
function in a module powershell (www.google.com) [Referral]
sharpeoint powershell modules (www.google.gr) [Referral]
Find module path,powershell 2.0 (www.google.co.in) [Referral]
powershell 2.0 versus CTP (www.bing.com) [Referral]
power shell 2 Import-Module example (www.google.co.il) [Referral]
Import module cmdlet dll (www.google.co.in) [Referral]
citrix powershell module (www.google.de) [Referral]
powershell 2.0 generic (www.google.com) [Referral]
powershell + import function (www.google.com) [Referral]
powershell 2.0 import-module (www.google.com.hk) [Referral]
powershell modules not loaded (www.google.de) [Referral]
powershell load module automatically (www.google.ca) [Referral]
powershell load module (www.google.be) [Referral]
powershell import-module session (www.google.de) [Referral]
PowerShell load module resolve (www.google.com) [Referral]
PowerShell 2.0 module (www.bing.com) [Referral]
powershell automatically load modules (www.google.com) [Referral]
powershell "module" (www.google.co.th) [Referral]
powershell import functions (www.google.com) [Referral]
import module powershell (www.google.fr) [Referral]
export alias from powershell module (www.google.ca) [Referral]
powershell commands for module (www.google.com) [Referral]
powershell 2.0 Modules (www.bing.com) [Referral]
what .extension do you save file for PowerShell V2 (CTP3) (www.google.com) [Referral]
load PowerShell module (www.google.com) [Referral]
powershell 2.0 snap in sharepoint 2007 (www.google.at) [Referral]
powershell v1 import-module (www.google.be) [Referral]
calling functions from powershell module (www.google.co.uk) [Referral]
powershell modules (delicious.com) [Referral]
"powershell 2" Add-PSSnapin Microsoft.SharePoint.Powershell (www.google.se) [Referral]
powershell import-module example (www.google.co.uk) [Referral]
powershell how to load module (www.google.pl) [Referral]
import snapin as module (www.google.co.in) [Referral]
Export-ModuleMember : The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com) [Referral]
module powershell (www.google.com) [Referral]
"snap in" powershell (www.google.com) [Referral]
powershell load module sharepoint (www.google.nl) [Referral]
powershell function name backslash (www.google.de) [Referral]
powershell dotsource (www.google.com) [Referral]
load module bits powershell (www.google.com) [Referral]
powershell import module (www.google.com) [Referral]
powershell generics (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
powershell check loaded module (www.google.com) [Referral]
load powershell module (www.bing.com) [Referral]
powershell add-module (www.google.com) [Referral]
powershell sub-module (www.google.com) [Referral]
"PowerShell 2.0" sharepoint 2007 supported or not (www.bing.com) [Referral]
powershell script namespace .net import (www.bing.com) [Referral]
Export-ModuleMember : The Export-ModuleMember cmdlet can only be called (www.google.com) [Referral]
http://blog.cutter.com/author/kenrau [Referral]
powershell automatically load module (www.bing.com) [Referral]
lister module powershell (www.google.fr) [Referral]
module "new-alias" (www.bing.com) [Referral]
powershell import module alias (www.google.nl) [Referral]
powershell load vmware module (www.google.fr) [Referral]
powershell v2 generics (www.google.com) [Referral]
powershell import-module dll (www.google.de) [Referral]
commandlet vs module (www.bing.com) [Referral]
import-module in script powershell (www.google.com) [Referral]
powershell modules vs sourcing (www.google.com) [Referral]
http://powerscripting.wordpress.com/page/7/ [Referral]
powershell namespace (www.google.com) [Referral]
"The Export-ModuleMember cmdlet can only be called from inside a module" (www.google.nl) [Referral]
powershell load module always (www.google.fr) [Referral]
powershell 2.0 profile load module (www.google.fr) [Referral]
add sharepoint 3.0 snapin powershell 2.0 (www.google.se) [Referral]
powershell systemmodule importieren (www.google.de) [Referral]
"powershell 2.0" using moule (www.google.de) [Referral]
powershell 2 module (www.google.hr) [Referral]
http://translate.google.hr/translate?hl=hr&langpair=en%7Chr&... [Referral]
powershell load modules on start (www.google.com) [Referral]
powershell load RDS module (www.google.com) [Referral]
load function + powershell 2.0 (www.google.ca) [Referral]
powershell module (www.google.com) [Referral]
Can't find "Microsoft.SharePoint.PowerShell" DLL (www.google.com) [Referral]
powershell 2.0 call functions (www.google.com) [Referral]
http://googie.de/ig (www.google.com) [Referral]
powershell module psm1 (www.google.com) [Referral]
powershell dot sourcing vs modules (www.google.com) [Referral]
powershell import dll (www.google.com) [Referral]
powershell 2.0 snapins (www.google.com) [Referral]
powershell import-module (www.google.co.uk) [Referral]
powershell sharepoint import (www.google.de) [Referral]
http://www.netvibes.com/carisoprodol [Referral]
powershell nested module (www.google.cz) [Referral]
module powershell (www.google.fr) [Referral]
powershell modules namespace (www.google.com) [Referral]
powershell 2.0 module (www.bing.com) [Referral]
bits module powershell (www.google.com) [Referral]
load module powershell (www.google.com) [Referral]
powershell import-module (www.google.com.au) [Referral]
powershell import module (www.google.com) [Referral]
powershell module RequiredSnapins (www.google.cz) [Referral]
powershell load-module failoverclusters ResourceUnavailable (www.google.de) [Referral]
import snap in powershell (www.google.de) [Referral]
powershell 2 import-module (www.google.com) [Referral]
powershell 2.0 modules (www.google.fr) [Referral]
wrap pssnapin in module (www.google.gr) [Referral]
powershell import module path (www.google.co.uk) [Referral]
powershell import sharepoint dll (www.google.ca) [Referral]
powershell import-module (www.google.ca) [Referral]
powershell binary module (www.google.at) [Referral]
powershell 2.0 modulepath (www.google.de) [Referral]
nttp.//www google. / (www.bing.com) [Referral]
powershell import-module (www.google.co.in) [Referral]
dot-source script module powershell .psm1 (www.google.com) [Referral]
Powershell 2.0 CTP 3 (www.google.com) [Referral]
import-module -assembly powershell (www.bing.com) [Referral]
powershell nested functions (www.google.de) [Referral]
nttp www google (www.bing.com) [Referral]
powershell import module (www.google.fr) [Referral]
powershell export-module Alias (www.google.com) [Referral]
load powershell modules (www.google.com) [Referral]
powershell 2.0 create generic dictionary (www.google.ru) [Referral]
powershell nested modules only (www.google.com) [Referral]
cmdlet can only be called from inside a module (www.google.com) [Referral]
nested modules in powershell (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
http://www.baidu.com/s?tn=index88_pg&bs=http+www.chinapost.c... [Referral]
powershell module example (www.google.com) [Referral]
powershell import-module -passthru (www.google.com) [Referral]
powershell Import-Module example (www.google.ca) [Referral]
powershell import-module binary (www.google.ca) [Referral]
powershell module assembly (www.google.com) [Referral]
options for loading powershell modules (www.google.ie) [Referral]
powershell import-module from a different path (www.google.com) [Referral]
powershell nested functions (www.google.com) [Referral]
powershell 2.0 ctp3 (www.google.com.tw) [Referral]
finding module path in powershell (www.google.co.nz) [Referral]
powershell modules RDS (www.google.com) [Referral]
powershell module snapin (www.google.com.au) [Referral]
PowerShell 2.0 CTP3 (www.google.fr) [Referral]
modules powershell (www.google.pl) [Referral]
powershell load module (www.google.com) [Referral]
powershell load module (www.google.ru) [Referral]
imports statement powershell (www.bing.com) [Referral]
powershell dotsource from module (www.google.ca) [Referral]
powershell import-module sharepoint (www.google.se) [Referral]
powershell nested functions (www.google.com) [Referral]
powershell 2.0 generics (www.google.com) [Referral]
powershell systemmodules (www.bing.com) [Referral]
import-module powershell (www.google.fr) [Referral]
powershell load .net namespaces (www.google.com) [Referral]
powershell snapin v2 script (www.bing.com) [Referral]
import-module powershell (www.google.cz) [Referral]
Import-Module powershell (www.google.fr) [Referral]
sharepoint power shell CTP3 (www.google.com.hk) [Referral]
import powershell modules (www.google.com) [Referral]
load-module powershell (www.bing.com) [Referral]
powershell dot source global (www.bing.com) [Referral]
powershell module export alias (www.google.com) [Referral]
powershell new-module -scriptblock (www.google.de) [Referral]
psm1 modules (www.bing.com) [Referral]
generics in powershell 2 (www.google.co.uk) [Referral]
how to import-module qad powershell (www.google.com) [Referral]
powershell load .net assembly module (www.google.com) [Referral]
powershell load module (www.google.com) [Referral]
load module powershell (www.google.nl) [Referral]
automatically load powershell snap ins (www.google.com) [Referral]
powershell import-module path (www.google.com) [Referral]
powershell generic dictionary (www.google.ie) [Referral]
"import-module -assembly" (www.google.com) [Referral]
powershell load all modules (www.google.com) [Referral]
powershell 2 import module (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
powershell import-module example (www.google.es) [Referral]
loading module powershell (www.google.be) [Referral]
powershell import-module export (www.google.com) [Referral]
powershell snapin vs module (www.google.com) [Referral]
powershell snapin modules (www.google.com) [Referral]
http://guide.opendns.com/controller.php?url=nttp%3A%2F%2Fwww... [Referral]
where load powershell modules (www.google.com) [Referral]
calling generic functions powershell (www.bing.com) [Referral]
+powershell +dotsourcing (www.google.de) [Referral]
powershell module (www.google.com) [Referral]
binary module powershell (www.google.at) [Referral]
powershell snapin module (www.google.no) [Referral]
microsoft.powershell.utility (www.bing.com) [Referral]
http://www.baidu.com/s?tn=hkxs_dg&bs=nttp%3B%2F%2Fwww.baidu.... [Referral]
http://www.baidu.com/baidu?word=nttp;//www.baidu.com&tn=hkxs... [Referral]
powershell binary module (www.google.com) [Referral]
powershell 2.0 modules (www.google.co.uk) [Referral]
how to load module powershell (www.google.fr) [Referral]
powershell module vs snapin (www.google.com) [Referral]
import modules in powershell 2 (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
powershell modules examples (www.google.com) [Referral]
powershell module load assembly (www.google.ru) [Referral]
powershell snapin vs module (www.google.com) [Referral]
powershell windows 2008 "import system modules" command line (www.google.com) [Referral]
powershell 2.0 modules (www.google.cz) [Referral]
powershell preloading function file makes my other functions inaccessible (www.google.ca) [Referral]
powershell preload function (www.google.com) [Referral]
PowerShell call generic types (www.google.com) [Referral]
powershell namespace collision prefix (www.bing.com) [Referral]
powershell import namespaces (www.bing.com) [Referral]
Powershell Citrix Modules (www.google.de) [Referral]
how to load ad powershell module (www.google.com) [Referral]
dotsource functions in powershell module (www.bing.com) [Referral]
powershell module (www.google.com) [Referral]
powershell Export-modulemember (www.bing.com) [Referral]
powershell load modules (www.google.ru) [Referral]
powershell 2.0 load modules (www.google.ru) [Referral]
powershell 2.0 dll (www.google.com) [Referral]
import-module path powershell (www.google.ch) [Referral]
create powershell binary module (www.google.com) [Referral]
Asynchronous powershell uptime (www.google.com) [Referral]
powershell import module sharepoint (www.bing.com) [Referral]
powershell import module sharepoint (www.bing.com) [Referral]
import-module powershell path (www.google.at) [Referral]
import-module powershell path (www.google.at) [Referral]
powershell 2.0 parameters ps1 file (www.google.nl) [Referral]
powershell module example (www.google.com) [Referral]
powershell 2 modules example (www.google.cz) [Referral]
powershell module vs snapin (www.google.com) [Referral]
module versus snapin (www.google.com) [Referral]
powershell module (www.google.com) [Referral]
powershell import-module (www.google.com.sg) [Referral]
powershell module snapin (www.bing.com) [Referral]
powershell upload module (www.google.com) [Referral]
powershell import module (www.google.nl) [Referral]
dynamically Assembly.LoadModule() in asp.net (www.google.co.in) [Referral]
dotsource,powershell (www.bing.com) [Referral]
powershell dotsourcing (www.bing.com) [Referral]
create module powershell (www.google.com) [Referral]
http://github.com/orderwellbutrin [Referral]
"The Export-ModuleMember cmdlet can only be called from inside a module" (www.google.com) [Referral]
powershell import module (www.google.fi) [Referral]
Powershell Import-Module (www.google.fi) [Referral]
powershell version 2 generic collections (www.google.com) [Referral]
windows powershell 2.0 sharepoint 2007 modules (www.google.co.uk) [Referral]
powershell preload modules r2 (www.google.de) [Referral]
powershell importsystemmodules cmd howto (www.google.com) [Referral]
nttp://www.google.com (www.bing.com) [Referral]
nttp:'www.google.com (www.bing.com) [Referral]
+powershell +"create module" (www.google.de) [Referral]
powershell failovercluster module (www.google.es) [Referral]
http://github.com/macrobid [Referral]
powershell dot-source vs. module (www.google.com) [Referral]
Get Namespace Prefix powershell (www.google.de) [Referral]
powershell load module (www.google.fr) [Referral]
powershell automatically load modules command (www.google.com) [Referral]
powershell import module (www.google.com) [Referral]
citrix powershell modules (www.google.com.au) [Referral]
powershell export-modulemember (www.google.com) [Referral]
powershell import module (www.bing.com) [Referral]
load-module powershell (www.google.de) [Referral]
powershell generic dictionary (www.google.com) [Referral]
powershell module (www.google.fr) [Referral]
http://www.baidu.com/s?wd=nttp;//www.baidu.com&ie=utf-8&tn=d... [Referral]
Export-Module Member : The Export-Module Member cmdlet can only be called from inside a module. (www.google.com) [Referral]
http://www.baidu.com/s?wd=http%3Awww.chinapost.c&word=http%3... [Referral]
Export-ModuleMember -variable Powershell (www.google.com) [Referral]
powershell failovercluster module (www.google.com.br) [Referral]
load powershell module (www.google.com) [Referral]
module powershell (www.google.fr) [Referral]
load powershell sharepoint module (www.google.co.uk) [Referral]
Powershell Export-ModuleMember -Variable (www.google.com) [Referral]
Powershell module vs pssnapin (www.google.com) [Referral]
http://www.baidu.com/s?ie=utf-8&tn=chinacnc_hlj_pg&wd=nttp%3... [Referral]
powershell module search path (www.google.de) [Referral]
powershell 2.0 snapin (www.bing.com) [Referral]
powershell import-module (www.google.ca) [Referral]
powershell auto load module (www.google.fr) [Referral]
powershell 2.0 binary module import-module (www.google.com) [Referral]
load module powershell (www.google.com) [Referral]
how to get Modules for powershell 2.0 (www.google.com) [Referral]
powershell import namespac (www.bing.com) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com.au) [Referral]
powershell binary module examples (www.google.com) [Referral]
http://yandex.ru/yandsearch?text=Powershell+v1+Import-Module... [Referral]
module powershell (www.google.ch) [Referral]
powershell cmdlet name collision (www.google.com) [Referral]
powershell nested functions (www.google.com) [Referral]
powershell 2.0 generics new (www.google.com) [Referral]
powershell 2.0 snapins (www.google.com) [Referral]
powershell loading module automatically (www.bing.com) [Referral]
http://www.baidu.com/s?tn=haokan123&bs=nttp%3A%2F%2Fwww.baid... [Referral]
Assembly.LoadModule example (www.google.com) [Referral]
import module in powershell (www.google.be) [Referral]
import-module powershell (www.google.de) [Referral]
load powershell module (www.google.com) [Referral]
http://www.baidu.com/s?word=nttp%3B%2F%2Fwww.baidu.com%2F&ba... [Referral]
powershell binary module alias (www.google.com) [Referral]
powershell "Import-Module" (www.google.ch) [Referral]
snapins vs modules powershell 2 (www.google.ca) [Referral]
MODULE POWERSHELL (www.google.fr) [Referral]
MODULE citrix POWERSHELL (www.google.fr) [Referral]
+powershell +"Export-ModuleMember" (www.google.co.uk) [Referral]
preload powershell modules (www.google.com) [Referral]
Assembly.LoadModule powershell (www.google.ca) [Referral]
powershell module snapin (www.google.com) [Referral]
http://www.baidu.com/s?bs=nttp%3B%2F%2Fwww.baidu.com&f=8&wd=... [Referral]
http://www.baidu.com/baidu?word=powershell+new-object&tn=max... [Referral]
import-module path powershell (www.google.co.uk) [Referral]
googiecom (www.bing.com) [Referral]
nttpwww (www.google.com.mx) [Referral]
how to import powershell modules automatically (www.google.com) [Referral]
add-module powershell (www.google.com) [Referral]
how to get powershell snapins or modules (www.google.com) [Referral]
powershell 2.0 generics (www.google.com) [Referral]
import-module powershell (www.google.com) [Referral]
powershell loading ad module (www.google.com.au) [Referral]
powershell 2.0 import modules (www.google.at) [Referral]
powershell load module (www.google.com) [Referral]
nttp.\\wwwgoogie (www.bing.com) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module (www.google.co.in) [Referral]
The Export-Module Member cmdlet can only be called inside a module (www.google.fr) [Referral]
http://www.baidu.com/s?wd=nttp%2F%2Fwww.baidu.com&pn=0&tn=ch... [Referral]
"load-module" powershell (www.bing.com) [Referral]
Import-Module powershell (www.google.ca) [Referral]
FailoverClusters powershell module (www.google.com) [Referral]
+powershell +module (www.google.com) [Referral]
nttp\\wwwgoogie.co.id\ (www.google.co.id) [Referral]
GOOGIECOM (us.yhs.search.yahoo.com) [Referral]
import-module dll powershell (www.google.co.uk) [Referral]
powershell module on load (www.google.com) [Referral]
powershell 2.0 modules (www.google.ca) [Referral]
powershell preload function (www.google.com) [Referral]
Powershell Binary Module (www.google.com) [Referral]
powershell load module (www.google.com) [Referral]
automatically import powershell snap-in (swagbucks.com) [Referral]
how to load qad powershell module (www.google.com) [Referral]
http://www.baidu.com/s?wd=nttp%3B%2F%2Fwww.baidu.com%2F [Referral]
automatically import powershell module (www.google.com) [Referral]
windows powershell 2.0 module (www.google.com.au) [Referral]
Import-Module and alias (www.google.com) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com) [Referral]
powershell modulepath (www.google.se) [Referral]
cannot get failoverclusters module (www.google.com) [Referral]
PowerShell Import-Modul (www.google.ch) [Referral]
powershell automatic import of module (www.google.com) [Referral]
powershell "load functions" (www.google.com) [Referral]
powershell automatically import module (www.google.com) [Referral]
powershell import-module (www.google.com) [Referral]
wwwgoogie (www.google.es) [Referral]
"powershell snapin modules" (www.google.com) [Referral]
powershell load module config (www.google.de) [Referral]
"The Export-ModuleMember cmdlet can only be called inside a module" (www.google.com) [Referral]
powershell load module (www.google.de) [Referral]
powershell module example (www.google.com) [Referral]
"PowerShell.Create()" import module (www.google.com) [Referral]
loadmodule powershell (www.google.com) [Referral]
powershell snapin vs modules (www.google.com) [Referral]
googiecom (search.conduit.com) [Referral]
powershell reload module (www.google.ru) [Referral]
http://www.baidu.com/s?wd=nttp%3A%2F%2Fwww.baidu.com%2F&ch=&... [Referral]
powershell load VMware module (www.google.com) [Referral]
powershell modules example (www.google.com) [Referral]
powershell automatically import module (www.google.co.il) [Referral]
Load-Module powershell (www.google.com) [Referral]
import-module powershell (www.google.fr) [Referral]
load powerscript module (www.google.de) [Referral]
import module citrix (www.google.de) [Referral]
powershell automatically import module (www.google.com) [Referral]
load module qad extension (www.google.nl) [Referral]
+powershell +runspace "load dll" (www.google.com) [Referral]
powershell module NestedModules (www.google.com) [Referral]
load powershell module automatically (www.google.com) [Referral]
powershell import-module from http (www.google.com) [Referral]
http://www.baidu.com/s?wd=nttp%3A%2F%2Fwww.baidu.com%2F&ch=&... [Referral]
http://yandex.ru/yandsearch?text=nttp%3A%2F%2Fwww.google.kz%... [Referral]
powershell load module (www.google.co.uk) [Referral]
powershell modul laden (www.google.de) [Referral]
cache:w6uP09cieW8J:www.nivot.org/2009/03/19/PowerShell20CTP3ModulesInPractice.aspx pssnapin vs module (webcache.googleusercontent.com) [Referral]
Bits Module powershell (www.google.com) [Referral]
cache:w6uP09cieW8J:www.nivot.org/2009/03/19/PowerShell20CTP3ModulesInPractice.aspx Bits Module powershell (webcache.googleusercontent.com) [Referral]
powershell autoload module (www.google.de) [Referral]
wwwgoogie (search.conduit.com) [Referral]
loading powershell module AD (www.google.nl) [Referral]
loading a powershell module (www.google.co.uk) [Referral]
powershell function name collision (www.bing.com) [Referral]
http://www.baidu.com/s?wd=nttp%3A%2F%2Fwww.baidu.com%2F [Referral]
powershell snapin as module (www.google.com) [Referral]
http://yandex.by/yandsearch?text=nttp%3A%2F%2F127.0.0.1&clid... [Referral]
(www.fastbrowsersearch.com) [Referral]
powershell load modul (www.google.ch) [Referral]
import-module sharepoint (www.google.ch) [Referral]
sharepoint powershell module (www.google.de) [Referral]
psm1 module powershell (www.google.ch) [Referral]
powershell modul laden (www.google.de) [Referral]
import module when start i start powershell (www.google.fr) [Referral]
powershell import-module sourcing (www.google.be) [Referral]
powershell how to load modules (www.google.pl) [Referral]
import module powershell dot source (adoptaquery.com) [Referral]
nttp://www.google.com/ (www.bing.com) [Referral]
automatically load module and powershell (search.conduit.com) [Referral]
load powershell module (www.google.com.au) [Referral]
powershell module vs snapin (www.google.com) [Referral]
powershell auto import system modules (www.google.nl) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com) [Referral]
powershell function prefix (www.google.ca) [Referral]
how to import modules powershell (www.google.com) [Referral]
"Powershell" "Loading namespace" (www.google.com) [Referral]
http://yandex.ru/yandsearch?text=nttp%3A%2F%2Fwww.microsoft.... [Referral]
powershell snap in automatically imported (www.google.co.il) [Referral]
GOOGIECOM (www.bing.com) [Referral]
http://www.google.de/ [Referral]
http://www.google.cz/ [Referral]
get-pssnapin inside module (www.google.gr) [Referral]
nttpwww\\googie.co.id (www.google.co.id) [Referral]
powershell 2.0 snap ins (www.google.com) [Referral]
http://www.baidu.com/s?tn=site888_pg&lm=-1&word=nttp%3B%2F%2... [Referral]
load collection.generic assembly in powershell (www.bing.com) [Referral]
http://www.baidu.com/s?tn=5igb_dg&bs=import-module&f=8&wd=im... [Referral]
powershell systemmodule importieren (www.bing.com) [Referral]
"powershell 2" generics (www.bing.com) [Referral]
nttp\www.google.com\ (www.bing.com) [Referral]
system modules 2.0 (in.search.yahoo.com) [Referral]
powershell import sharepoint dll (www.bing.com) [Referral]
Export-ModuleMember : The Export-ModuleMember cmdlet can only be called from inside module permissiondenied (www.google.com) [Referral]
Export-ModuleMember : The Export-ModuleMember cmdlet can only be called from inside a module (www.bing.com) [Referral]
http://www.baidu.com/s?tn=leebootool_pg&ch=7&bs=nttpWWWbuORO... [Referral]
powershell 2.0 snap ins (www.google.com) [Referral]
Import-Module powershell (www.google.ca) [Referral]
importsystemmodules runspace (www.google.com) [Referral]
runspace ImportSystemModules (www.google.com) [Referral]
calling psm1 from ps1 (www.bing.com) [Referral]
http://translate.google.com.hk/translate?hl=zh-CN&sl=en&u=ht... [Referral]
powershell modules (www.bing.com) [Referral]
powershell auto load snap-in (www.google.nl) [Referral]
http://www.baidu.com/s?wd=nttp%2F%2Fgroups%2Cgoogle.com&pn=3... [Referral]
powershell load a namespace (www.bing.com) [Referral]
powershell loading modules (www.google.co.uk) [Referral]
nttpwww (www.ask.com) [Referral]
where is powershell 2.0 modules (www.google.com) [Referral]
powershell 2 import .net namespace (www.google.com) [Referral]
powershell binary module (www.google.com) [Referral]
powershell module "while retrieving member" (www.bing.com) [Referral]
powershell citrix module (www.google.se) [Referral]
load powershell module (www.google.at) [Referral]
powershell load function in parent (www.google.fr) [Referral]
PowerShell 2.0 CTP3 (www.google.com.tw) [Referral]
powershell create binary module (www.google.com) [Referral]
wwwgoogiecomvi (search.yahoo.com) [Referral]
http://www.netvibes.com/zetia [Referral]
dot source powershell function (www.bing.com) [Referral]
http://www.google.co.in/ [Referral]
powershell module argument (www.google.com) [Referral]
cache:w6uP09cieW8J:www.nivot.org/2009/03/19/PowerShell20CTP3ModulesInPractice.aspx powershell module snapin (webcache.googleusercontent.com) [Referral]
http://www.google.nl/ [Referral]
powershell module onload (www.google.ru) [Referral]
powershell binary module (www.google.com) [Referral]
powershell 2.0 failovercluster module (www.google.dk) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com) [Referral]
The Export-ModuleMember cmdlet can only be called from inside a module. (www.google.com) [Referral]
Comments are closed.