首页 > Web开发 > 详细

Asp.net使用powershell管理hyper-v

时间:2015-11-02 22:44:17      阅读:484      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using System.Collections.ObjectModel;
using System.Text;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected void Button1_Click(object sender, EventArgs e)
    {

        RunspaceConfiguration rconfig = RunspaceConfiguration.Create();
        PSSnapInException Pwarn = new PSSnapInException();

        Runspace runspace = RunspaceFactory.CreateRunspace();
        string test = "Import-Module VirtualMachineManager\r\n";
        runspace = RunspaceFactory.CreateRunspace(rconfig);
        runspace.Open();
        Pipeline pipeline = runspace.CreatePipeline();
        pipeline.Commands.AddScript(test);
        try
        {
            var results = pipeline.Invoke();

            using (Pipeline pipe = runspace.CreatePipeline())
            {
                //Start-VM -name XXXXX
Command cmd = new Command("Start-VM"); cmd.Parameters.Add("Name", "test_machine2"); pipe.Commands.Add(cmd); var result = pipe.Invoke(); Label1.Text = results.ToString(); } } catch (Exception ex) { throw ex; Label1.Text = ex.ToString(); } } }

 

Asp.net使用powershell管理hyper-v

原文:http://www.cnblogs.com/wicrecend/p/4931397.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!