Ho un articolo che descrive un modo semplice per eseguire Powershell tramite WinRM da .NET a http://getthinktank.com/2015/06/22/naos-winrm-windows-remote-management-through-net/.
Il codice è in un singolo file se si desidera copiarlo ed è anche un pacchetto NuGet che include il riferimento a System.Management.Automation.
Gestisce automaticamente host attendibili, può eseguire blocchi di script e anche inviare file (che non è supportato ma ho creato un problema). I ritorni sono sempre gli oggetti grezzi di PowerShell.
// this is the entrypoint to interact with the system (interfaced for testing).
var machineManager = new MachineManager(
"10.0.0.1",
"Administrator",
MachineManager.ConvertStringToSecureString("xxx"),
true);
// will perform a user initiated reboot.
machineManager.Reboot();
// can run random script blocks WITH parameters.
var fileObjects = machineManager.RunScript(
"{ param($path) ls $path }",
new[] { @"C:\PathToList" });
// can transfer files to the remote server (over WinRM's protocol!).
var localFilePath = @"D:\Temp\BigFileLocal.nupkg";
var fileBytes = File.ReadAllBytes(localFilePath);
var remoteFilePath = @"D:\Temp\BigFileRemote.nupkg";
machineManager.SendFile(remoteFilePath, fileBytes);
Spero che questo aiuti, ho utilizzato questo per un po 'con le mie distribuzioni automatizzate. Si prega di lasciare commenti se trovate problemi.