简体   繁体   中英

Exchange Management Powershell with .Net Return Code

How can I get the return code from the following command:

RunspaceConfiguration rsConfig = RunspaceConfiguration.Create(); 
PSSnapInException snapInException = null; 
PSSnapInInfo info = rsConfig.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.Admin", out snapInException);
Runspace myRunSpace = RunspaceFactory.CreateRunspace(rsConfig); myRunSpace.Open();

    //Create pipeline and feed it the script text
    Pipeline pipeline = myRunSpace.CreatePipeline();

    string strScript = "new-storagegroup -Server KINGKONG"
        + " -LogFolderPath c:\\rsg\\logs -Name RecoveryGroup -SystemFolderPath c:\\rsg\\data -Recovery";

    //Add the command to the Commands collection of the pipeline.
    pipeline.Commands.AddScript(strScript)

    Collection<PSObject> results = pipeline.Invoke();

You can query the execution status of the last command (boolean) by getting the value of the $? variable eg:

bool succeeded = myRunspace.SessionStateProxy.GetVariable("?");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM