I have an application that I use to run Exchange Powershell commands inside C# code like below. This is an example of the relevant lines I use to run the powershell command.
RunspaceConfiguration rsConfig = RunspaceConfiguration.Create();
PSSnapInException snapInException = null;
//load Exchange shell
rsConfig.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.E2010", out snapInException);
Runspace runSpace = RunspaceFactory.CreateRunspace(rsConfig);
//open runspace
runSpace.Open();
//setup pipeline
Pipeline pipeLine = runSpace.CreatePipeline();
String sScript = "get-mailbox -identity 'rj'";
//add script to pipeline
pipeLine.Commands.AddScript(sScript);
//run the script
pipeLine.Invoke();
pipeLine.Dispose();
This code works perfect in all cases until now. the script I am trying to run instead of the one above is to set the RetentionPolicy for a mailbox. The script I am trying to run looks like this:
Set-Mailbox -Identity ‘rj’ -RetentionPolicy ‘Main Campus Retention Policy’
When I run this in powershell itself it works perfectly but when I try to run it using the code below I get the error, “Cannot invoke this function because the current host does not implement it.”
From this error, it almost seems like the command that runs in C# cannot run the RetentionPolicy command but that doesn’t make much sense. I have Googled this and tried everything suggested but no luck.
If anyone knows why this is happening, it would be very helpful.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
If that command would normally prompt for confirmation then you will need to either:
- Set
-Confirm:$falseas a parameter (and possibly-Forceas well) - Set
$ConfirmPreference = "None"before calling Set-Mailbox (and possibly-Forcetoo) - Create a Host and implement the Confirm functionality 😉
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0