Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > PowerShell

Vista - v2ctp3: Output of less.exe differs when using Parameter() attribut

Reply
 
Old 01-27-2009   #1 (permalink)
Roy Ivy III


 
 

v2ctp3: Output of less.exe differs when using Parameter() attribut

I use less.exe as my preferred paginator. After installing PowerShell v2ctp3,
I've noticed some odd behavior of less.exe. I've narrowed the odd behavior
down to the following code:

function nobug
{
param(
$foo
)
less.exe c:\windows\system32\eula.txt
}

function bug
{
param(
[Parameter()]$foo
)
less.exe c:\windows\system32\eula.txt
}
On my XP PC, less.exe displays correctly with the nobug function. But the
bug function seems to have an incorrect impression of the console screen size
and displays its output primarily below the less prompt and doesn't clear the
screen correctly.

This behavior is duplicated on another VM copy of Vista as well.

I don't understand what contextual change(s) that occur while using the
[Parameter()] attribute that would cause less.exe to display different
output. Am I missing something here? Or is this some weird PowerShell bug?


My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
v2ctp3 -- PresentationFontCache PowerShell
Enexpected output when using output-csv PowerShell
Using multiple Parameter sets for a Parameter PowerShell
How to best control parameter attributes and parameter parsing in your own scripts? PowerShell


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46