vote up 2 vote down star

This is probably a very obvious question.. I would like to output variables and values out in a powershell script by setting up flags and seeing the data matriculate throughout the script.

How would I do this?

For example, what would be the php equivalent to:

echo "filesizecounter : " . $filesizecounter

thanks

flag

50% accept rate

5 Answers

vote up 5 vote down check

There are several ways:

Write-Host: Write directly to the console, not included in function/cmdlet output. Allows foreground and background colour to be set.

Write-Debug: Write directly to the console, if $DebugPreference set to Continue or Stop.

Write-Verbose: Write directly to the console, if $VerbosePreference set to Continue or Stop.

The latter is intended for extra optional information, Write-Debug for debugging (so would seem to fit in this case).

link|flag
The nice thing about Write-Debug and Write-Verbose is that you can leave your debug statements in your code, and just turn on the output when you need it using the appropriate preference variable. Saves time and is a nice feature for other users of your functions. – JasonMArcher Apr 2 at 20:04
You also want to get familiar with Out-String, because with any non-trivial object, you'll need to use that to convert the object to a display-able string before using any of those three Write-* cmdlets. – Jaykul Nov 2 at 7:11
vote up 2 vote down

Powershell interpolates does it not?

in PHP

echo "filesizecounter : " . $filesizecounter

can also be written as:

echo "filesizecounter : $filesizecounter"

in powershell something like this should suit your needs:

Write-Host"filesizecounter : $filesizecounter"
link|flag
vote up 1 vote down

Powershell has an alias mapping echo to Write-Host, so:
echo "filesizecounter : $filesizecounter" (PHP)
echo "filesizecounter : $filesizecounter" (Powershell)

link|flag
vote up 0 vote down
Write-Host "filesizecounter : " $filesizecounter
link|flag
vote up 0 vote down

Check out the script-editor/debugger that comes with PowerGUI. It may be suitable for what you are doing. I understand that Powershell 2 comes with a debugger too (but I haven't tried it).

link|flag

Your Answer

Get an OpenID
or

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