Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7837163
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:29:35+00:00 2026-06-02T14:29:35+00:00

I have a PowerShell script stored in a file. In Windows PowerShell, I execute

  • 0

I have a PowerShell script stored in a file. In Windows PowerShell, I execute the script as
.\MergeDocuments.ps1 "1.docx" "2.docx" "merge.docx"

I want to call the script from C#. Currently I am using Process.Start as follows which works perfectly:
Process.Start(POWERSHELL_PATH, string.Format("-File \"{0}\" {1} {2}", SCRIPT_PATH, string.Join(" ", filesToMerge), outputFilename));

I want to run it using Pipeline class, something like the below code but I don’t know how to pass the arguments (keep in mind that I don’t have named arguments, I am just using $args)

// create Powershell runspace
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.Open();

RunspaceInvoke runSpaceInvoker = new RunspaceInvoke(runspace);
runSpaceInvoker.Invoke("Set-ExecutionPolicy Unrestricted");

// create a pipeline and feed it the script text (AddScript method) or use the filePath (Add method)
Pipeline pipeline = runspace.CreatePipeline();
Command command = new Command(SCRIPT_PATH);
command.Parameters.Add("", ""); // I don't have named paremeters
pipeline.Commands.Add(command);

pipeline.Invoke();
runspace.Close();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T14:29:44+00:00Added an answer on June 2, 2026 at 2:29 pm

    Just found it in one of the comments to another question

    In order to pass arguments to the $args pass null as the parameter name, e.g. command.Parameters.Add(null, "some value");

    The script is called as:
    .\MergeDocuments.ps1 "1.docx" "2.docx" "merge.docx"

    Here is the full code:

    class OpenXmlPowerTools
    {
        static string SCRIPT_PATH = @"..\MergeDocuments.ps1";
    
        public static void UsingPowerShell(string[] filesToMerge, string outputFilename)
        {
            // create Powershell runspace
            Runspace runspace = RunspaceFactory.CreateRunspace();
            runspace.Open();
    
            RunspaceInvoke runSpaceInvoker = new RunspaceInvoke(runspace);
            runSpaceInvoker.Invoke("Set-ExecutionPolicy Unrestricted");
    
            // create a pipeline and feed it the script text
            Pipeline pipeline = runspace.CreatePipeline();
            Command command = new Command(SCRIPT_PATH);
            foreach (var file in filesToMerge)
            {
                command.Parameters.Add(null, file);
            }
            command.Parameters.Add(null, outputFilename);
            pipeline.Commands.Add(command);
    
            pipeline.Invoke();
            runspace.Close();
        }
    }
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Batch file which will call a Powershell Script : BATCH FILE
I have a powershell script which imports data from a csv file, and then
I have to invoke a PowerShell script from a batch file. One of the
I have a Powershell script that copies files from one location to another. Once
Does anyone have a Powershell script to change the credentials used by a Windows
How do I have a PowerShell script embedded within the same file as a
I have the following string expression in a PowerShell script: select count(*) cnt from
We have a powershell script that creates a local html file and the owner
I have a powershell script that is replacing patterns in a file with the
I have a powershell script ( setup.ps1 ), that we use as the entry

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.