c# - PowerShell 说找不到 '%' 和 `New-Object`。我错过了进口吗? WinRM 或 Exchange 角色权限?

标签 c# exception powershell runspace

假设我已经将 IIS 配置为允许“完整”的远程运行空间,我该如何解决出现的异常,即 Powershell 提示未找到“%”。

然后当我注释掉有问题的 for..each 语句时,它说找不到 New-Object。

我是否缺少导入?根据评论,我可能缺少 WinRM 中的某些配置或 Exchange 2010 角色权限。

public static void testExchangeMBScript()
{
  PSCredential credential = new PSCredential(@"domain\me", createPassword("pw"));

WSManConnectionInfo connectionInfo = new WSManConnectionInfo(false, "exchangehost.company.com", 80, "/Powershell", "http://schemas.microsoft.com/powershell/Microsoft.Exchange", credential);

connectionInfo.AuthenticationMechanism = AuthenticationMechanism.Default;

Runspace runspace = System.Management.Automation.Runspaces.RunspaceFactory.CreateRunspace(connectionInfo);

try
{
    runspace.Open();
    Pipeline pipeline = runspace.CreatePipeline();

    string ps1 = "Get-MailboxDatabase -Status";
    string PSFull = @" $Databases = Get-MailboxDatabase -Status
    foreach($Database in $Databases) {
        $DBSize = $Database.DatabaseSize
        $MBCount = @(Get-MailboxStatistics -Database $Database.Name).Count

        $AllMBStats = Get-MailboxStatistics -Database $Database.Name    
     $MBItemAssocCount = $AllMBStats   |   %{$_.AssociatedItemCount.value} |  Measure-Object -Average   -Sum
     $MBDeletedCount =   $AllMBStats   |   %{$_.DeletedItemCount.value} |  Measure-Object -Average   -Sum
     $MBItemCount =      $AllMBStats   |   %{$_.ItemCount.value} |  Measure-Object -Average  -Sum
     $MBDeletedItemSize= $AllMBStats   |   %{$_.TotalDeletedItemSize.value.ToMb() } |  Measure-Object -Average  -Sum
     $MBItemSize   =     $AllMBStats   |   %{$_.TotalItemSize.value.ToMb()} |  Measure-Object -Average    -Sum      

        New-Object PSObject -Property @{
Server = $Database.Server.Name
DatabaseName = $Database.Name
UserCount = $MBCount
""DatabaseSize (GB)"" = $DBSize.ToGB()
""AverageMailboxSize (MB)"" =  $MBItemSize.Average
""WhiteSpace (MB)"" = $Database.AvailableNewMailboxSpace.ToMb()
ItemCount = $MBItemCount.Sum
""LogicalSize (MB)"" =   $MBItemSize.Sum
        }
    }
";
    pipeline.Commands.AddScript(PSFull);



    // This method cannot be called multiple times on a given pipeline. The state of the 
    // pipeline must be NotStarted when Invoke is called. When this method is called, it
    // changes the state of the pipeline to Running. 
    // see http://msdn.microsoft.com/en-us/library/windows/desktop/ms569128(v=vs.85).aspx
    if (pipeline.PipelineStateInfo.State == PipelineState.NotStarted)
    {
        Collection<PSObject> results = pipeline.Invoke();
    }
}
catch (RemoteException re)
{

    // if: Assignment statements are not allowed in restricted language mode or a Data section.
    // then: configure IIS application settings PSLanguageMode = FullLanguage
}
catch (Exception e)
{

}
        }

最佳答案

远程 session 是一个受限的运行空间。它不允许您使用脚本所需的 cmdlet。我相信您需要做的是使用不受约束的本地运行空间,然后使用 invoke-command 从那里在远程运行空间中运行 Exchange 管理 cmdlet:

$AllMBStats = invoke-command {Get-MailboxStatistics -Database $databasename} -argumentlist $database.name -connectionuri "http://exchangehost.company.com/powershell"

然后在本地运行空间中处理返回值。

关于c# - PowerShell 说找不到 '%' 和 `New-Object`。我错过了进口吗? WinRM 或 Exchange 角色权限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9241830/

相关文章:

c# - Skip/Take Missing 的 Lambda 过载

scala - LinkedHashMap 更改为 HashMap 并在 flink 数据流算子中崩溃

使用参数执行 CMD.exe 的 PowerShell SCript

azure - ForEach-Object - 尝试 for 循环变量中的每个地址

linux - 在 Linux 上从 Ansible 连接 winrm 模块

c# - 检查测试结束时是否还有任何线程残留

c# - 鼠标 Hook 断开

c# - 银光 : How to do data entry to a collection?

wpf - 如何将绑定(bind)错误转化为运行时异常?

C++ static_cast 的正确方法