gpt4 book ai didi

c# - 使用 C# 运行 PowerShell 脚本

转载 作者:太空狗 更新时间:2023-10-30 00:56:48 26 4
gpt4 key购买 nike

PowerShell powershell = PowerShell.Create();
PSCommand command = new PSCommand();
command.AddScript("[System.Net.ServicePointManager]::ServerCertificateValidationCallback+={$true}");

是吗?
下一步是什么?

最佳答案

来自 MSDN :

PSCommand command = new PSCommand(); 
command.AddScript(
"[System.Net.ServicePointManager]::ServerCertificateValidationCallback+={$true}"
);

PowerShell powershell = PowerShell.Create();
powershell.Commands = cmd;

var results = powershell.Invoke();

关于c# - 使用 C# 运行 PowerShell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6794238/

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