Как прочитать удаленный файл yaml, присутствующий в Azure виртуальной машине, с локального компьютера, используя C# Runspace - PullRequest
1 голос
/ 26 мая 2020

Я хочу прочитать удаленный yaml файл на удаленном azure vm с моей локальной машины, используя C# Runspace.

Я могу удаленно запускать команды Powershell, используя C# Runspace, но я Я не понимаю, как читать yaml файл, присутствующий в удаленной системе, например Azure VM, используя Runspace.

Приведенный ниже код используется для удаленного запуска команды powershell из моей локальной системы.

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

1 Ответ

0 голосов
/ 27 мая 2020

Благодаря моему тестированию я могу прочитать файл .yml на сервере. Ниже приведен код (. net framework 4.7.2) и снимок экрана.

44.yml файл на сервере vm.

enter image description here

читать файл с помощью PowerShell на сервере vm.

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();
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...