如何在 PowerShell 中创建将电子邮件移至文件夹的 Outlook 规则?

问题描述 投票:0回答:2

我正在尝试编写 PowerShell 代码来创建 Outlook 规则来移动电子邮件。

注意 我无权访问服务器,因此

*-InboxRule
等 cmdlet
New-InboxRule
不可用。

PowerShell 和 Outlook 之间的 COM 互操作有些奇怪,因为它可以在 C# 中运行,但相同的代码在 PowerShell 中却不能。

C#代码:

Microsoft.Office.Interop.Outlook.Application outlook = null;

try
{
    outlook = (Microsoft.Office.Interop.Outlook.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Outlook.Application");
}
catch
{
}

if (outlook == null)
{
    outlook = new Microsoft.Office.Interop.Outlook.Application();
}

var inbox = outlook.Application.Session.GetDefaultFolder(Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderInbox);
var oMoveTarget = inbox.Folders["MoveTarget"];

// debugging
Console.WriteLine(inbox.FolderPath.ToString());
Console.WriteLine(oMoveTarget.FolderPath.ToString());

var rules = outlook.Session.DefaultStore.GetRules();
Console.WriteLine(string.Format("There are {0} rules", rules.Count));

var name = string.Format("Rule {0}", DateTime.Now.ToString("yyyyMMdd_HHmmss"));
var rule = rules.Create(name, Microsoft.Office.Interop.Outlook.OlRuleType.olRuleReceive);

// conditions
rule.Conditions.From.Recipients.Add("John Smith");
rule.Conditions.From.Recipients.ResolveAll();
rule.Conditions.From.Enabled = true;

// actions
rule.Actions.MoveToFolder.Folder = oMoveTarget;
rule.Actions.MoveToFolder.Enabled = true;
rules.Save(true);

相同(除了语言语法)PowerShell 代码:

try
{
    $outlook = [Runtime.InteropServices.Marshal]::GetActiveObject("Outlook.Application");
}
catch
{
}

if ($outlook -eq $null)
{
    $outlook = New-Object -ComObject Outlook.Application
}

$inbox = $outlook.Application.Session.GetDefaultFolder([Microsoft.Office.Interop.Outlook.OlDefaultFolders]::olFolderInbox);
$oMoveTarget = $inbox.Folders["MoveTarget"];

# debugging
[Console]::WriteLine($inbox.FolderPath.ToString());
[Console]::WriteLine($oMoveTarget.FolderPath.ToString());

$rules = $outlook.Session.DefaultStore.GetRules();
[Console]::WriteLine([string]::Format("There are {0} rules", $rules.Count));

$name = [string]::Format("Rule {0}", [DateTime]::Now.ToString("yyyyMMdd_HHmmss"));
$rule = $rules.Create($name, [Microsoft.Office.Interop.Outlook.OlRuleType]::olRuleReceive);

# conditions
$rule.Conditions.From.Recipients.Add("John Smith");
$rule.Conditions.From.Recipients.ResolveAll();
$rule.Conditions.From.Enabled = $true;

# actions
$rule.Actions.MoveToFolder.Folder = $oMoveTarget;
$rule.Actions.MoveToFolder.Enabled = $true;
$rules.Save($true);

PowerShell 代码失败并显示:

One or more rules cannot be saved because of invalid actions or conditions.
At line:1 char:1
+ $rules.Save($true);
+ ~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationStopped: (:) [], COMException
    + FullyQualifiedErrorId : System.Runtime.InteropServices.COMException
 

经进一步调查,这是由这条线引起的,它没有做任何事情:

$rule.Actions.MoveToFolder.Folder = $oMoveTarget;

当我运行 C# 等效项时,如果我立即查看该属性,它已设置。 在 PowerShell 中,它什么也不做。

c# powershell email outlook office-interop
2个回答
4
投票
您可以通过以下方式执行此操作:

# actions $action = $rule.Actions.MoveToFolder $action.Enabled = $true [Microsoft.Office.Interop.Outlook.MoveOrCopyRuleAction].InvokeMember("Folder",[Reflection.BindingFlags]::SetProperty, $null, $action, $oMoveTarget)
    

0
投票
您可以在powershell中运行C#代码。是否需要在powershell中重写?

$code = @' using System; namespace Outlook { public class Outlook { public static void Main(){ Microsoft.Office.Interop.Outlook.Application outlook = null; try { outlook = (Microsoft.Office.Interop.Outlook.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Outlook.Application"); } catch { } if (outlook == null) { outlook = new Microsoft.Office.Interop.Outlook.Application(); } var inbox = outlook.Application.Session.GetDefaultFolder(Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderInbox); var oMoveTarget = inbox.Folders["TargetFolder"]; // debugging Console.WriteLine(inbox.FolderPath.ToString()); Console.WriteLine(oMoveTarget.FolderPath.ToString()); var rules = outlook.Session.DefaultStore.GetRules(); Console.WriteLine(string.Format("There are {0} rules", rules.Count)); var name = string.Format("Rule {0}", DateTime.Now.ToString("yyyyMMdd_HHmmss")); var rule = rules.Create(name, Microsoft.Office.Interop.Outlook.OlRuleType.olRuleReceive); // conditions rule.Conditions.From.Recipients.Add("John Smith"); rule.Conditions.From.Recipients.ResolveAll(); rule.Conditions.From.Enabled = true; // actions rule.Actions.MoveToFolder.Folder = oMoveTarget; rule.Actions.MoveToFolder.Enabled = true; rules.Save(true); } } } '@ $assemblies = ("Microsoft.Office.Interop.Outlook") Add-Type -ReferencedAssemblies $assemblies -TypeDefinition $code -Language CSharp [Outlook.Outlook]::Main()
    
© www.soinside.com 2019 - 2024. All rights reserved.