I've got code to run a powershell cmdlet from a .ps1 file containing alot of powershell cmdlets... when I execute it I get this exception
The term 'New-BuildCVFromSql' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
private void RunPowerShellCommandToBuildCV()
{
string BigWindow = "";
string FileNamePopup = "";
TestPopup(ref BigWindow, ref FileNamePopup);
string psScriptPath = @"D:\Project Files\CIS3G\Webapp\_Powershell\JcdcCv.psm1";
string psScript = string.Empty;
if(File.Exists(psScriptPath))
psScript = File.ReadAllText(psScriptPath);
else
throw new FileNotFoundException("Wrong path for the script file");
// init the powershell runspace and pipeline - EWB
Runspace runSpace = RunspaceFactory.CreateRunspace();
runSpace.Open();
// set execution policy - EWB
RunspaceInvoke runSpaceInvoker = new RunspaceInvoke(runSpace);
runSpaceInvoker.Invoke("Set-ExecutionPolicy Unrestricted");
Pipeline pipeline = runSpace.CreatePipeline();
//i tried loading it both of the ways below and no joy load the script from the string - EWB
//pipeline.Commands.AddScript( psScript );
//load as file - EWB
pipeline.Commands.AddScript( psScriptPath, false );
//add the outstring command to the pipeline.
pipeline.Commands.Add("Out-String");
Command myCommand = new System.Management.Automation.Runspaces.Command( "New-BuildCVFromSql" );
CommandParameter SqlOrExcelFile = new CommandParameter( "SqlOrExcelFile", @"C:\Documents and Settings\Brown.Ericw\My Documents\tempeval.sql" );
CommandParameter Js = new CommandParameter( "Js", "JCDC" );
CommandParameter FileName = new CommandParameter( "FileName", @"Evaluation\EvaluationFormPartialListVM" );
myCommand.Parameters.Add( SqlOrExcelFile );
myCommand.Parameters.Add( Js );
myCommand.Parameters.Add( FileName );
pipeline.Commands.Add(myCommand);
Collection<PSObject> output = pipeline.Invoke();
//foreach (PSObject psObject in output)
//{
//System.Diagnostics.Debug.WriteLine ("Object name: " + psObject.);
//}
}
So apparently I'm not correctly loading this file of scripts? In powershell ISE/IDE I have to run teh script before I can execute any of the commands, is that what I'm doing wrong?
I'm just trying to put an interface on top of a bunch of powershell scripts written by somone else, so I can't really change his script files, as they are beign used elsewhere by other folks...
in side the .ps1 file the cmdlet I'm trying to call is defined thusly:
# Create CV Method #
function New-BuildCVFromSql {
param([Parameter(Mandatory=$true, ValueFromPipelineByPropertyName=$true)]$SqlFile,
[Parameter(Mandatory=$true, ValueFromPipelineByPropertyName=$true)]$js,
[Parameter(Mandatory=$true, ValueFromPipelineByPropertyName=$true)]$FileName)
...
Addendum: also tried using a powershell instead of a Pipeline per this Post:
Problem with calling a powershell function from c#
like this, but I got the same exception:
private void RunPowerShellCommandToBuildCV()
{
string BigWindow = "";
string FileNamePopup = "";
TestPopup(ref BigWindow, ref FileNamePopup);
string psScriptPath = @"D:\Project Files\CIS3G\Webapp\_Powershell\JcdcCv.psm1";
string psScript = string.Empty;
if (File.Exists(psScriptPath))
psScript = File.ReadAllText(psScriptPath);
else
throw new FileNotFoundException("Wrong path for the script file");
// init the powershell runspace and pipeline - EWB
using (Runspace runSpace = RunspaceFactory.CreateRunspace())
{
runSpace.Open();
// set execution policy - EWB
RunspaceInvoke runSpaceInvoker = new RunspaceInvoke( runSpace );
runSpaceInvoker.Invoke( "Set-ExecutionPolicy Unrestricted" );
//Pipeline pipeline = runSpace.CreatePipeline();
PowerShell ps = PowerShell.Create();
ps.Runspace = runSpace;
//load as file - EWB
ps.AddScript( psScriptPath );
ps.AddCommand( "New-BuildCVFromSql" ).AddParameters(new Dictionary<string, string>()
{
{ "SqlOrExcelFile", @"C:\tempeval.sql" },
{ "Js", "JCDC" },
{ "FileName", @"Evaluation\EvaluationFormPartialListCV" }
});
foreach (PSObject result in ps.Invoke())
{
Debug.WriteLine ("Object : " + result);
}
}
Addendum 2:
Removing all the command stuff (because they only work for built in CmdLets, not user defined functions) and doing this instead seems to be calling the code though none of the depenedencies are laoded when it's run.. still looking into that.
ps.AddScript( @"New-BuildCVFromSql 'C:\Documents and Settings\Brown.Ericw\My Documents\tempeval.sql' JCDC 'Evaluation\EvaluationFormPartialListCV'" );
seems to be calling the code though none of the depenedencies are loaded when it's run.. still looking into that. But if it's run from the ISE it works....
