< # .SYNOPSIS Shows formatting of double values. .DESCRIPTION This script, a re-implementation of an MSDN Sample, creates a double value then formats it with 5 leading zeros. ...
Technorati Tags: PowerShell , Formatting , ToString() , script , code < # .SYNOPSIS Shows formatting of leading Zeros .DESCRIPTION This script, a re-implementation of an MSDN Sample, creates several numbers...
< # .SYNOPSIS This script re-implements an MSDN script which shows the use of the CurrencyDecimalSeparator property of a numeric format info object. .DESCRIPTION This script displays...
When you use Format-Table to create a table from a pipeline/variable, you’ll find that PowerShell truncates the output of a column. Here’s a simple example PSH [C:\foo]: Get-Process | Group company | Sort count | Select –Last 2 | Format-Table Count...
As I wrote earlier this week, on Wednesday night (well night in the UK!), I delivered PowerShell.Com’s first webcast. The webcast was a huge success – we had a total of 1350 people signed up to attend. At the peak we had just over 675 users watching Read...
Tomorrow, 26 January, I’ll be presenting a web cast of formatting with PowerShell. Those kind forks at Idera, sponsors of PowerShell.Com, have organised an on-line webcast where I’ll be looking at formatting with PowerShell. As of this afternoon, over...
PowerShell is an increasingly important tool for the IT Admin. In it’s early version, it didn’t do much, but with products like Exchange, SharePoint 2010, and System Centre being so PowerShell focused, it’s a tool every IT Admin needs to learn and learn...
< # .SYNOPSIS Uses .NET formatting strings to format date/time values .DESCRIPTION Recreates an MSDN sample for displaying Date/TIme Format. See links section for pointer to original Sample. .NOTES File...
<# .SYNOPSIS Demonstrates string formatting using Powershell .DESCRIPTION This script formats 2 numbers in a variety of ways, also formats an enum . An adaptation of the C# sample in the...