PowerShell, RunSpace, Pipeline. I need to use a powershell in my script Please help! c#
hi there thought love help. no matter how hard google, , read endless amout of information not working. keep hitting wall powershell, runspace , pipeline. goramit! sorry getting frustrated.
right code trying working
string fileserver = servers;
string exepath = "file path 2 \\ 1 \ due being exit other wise";
string folder = ou1;
string subfolder = ou2;
string root = "root path";
string path = "$" + root + "\\" + ou1 + "\\" + ou2;
string template = " thing needed";
string command = "invoke-command-computer $" + fileserver + " -argumentlist $" + exepath + ",$" + path + ",$" + template + " -scriptblock {param($" + exepath + ",$" + path + ",$" + template + ") & $" + exepath + "\\dirquota.exe autoquota add /path:$" + path + " /sourcetemplate:$" + template + "}";
using (runspace script = runspacefactory.createrunspace())
{
script.open();
using (pipeline pipeline = script.createpipeline(command))
{
pipeline.invoke();
}
}
}
catch (exception ex)
{
console.writeline(ex.innerexception + ex.message + ex.stacktrace + "\n3" + "powershell" + datetime.now);
}
i'm sure i'm doing wrong, have no clue doing anymore there many versions , none need , not enough information me make correct calculations.
script supose call powershell script run on arguments given. use
invoke-command-computer $fileserver -argumentlist $exepath ,$path,$template -scriptblock {param($exepath ,$path , $template)& $exepath\dirquota.exe autoquota add /path:$path /sourcetemplate:$template };
now given need scrip needs how do it?
see i'm failing miserably @ have never worked power shell scripts in c# before , seems to
error every time error getting is
missing ')' in function parameter list. @ system.management.automation.parser
.reportexception(object targetobject, type exceptiontype, token errtoken, string
resourceidanderrorid, object[] args)
at system.management.automation.tokenizer.require(tokenid tokenid, string res
ourceidanderrorid, object[] args)
at system.management.automation.parser.parameterdeclarationrule(boolean ispar
ameterstatement, token startscriptblock, list`1& parametercomments)
at system.management.automation.parser.scriptblockrule(string name, boolean r
equirebrace, boolean isfilter, parameterdeclarationnode parameterdeclaration, li
st`1 functioncomments, list`1 parametercomments)
at system.management.automation.parser.subscriptblockrule()
at system.management.automation.parser.valuerule()
at system.management.automation.parser.compoundvaluerule()
at system.management.automation.parser.commandrule()
at system.management.automation.parser.pipelinerule()
at system.management.automation.parser.statementrule()
at system.management.automation.parser.statementlistrule(token start)
at system.management.automation.parser.scriptblockrule(string name, boolean r
equirebrace, boolean isfilter, parameterdeclarationnode parameterdeclaration, li
st`1 functioncomments, list`1 parametercomments)
at system.management.automation.parser.parsescriptblock(string input, boolean
interactiveinput)
at system.management.automation.automationengine.parsescriptblock(string scri
pt, boolean interactivecommand)
at system.management.automation.scriptcommandprocessor..ctor(string script, e
xecutioncontext context, boolean isfilter, boolean uselocalscope, boolean intera
ctivecommand, commandorigin origin)
at system.management.automation.runspaces.command.createcommandprocessor(exec
utioncontext executioncontext, commandfactory commandfactory, boolean addtohisto
ry)
at system.management.automation.runspaces.localpipeline.createpipelineprocess
or()
at system.management.automation.runspaces.localpipeline.invokehelper()
at system.management.automation.runspaces.localpipeline.invokethreadproc()
any appreciate please! if happen stumble upon solution let know , post it, way going , 2 days of research pleading in desperation wise people out there
kind regards
dazhiki
and in advance help.
all need eureka moment
somwone once wanted me run different type of powershel scripts... here cam with... made long time ago... :)
internal static collection<psobject> runpowershell(string psscript, string cmdparams) { //example paramerters ':' separated--- cmdparams "name=c:fil lpercent=50. 5" cmdparams = cleancmdparamsandaddlist(cmdparams, psscript); return psscript.indexof("function", system.stringcomparison.ordinal) >= 0 ? runcmdlet(psscript, cmdparams) : runfullps(psscript, cmdparams); } private static string cleancmdparamsandaddlist(string cmdparams, string psscript) { //exceptchars(new[] { ' ', '\t', '\n', '\r' }); //using hashset faster. cmdparams = cmdparams.exceptchars(new hashset<char>(new[] { ' ', '\t', '\n', '\r' })); return (cmdparams.indexof("list", system.stringcomparison.ordinal) >= 0) ? cmdparams : cmdparams + ":list"; } public static string exceptchars(this string str, ienumerable<char> toexclude) { stringbuilder sb = new stringbuilder(str.length);in str.where(c => !toexclude.contains(c))) { sb.append(c); } return sb.tostring(); } private static collection<psobject> runcmdlet(string psscript, string cmdparams) { //make script bool variables switches psscript = psscript.replace("[boolean]", "[switch]"); //.replace("[parameter(mandatory=$true)]", "[parameter(mandatory=$false)]"); runspaceconfiguration runspaceconfiguration = runspaceconfiguration.create(); collection<psobject> results = new collection<psobject>(); int indexoffunction = psscript.indexof("function"); stringbuilder getfunctionname = new stringbuilder(); while (psscript[indexoffunction].tostring() != "(") { getfunctionname.append(psscript[indexoffunction]); indexoffunction++; } string functionname = getfunctionname.tostring().replace("function", "").trim(); functionname += " "; string[] sparams = cmdparams.split(':'); foreach (var param in sparams) { string[] arparam = param.split('='); //commandparameter parameters = new commandparameter("key", "value"); //commandparameter parameter = new commandparameter(arparam[0], arparam[1]); var arcount = arparam.count(); //test-filessystemspace -name c -fillpercent 85.5 -list switch (arcount) { case 2: functionname += "-" + arparam[0] + " " + arparam[1] + " "; //command.parameters.add(arparam[0], arparam[1]) break; case 1: functionname += "-" + arparam[0] + " "; break; } } psscript += "\r\n\r\n" + functionname.trim() + "\r\n\r\n"; // create powershell runspace using (runspace runspace = runspacefactory.createrunspace(runspaceconfiguration)) { runspace.open(); runspaceinvoke runspaceinvoker = new runspaceinvoke(runspace); runspaceinvoker.invoke("set-executionpolicy unrestricted"); // create pipeline , feed script text using (pipeline pipeline = runspace.createpipeline()) { //pipeline.commands.addscript(psscript); command cmdscript = new command(psscript, true); if (pipeline != null) { pipeline.commands.add(cmdscript); //pipeline.commands.add(command); // execute script try { results = pipeline.invoke(); } catch (exception ex) // functionname "test-filessystemspace -name c,u -fillpercent 85.5 -list " string { results.add(new psobject((object)ex.message)); } } // close runspace runspace.close(); } return results; } } private static collection<psobject> runfullps(string psscript, string cmdparams) { collection<psobject> results = new collection<psobject>(); runspaceconfiguration runspaceconfiguration = runspaceconfiguration.create(); // create powershell runspace using (runspace runspace = runspacefactory.createrunspace(runspaceconfiguration)) { runspace.open(); runspaceinvoke runspaceinvoker = new runspaceinvoke(runspace); runspaceinvoker.invoke("set-executionpolicy unrestricted"); // create pipeline , feed script text using (pipeline pipeline = runspace.createpipeline()) { //pipeline.commands.addscript(psscript); command cmdscript = new command(psscript, true); string[] sparams = cmdparams.split(':'); foreach (var param in sparams) { string[] arparam = param.split('='); //commandparameter parameters = new commandparameter("key", "value"); //commandparameter parameter = new commandparameter(arparam[0], arparam[1]); var arcount = arparam.count(); if (arcount == 2) { //cmdscript.parameters.add(parameter); cmdscript.parameters.add(arparam[0], arparam[1]); //cmdscript.parameters.add("-" + arparam[0] + " " + arparam[1]); } else if (arcount == 1) { //consider parameter switch cmdscript.parameters.add(arparam[0], true); } } pipeline.commands.add(cmdscript); // execute script try { results = pipeline.invoke(); } catch (exception ex) { results.add(new psobject((object)ex.message)); } // close runspace runspace.close(); } return results; } }
Windows Server > Windows PowerShell
Comments
Post a Comment