Оснастки загружаются из дочерних, а не в родительской области, когда отдельные файлы используются для классов

Это странный пример, но он решает мою проблему:

ФАЙЛ: Foo.psm1

class Foo
{
    [OBJECT] GetSite ()
    {
        return Get-SPWeb -Identity 'http://mysharepointsite.com';
    }
}

ФАЙЛ: Bar.psm1

Using MODULE ".\Foo.psm1";

class Bar : Foo
{
    Bar ()
    {
        Add-PSSnapin 'Microsoft.SharePoint.PowerShell';
    }
}

ПРИСТАВКА:

PS C:\test> Using MODULE "C:\Test\Bar.psm1";

PS C:\test> $myBar = [Bar]::new();

PS C:\test> $myBar.GetSite();
Get-SPWeb : The term 'Get-SPWeb' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was 
included, verify that the path is correct and try again.
At C:\Test\Foo.psm1:5 char:16
+         return Get-SPWeb -Identity 'http://mysharepointsite.com ...
+                ~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-SPWeb:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

ТЕМ НЕ МЕНИЕ...

Когда классы находятся в одном файле, он работает нормально.

Какие-либо предложения?

0 ответов

Другие вопросы по тегам