-
Recent Posts
- Scripting Guys Blog Posts on Using Visual Studio Code for PowerShell Development
- Preview of Module Build and Publish with Visual Studio Code and the PowerShell Extension
- Breakpoint Enhancements in the v0.5.0 PowerShell Extension for Visual Studio Code
- Creating a PowerShell Command that Process Paths using Visual Studio Code
- New Release of PowerShell Extension For Visual Studio Code
Recent Comments
Archives
- February 2017
- March 2016
- February 2016
- December 2015
- September 2015
- August 2015
- July 2015
- May 2015
- April 2015
- January 2015
- November 2014
- October 2014
- July 2014
- April 2014
- October 2013
- September 2013
- July 2013
- May 2013
- April 2013
- January 2013
- September 2012
- July 2012
- April 2012
- March 2012
- January 2012
- December 2011
- October 2011
- September 2011
- March 2011
- September 2010
- July 2010
- May 2010
- January 2010
- December 2009
- October 2009
- September 2009
- August 2009
- July 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- June 2007
- May 2007
- March 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- September 2005
- August 2005
- June 2005
- March 2005
- January 2005
- December 2004
Categories
- .NET
- .NETCore
- Agilent T&M Toolkit
- Agilent VEE
- Books
- Conference
- CSharp
- Effective PowerShell
- LINQ
- Microsoft
- Monad
- MSBuild
- Music
- PDC
- PowerShell
- PowerShell 2.0
- PowerShell 3.0
- PowerShell 4.0
- PowerShell 5.0
- PowerShellEditorServices
- PSCX
- PSScriptAnalyzer
- Software Architecture
- Software Development
- Uncategorized
- VSCode
- Windows 7
- WinRT
Meta
Monthly Archives: June 2007
New PSCX Eye Candy for Vista
If you are using PSCX 1.1.1 and are running on Vista and your not too attached to your own prompt function, I encourage you to try out EyeCandy.Vista.ps1. This works best if you are running the PSCX profile. If so, … Continue reading
Posted in PSCX
Leave a comment
Sorting IPAddresses the PowerShell Way
A question came up on the PowerShell newsgroup about how to sort IP addresses in PowerShell. The poster had down this in Linux like so: #> cat ips | awk -F. ‘{printf("%03d.%03d.%03d.%03d\n", $1,$2,$3,$4)};’ | sort -n -t "." | awk -F. … Continue reading
Posted in PowerShell
4 Comments
Using C# 3.0 Extensions Methods to Simplify WinForms Thread Marshalling
Most folks know by now that if you don’t call a WinForms control method on the same thread that created it, you are asking for trouble. In fact on .NET 2.0 the WinForms team did the right thing in throwing … Continue reading
Posted in Software Development
Leave a comment
Elevate function in PSCX 1.1.1
Here’s a useful function especially if you are on Vista and have left UAC enabled. If you install PSCX 1.1.1 and use the PSCX default profile you will get this function dot sourced in via the profile. However if you … Continue reading
Posted in PSCX
4 Comments
PowerShell Community Extensions 1.1.1 Released!
It took a little while but we finally got a lot of the issues resolved that you reported in PSCX 1.1. Tonight (well *early* this morning) I released PSCX 1.1.1. This release is a primarily a maintenance release. It fixes … Continue reading
Posted in PSCX
3 Comments
The Top Ten Habits/Traits of a Great Software Developer
Masters their primary programming language and support library. If you’re a .NET developer around here that means C# and the .NET Framework. This one is fairly obvious, right? These tools are your bread and butter. Masters their development tools especially the debugging tools. You … Continue reading
Posted in Software Development
3 Comments
Optimizing Performance of Get-Content for Large Files
Every so often a question comes across the PowerShell newsgroup microsoft.public.windows.powershell about why Get-Content is so slow when reading large log files. The typical answer is to use Microsoft’s LogParser utility. However that isn’t always satisfying if you want to … Continue reading
Posted in PowerShell
5 Comments
PowerShell Community Extensions 1.1.1 Soon
The PSCX team is getting real close to releasing PSCX 1.1.1. This is primarily a bug fix release where we have fixed the limitation of the ADSI provider stopping at 1000 objects plus ~30 other issues. There are a few … Continue reading
Posted in PSCX
Leave a comment
Quick Test for PowerShell Dot Source Library Scripts
We tend to write a lot of shared PowerShell functions and variable definitions which we package into a library script that we dot source into multiple scripts. In order to really test a change to our library scripts it requires running … Continue reading
Posted in PowerShell
Leave a comment