Exemplo n.º 1
0
        public void StartAzureVM(string vmName, string serviceName)
        {
            StartAzureVMCmdletInfo       startAzureVMCmdlet    = new StartAzureVMCmdletInfo(vmName, serviceName);
            WindowsAzurePowershellCmdlet azurePowershellCmdlet = new WindowsAzurePowershellCmdlet(startAzureVMCmdlet);

            azurePowershellCmdlet.Run();
        }
 public void StartAzureVM(string vmName, string serviceName)
 {
     StartAzureVMCmdletInfo startAzureVMCmdlet = new StartAzureVMCmdletInfo(vmName, serviceName);
     WindowsAzurePowershellCmdlet azurePowershellCmdlet = new WindowsAzurePowershellCmdlet(startAzureVMCmdlet);
     azurePowershellCmdlet.Run();
 }