5

我有一个 PowerShell 脚本存储在文件 MergeDocuments.ps1 中。当我从 Windows PowerShell 命令提示符运行脚本时,它运行良好
.\MergeDocuments.ps1 1.docx 2.docx merge.docx

从 Windows 控制台应用程序调用脚本也可以正常运行。

当我尝试从 Asp.Net Web 服务调用脚本时,我遇到了一些关于注册表访问的问题。我使用模拟并将网络服务帐户的权限授予注册表项HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell来解决此问题

接下来我遇到了关于 PowerShell 无法创建 OpenXmlPowerTools.DocumentSource[] 类型的对象的问题,所以我在脚本中添加了以下内容

Add-Type -Path "C:\Users\Administrator\Documents\WindowsPowerShell\Modules\OpenXmlPowerTools\OpenXmlPowerTools.dll"
Import-Module OpenXmlPowerTools

现在当前的问题是我收到错误“术语'Merge-OpenXmlDocument'不被识别为cmdlet的名称,......”

我该如何解决?

PowerShell 脚本

Add-Type -Path "C:\Users\Administrator\Documents\WindowsPowerShell\Modules\OpenXmlPowerTools\OpenXmlPowerTools.dll"

Import-Module OpenXmlPowerTools

# The last argument is the path of the merged document
$noOfSourceDocs = ($($args.length) - 1)

# Create an array to hold all the source documents
[OpenXmlPowerTools.DocumentSource[]] $docs = New-Object OpenXmlPowerTools.DocumentSource[] $noOfSourceDocs

for ($i = 0; $i -lt $noOfSourceDocs; $i++)
{
    $docs[$i] = New-Object -TypeName OpenXmlPowerTools.DocumentSource -ArgumentList $args[$i]
    $docs[$i].KeepSection = 1
}

Merge-OpenXmlDocument -OutputPath $args[-1] -Sources $docs

网络服务 .Net 代码

using (new Impersonator(username, domain, password))
{
   // create Powershell runspace
   Runspace runspace = RunspaceFactory.CreateRunspace();
   runspace.Open();

   RunspaceInvoke invoker = new RunspaceInvoke(runspace);
   invoker.Invoke("Set-ExecutionPolicy Unrestricted");

   // create a pipeline and feed it the script file
   Pipeline pipeline = runspace.CreatePipeline();
   Command command = new Command(ConfigurationManager.AppSettings["PowerShellScript"]);
   foreach (var file in filesToMerge)
   {
      command.Parameters.Add(null, file);
   }
   command.Parameters.Add(null, outputFilename);
   pipeline.Commands.Add(command);

   pipeline.Invoke();
   runspace.Close();
}
4

1 回答 1

1

您可以尝试OpenXmlPowerTools在 PowerShell 系统模块路径中安装模块吗:

C:\Windows\system32\WindowsPowerShell\v1.0\Modules
于 2012-04-23T07:06:02.483 回答