Link to home
Start Free TrialLog in
Avatar of Garry Shape
Garry ShapeFlag for United States of America

asked on

Powershell - concatenated command will not run

I am trying to string together a Schtasks command (for task scheduler) in powershell.

Through multiple variables, I successfully create the following:

$ScheduleAdd = "Schtasks /create /tn " + $userAlias +"-Covering-" + $identityAlias + " /sc ONCE /SD " + $single_StartDate + " /st 00:01 " + "/tr " + $([char]34) + "Powershell -command " + $addScript + $([char]34)
	Write-Host $ScheduleAdd

Open in new window


if I run "Write-Host $ScheduleAdd" after it in the script, it will successfully write to the console the exact command that can be copied and pasted into command prompt and run to create the scheduled task.

So I'm trying to figure out, why is it not actually adding the task to task scheduler when I set the variable above?

I can copy/paste it into the prompt and run it, and it adds, but if I don't copy paste the command, it will not add?

So Write-Host $ScheduleAdd will print out just like this:

Schtasks /create /tn TSmith-Covering-BJones /sc ONCE /SD 11-24-2014 /st 00:01 /tr "Powershell -command \\server\t$\schedules\Add-TSmith-Covering-BJones-11-24-2014.ps1"

It will print that out, but Powershell isn't executing it. I have to copy and paste it into the powershell window, and then it executes it, adding it to the scheduled tasks.
Avatar of becraig
becraig
Flag of United States of America image

Try invoke-expression
iex $ scheduleadd
Avatar of Garry Shape

ASKER

hmm doesn't appear to work. I am in a PSSession with Exchange but I don' think that's the problem.
other commands run fine

iex $ScheduleAdd

not sure
I even tried invoke-expression -command $ScheduleAdd
also tried $string = $ScheduleAdd | Out-String
then iex $string

no luck.

haha it's so weird! I need help lol
So I tried this:
$ScheduleAdd > "\\path\output.txt"

and that appears to be the same string that write-host displays into the text file.

Do I need to output to text file and then re-import for the command to run?
This worked for me without issue:
$ScheduleAdd = "Schtasks /create /tn TSmith-Covering-BJones /sc ONCE /SD 11-24-2014 /st 00:01 /tr ""Powershell -command \\server\t$\schedules\Add-TSmith-Covering-BJones-11-24-2014.ps1"""
iex $ScheduleAdd

Open in new window

Well I think the challenge is my $ScheduleAdd = has to be written out based on variables, so when I have multiple variables throughout the line, it starts to throw a fit because of all the quotes.

I'll try it out again and try the double quotes per your successful method
It should work with no problem once you correctly escape your quotes etc.


Let me know if it works.
LOL ok, well, it's adding the schedules to my task scheduler, not the computer I have a pssession against. I'm not sure why. I'll try adding the computer name, not sure if it's going to pass through the variables.
ASKER CERTIFIED SOLUTION
Avatar of becraig
becraig
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Ok so I can't invoke expression, that's for local computer.

tried invoke-command, didn't work. But invoke-command has the "-session $sessionname" option, and I added the session, but I can only call a .ps1 file with invoke-command, apparently, so now I have to put the scheduler command in a ps1 file. heh. trying it out
Oh man awesome, the /S flag, had no idea, it worked. Thanks so much