up vote 10 down vote favorite
1
share [g+] share [fb]

I have a file template.txt which contains the following:

Hello ${something}

I would like to create a PowerShell script that reads the file and expands the variables in the template, i.e.

$something = "World"
$template = Get-Content template.txt
# replace $something in template file with current value
# of variable in script -> get Hello World

How could I do this?

link|improve this question

Great question! I just needed to figure out how to do the same thing. – Noldorin Jul 18 '11 at 22:08
Just to reiterate a comment on an answer below, I do not know of a way to do this (variable expansion) that does not allow arbitrary expressions to be executed. I gave up on powershell variables and used environment variables with [System.Environment]::ExpandEnvironmentVariables() instead. Any safe solution using powershell variables would be very interesting! – Tao Dec 19 '11 at 8:22
feedback

2 Answers

up vote 8 down vote accepted

Another option is to use ExpandString() e.g.:

$expanded = $ExecutionContext.InvokeCommand.ExpandString($template)

Invoke-Expression will also work. However be careful. Both of these options are capable of executing arbitrary code e.g.:

# Contents of file template.txt
"EvilString";$(remove-item -whatif c:\ -r -force -confirm:$false -ea 0)

$template = gc template.txt
iex $template # could result in a bad day

If you want to have a "safe" string eval without the potential to accidentally run code then you can combine PowerShell jobs and restricted runspaces to do just that e.g.:

PS> $InitSB = {$ExecutionContext.SessionState.Applications.Clear(); $ExecutionContext.SessionState.Scripts.Clear(); Get-Command | %{$_.Visibility = 'Private'}}
PS> $SafeStringEvalSB = {param($str) $str}
PS> $job = Start-Job -Init $InitSB -ScriptBlock $SafeStringEvalSB -ArgumentList '$foo (Notepad.exe) bar'
PS> Wait-Job $job > $null
PS> Receive-Job $job
$foo (Notepad.exe) bar

Now if you attempt to use an expression in the string that uses a cmdlet, this will not execute the command:

PS> $job = Start-Job -Init $InitSB -ScriptBlock $SafeStringEvalSB -ArgumentList '$foo $(Start-Process Notepad.exe) bar'
PS> Wait-Job $job > $null
PS> Receive-Job $job
$foo $(Start-Process Notepad.exe) bar

If you would like to see a failure if a command is attempted, then use $ExecutionContext.InvokeCommand.ExpandString to expand the $str parameter.

link|improve this answer
That's perfect, thanks! – Paolo Tedesco Nov 3 '09 at 16:14
Sorry if I'm misunderstanding something, but as far as I can tell ExpandString() is not safer at all... It still does expression expansion, which means in your example, specifically, everything in C:\ still gets deleted! Did you mean to indicate that even with ExpandString() arbitrary code will also be executed? – Tao Dec 19 '11 at 8:17
(in the example above, $ExecutionContext.InvokeCommand.ExpandString($template) results in an equally bad day!) – Tao Dec 19 '11 at 8:18
@Tao, yep you're write on the lack of safety with ExpandString. See the updated answer for a better approach. – Keith Hill Dec 19 '11 at 16:57
cool, I have to play with this, looks great! Thanks for the update! – Tao Dec 19 '11 at 17:02
feedback

I've found this solution:

$something = "World"
$template = Get-Content template.txt
$expanded = Invoke-Expression "`"$template`""
$expanded
link|improve this answer
Could get you in trouble if there was code in the file. – Mike Shepard Nov 3 '09 at 15:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.