gpt4 book ai didi

powershell - 如何检查 powershell 脚本是否从托管 API 签名?

转载 作者:行者123 更新时间:2023-12-03 17:41:04 24 4
gpt4 key购买 nike

我想使用 .net Powershell SDK 执行 powershell。我有这个工作正常。在执行它之前,我想检查脚本是否已由我的代码签名证书签名——这很容易在 powershell 内部使用 Get-AuthenticodeSignature 完成,但我想在选择执行此脚本之前在代码中执行此操作。

解决方法:

        Runspace runSpace = RunspaceFactory.CreateRunspace();
runSpace.Open();

Pipeline shell = runSpace.CreatePipeline();
shell.Commands.AddScript(String.Format("Get-AuthenticodeSignature '{0}'", Filename));

Signature sig = (shell.Invoke()[0]).BaseObject as Signature;
bool isValid = sig.Status == SignatureStatus.Valid;

最佳答案

我能想到的最简单的方法是仍然使用 powershell,但是在托管代码中:

using System.Management.Automation;

void Foo(string path) {
PowerShell shell = PowerShell.Create();
shell.AddScript(String.Format("Get-AuthenticodeSignature {0}", path));

Signature sig = shell.Invoke()[0] as Signature; // returns collection
bool isValid = sig.Valid;
}

(凭内存,所以语法上可能不完全正确)

关于powershell - 如何检查 powershell 脚本是否从托管 API 签名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2746186/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com