gpt4 book ai didi

c# - 如何使用 C# Runspace 从本地计算机读取 Azure VM 中存在的远程 yaml 文件

转载 作者:行者123 更新时间:2023-12-03 04:01:51 25 4
gpt4 key购买 nike

我想使用 C# Runspace 从本地计算机读取远程 azure vm 中存在的远程 yaml 文件。

我可以使用 C# Runspace 远程运行 Powershell 命令,但我不知道如何读取远程中存在的 yaml 文件系统,例如使用 RunspaceAzure VM

下面的代码用于从本地系统远程运行 powershell 命令。

               using (Runspace remoteRunspace = RunspaceFactory.CreateRunspace(connectionInfo))
{
remoteRunspace.Open();
using (PowerShell powershell = PowerShell.Create())
{
powershell.Runspace = remoteRunspace;
powershell.AddScript("Get-Service");
}
}

最佳答案

通过我的测试,我可以读取服务器上的.yml文件。以下是代码(.net Framework 4.7.2)和屏幕截图。

虚拟机服务器中的

44.yml 文件。

enter image description here

在vm服务器中通过powershell读取文件。

enter image description here

通过我的代码读取文件。

enter image description here

namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
string shell = "http://schemas.microsoft.com/powershell/Microsoft.PowerShell";
var target = new Uri("http://***.***.***.**:5985/wsman");
var secured = new SecureString();
foreach (char letter in "yourpassword")
{
secured.AppendChar(letter);
}
secured.MakeReadOnly();

var credential = new PSCredential("Administrator", secured);
var connectionInfo = new WSManConnectionInfo(target, shell, credential);

Runspace remoteRunspace = RunspaceFactory.CreateRunspace(connectionInfo);
remoteRunspace.Open();
using (PowerShell powershell = PowerShell.Create())
{
powershell.Runspace = remoteRunspace;
// your yml file in vm
powershell.AddScript("$textfile=\"C:\\website\\wps\\upload\\44.yml\";");
//read file
powershell.AddScript("Get-Content -Path $textfile");
powershell.Invoke();

Collection<PSObject> results = powershell.Invoke();

// Display the results.
foreach (PSObject result in results)
{
Console.WriteLine(result.BaseObject);
}
}
Console.Read();
}
}
}

关于c# - 如何使用 C# Runspace 从本地计算机读取 Azure VM 中存在的远程 yaml 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62026858/

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