I want to execute the PowerShell command in C + + programming. I've edited the command statement that needs to be run.PowerShell_CMD、XML_File
1 Answer
My assumption here is that you're trying to add -auto to the arguments. After reviewing the supplied image I would change the PowerShell code as well.
$task = Get-ScheduledTask "Test"
$items = @{}
if ($task.Actions.Execute -ne $null) {$items.Add('Execute', "$($task.Actions.Execute)")}
$items.Add('Argument', "$($task.Actions.Arguments) -auto")
if ($task.Actions.WorkingDirectory -ne $null) {$items.Add('WorkingDirectory',"$($task.Actions.WorkingDirectory)")}
$action = New-ScheduledTaskAction @items
$task.Actions = $action
Set-ScheduledTask -InputObject $task
Far simpler and easier to understand.
To run this in c++ you should dump the code to a temporary file.
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ofstream file;
file.open("test.ps1");
string newArg = "-auto";
string powershell;
powershell = "$task = Get-ScheduledTask \"Test\"\n";
powershell += "$items = @{}\n";
powershell += "if ($task.Actions.Execute -ne $null) {$items.Add('Execute', \"$($task.Actions.Execute)\")} \n";
powershell += "$items.Add('Argument', \"$($task.Actions.Arguments) " + newArg + "\") \n"; // 'Argument' not a typo
powershell += "if ($task.Actions.WorkingDirectory -ne $null) {$items.Add('WorkingDirectory',\"$($task.Actions.WorkingDirectory)\")} \n";
powershell += "$action = New-ScheduledTaskAction @items\n";
powershell += "$task.Actions = $action\n";
powershell += "Set-ScheduledTask -InputObject $task\n";
file << powershell << endl;
file.close();
system("powershell -ExecutionPolicy Bypass -F test.ps1");
remove("test.ps1");
}
9 Comments
kevin
I call system () to execute when the script is disabled, I've changed the settings with the command--"Set-executionpolicy remotesigned", but I can do it when I right-click the PowerShell
Matt R
So you're saying we can't use
-f file.ps1 ?kevin
Yes, I do not know why I use System () to perform the prompt to disable, manually right-click to do it.
kevin
I uploaded another XML file diagram, want to increase the red part of the node, without PowerShell implementation,can you help me write the command statement to increase this node?
Matt R
I've added a bypass for the ExecutionPolicy and made it copy over existing values if they exist. This should run and add any parameter you like in the
newArg string. |
system("powershell 'echo \"hello from powershell\"'");? I don't know how practical it is from anything more elaborate than that though...system("powershell -f temp.ps1");