Tengo un artículo que describe una manera fácil de ejecutar Powershell a través de WinRM desde .NET en http://getthinktank.com/2015/06/22/naos-winrm-windows-remote-management-through-net/.
El código está en un solo archivo si solo desea copiarlo y también es un paquete NuGet que incluye la referencia a System.Management.Automation.
Gestiona automáticamente hosts de confianza, puede ejecutar bloques de scripts y también enviar archivos (lo cual no es realmente compatible, pero he creado una solución alternativa). Los retornos son siempre los objetos en bruto de 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);
Espero que esto ayude, he estado usando esto por un tiempo con mis implementaciones automatizadas. Deje comentarios si encuentra problemas.