1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Prerequisites - Added optional arguments to PowerShell actions

This commit is contained in:
Robert 2021-05-25 23:19:14 +02:00
parent a6f52ce4a0
commit 42fdf44df9
2 changed files with 26 additions and 4 deletions

View File

@ -15,10 +15,15 @@ namespace Artemis.Core
/// <param name="name">The name of the action</param>
/// <param name="code">The inline code to run</param>
/// <param name="elevate">A boolean indicating whether the file should run with administrator privileges</param>
public RunInlinePowerShellAction(string name, string code, bool elevate = false) : base(name)
/// <param name="arguments">
/// Optional arguments to pass to your script, you are responsible for proper quoting etc.
/// <para>Arguments are available in PowerShell as <c>$args[0], $args[1]</c> etc.</para>
/// </param>
public RunInlinePowerShellAction(string name, string code, bool elevate = false, string? arguments = null) : base(name)
{
Code = code;
Elevate = elevate;
Arguments = arguments;
ProgressIndeterminate = true;
}
@ -32,6 +37,12 @@ namespace Artemis.Core
/// </summary>
public bool Elevate { get; }
/// <summary>
/// Gets optional arguments to pass to your script, you are responsible for proper quoting etc.
/// <para>Arguments are available in PowerShell as <c>$args[0], $args[1]</c> etc.</para>
/// </summary>
public string? Arguments { get; }
/// <inheritdoc />
public override async Task Execute(CancellationToken cancellationToken)
{
@ -57,7 +68,7 @@ namespace Artemis.Core
ShowProgressBar = true;
ProgressIndeterminate = true;
int result = await ExecuteFileAction.RunProcessAsync("powershell.exe", $"-File {file}", Elevate);
int result = await ExecuteFileAction.RunProcessAsync("powershell.exe", $"-File {file} {Arguments}", Elevate);
Status = $"PowerShell exited with code {result}";
}

View File

@ -16,10 +16,15 @@ namespace Artemis.Core
/// <param name="name">The name of the action</param>
/// <param name="scriptPath">The full path of the script to run</param>
/// <param name="elevate">A boolean indicating whether the file should run with administrator privileges</param>
public RunPowerShellAction(string name, string scriptPath, bool elevate = false) : base(name)
/// <param name="arguments">
/// Optional arguments to pass to your script, you are responsible for proper quoting etc.
/// <para>Arguments are available in PowerShell as <c>$args[0], $args[1]</c> etc.</para>
/// </param>
public RunPowerShellAction(string name, string scriptPath, bool elevate = false, string? arguments = null) : base(name)
{
ScriptPath = scriptPath;
Elevate = elevate;
Arguments = arguments;
ProgressIndeterminate = true;
}
@ -33,6 +38,12 @@ namespace Artemis.Core
/// </summary>
public bool Elevate { get; }
/// <summary>
/// Gets optional arguments to pass to your script, you are responsible for proper quoting etc.
/// <para>Arguments are available in PowerShell as <c>$args[0], $args[1]</c> etc.</para>
/// </summary>
public string? Arguments { get; }
/// <inheritdoc />
public override async Task Execute(CancellationToken cancellationToken)
{
@ -45,7 +56,7 @@ namespace Artemis.Core
ShowProgressBar = true;
ProgressIndeterminate = true;
int result = await ExecuteFileAction.RunProcessAsync("powershell.exe", $"-File {ScriptPath}", Elevate);
int result = await ExecuteFileAction.RunProcessAsync("powershell.exe", $"-File {ScriptPath} {Arguments}", Elevate);
Status = $"PowerShell exited with code {result}";
}