我正在使用 C# 测试 PowerShell 托管。这是一个有效的控制台应用程序:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using Microsoft.Office.Interop.Excel;
namespace ConsoleApplication3
{
class Program
{
static void Main()
{
Application app = new Application();
app.Visible = true;
app.Workbooks.Add(XlWBATemplate.xlWBATWorksheet);
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.Open();
runspace.SessionStateProxy.SetVariable("Application", app);
Pipeline pipeline = runspace.CreatePipeline("$Application");
Collection<PSObject> results = null;
try
{
results = pipeline.Invoke();
foreach (PSObject pob in results)
{
Console.WriteLine(pob);
}
}
catch (RuntimeException re)
{
Console.WriteLine(re.GetType().Name);
Console.WriteLine(re.Message);
}
}
}
}
我首先创建一个 Excel.Application 实例并将其作为名为 $Application 的变量传递给托管的 PowerShell 实例。这行得通,我可以使用这个变量,就好像 Excel.Application 是从 PowerShell 中创建的一样。
接下来,我使用 VS 2008 创建了一个 Excel 插件,并向插件添加了一个带有两个文本框和一个按钮的用户控件(当 Excel 启动时,用户控件显示为自定义任务窗格)。想法是这样的:当我单击按钮时,会创建一个托管的 PowerShell 实例,我可以将当前 Excel.Application 实例作为变量传递给它,就像在第一个示例中一样,所以我可以使用这个变量从 PowerShell 自动化 Excel (一个文本框用于输入,另一个用于输出。代码如下:
using System;
using System.Windows.Forms;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using System.Collections.ObjectModel;
using Microsoft.Office.Interop.Excel;
namespace POSHAddin
{
public partial class POSHControl : UserControl
{
public POSHControl()
{
InitializeComponent();
}
private void btnRun_Click(object sender, EventArgs e)
{
txtOutput.Clear();
Microsoft.Office.Interop.Excel.Application app =
Globals.ThisAddIn.Application;
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.Open();
runspace.SessionStateProxy.SetVariable("Application", app);
Pipeline pipeline = runspace.CreatePipeline(
"$Application | Get-Member | Out-String");
app.ActiveCell.Value2 = "Test";
Collection<PSObject> results = null;
try
{
results = pipeline.Invoke();
foreach (PSObject pob in results)
{
txtOutput.Text += pob.ToString() + "-";
}
}
catch (RuntimeException re)
{
txtOutput.Text += re.GetType().Name;
txtOutput.Text += re.Message;
}
}
}
}
代码类似于第一个示例,除了当前 Excel.Application 实例可通过 Globals.ThisAddIn.Application (VSTO 生成)用于插件,我可以看到它确实是 Microsoft.Office.Interop.Excel.Application实例,因为我可以使用 app.ActiveCell.Value2 = "Test" 之类的东西(这实际上将文本放入活动单元格)。但是当我将 Excel.Application 实例传递给 PowerShell 实例时,得到的是 System.__ComObject 的一个实例,我不知道如何将它转换为 Excel.Application。当我使用 $Application | 检查来自 PowerShell 的变量时 Get-Member 这是我在第二个文本框中得到的输出:
类型名称:System.__ComObject 名称 MemberType 定义 ---- ---------- ---------- CreateObjRef 方法 System.Runtime.Remoting.ObjRef CreateObj... 等于方法 System.Boolean Equals(Object obj) GetHashCode 方法 System.Int32 GetHashCode() GetLifetimeService 方法 System.Object GetLifetimeService() GetType 方法 System.Type GetType() InitializeLifetimeService 方法 System.Object InitializeLifetimeService() ToString 方法 System.String ToString()
我的问题是如何将 Microsoft.Office.Interop.Excel.Application 的实例从 VSTO 生成的 Excel 2007 插件传递到托管的 PowerShell 实例,以便我可以从 PowerShell 操作它?
(我之前在微软C#论坛发过这个问题,没有答案)