Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Windows PowerShell
Blog of Windows PowerShell team. Improving the world one-liner at a time.
This Blog
About
Syndication
RSS 2.0
Atom 1.0
Search
Go
Tags
ApartmentState
CMDLET
CMDLET:FORMAT
CMDLET:UTILITY
Custom Snapin
DOCUMENTATION
DOTNET
ENVIRONMENT
ERROR
FAQ
FORMATEXTENSION
Get-Command
Get-Help
Get-Random
Help file
HelpFile
Impersonation
installation
INTERNAL
LANGUAGE
LANGUAGE:CONTROL
PARSER
PHILOSOPHY
Proxy
PsSnapin
Release/Download
Remoting
ScriptCmdlet
SDK
SECURITY
SHELL
TOOL
TYPE:COM
TYPE:WMI
TYPE:XML
TYPEEXTENSION
uninstallation
Archives
May 2008 (6)
April 2008 (18)
March 2008 (18)
February 2008 (12)
January 2008 (13)
December 2007 (4)
November 2007 (26)
October 2007 (6)
September 2007 (8)
August 2007 (11)
July 2007 (5)
June 2007 (27)
May 2007 (33)
April 2007 (11)
March 2007 (28)
February 2007 (16)
January 2007 (34)
December 2006 (25)
November 2006 (26)
October 2006 (10)
September 2006 (17)
August 2006 (16)
July 2006 (20)
June 2006 (22)
May 2006 (11)
April 2006 (62)
October 2006 - Posts
Saturday, October 21, 2006 5:13 AM
Power and Pith
In our newsgroup, Benny asked the question, “How to get subdir items with full path name?” ClaudioG64 responded: PS> get-childitem C:\ | foreach-object -process { $_.FullName } Dreeschkind replied that we had pithier ways of doing it posting: PS>
Posted by
PowerShellTeam
|
14 Comments
Friday, October 20, 2006 4:39 AM
Turning the dial to 11 with Custom TypeConverters
If you are the sort of bloke that likes to turn the dial to 11, you should check out Abhishek's recent blog entry on Custom TypeConverters: http://abhishek225.spaces.live.com/Blog/cns!13469C7B7CE6E911!191.entry Much of the power of Windows PowerShell
Posted by
PowerShellTeam
|
0 Comments
Filed under:
INTERNAL
,
TYPEEXTENSION
Monday, October 16, 2006 12:39 AM
Windows PowerShell Font Customization
Windows PowerShell Font Customization <Today we have a guest blog entry from another team in Microsoft> There’s a new set of fonts that have been developed and released this year bundled with the betas for the new Windows and Office. These 6 fonts
Posted by
PowerShellTeam
|
6 Comments
Saturday, October 14, 2006 11:10 PM
Windows PowerShell Exit Codes
Windows PowerShell Exit Codes PSMDTAG:FAQ: How can my script control the PowerShell exit code? Answers: 1. A normal termination will set the exitcode to 0 2. An uncaught THROW will set the exitcode to 1 3. The EXIT statement will stop the process and
Posted by
PowerShellTeam
|
5 Comments
Filed under:
FAQ
Saturday, October 14, 2006 9:07 PM
Live Syntax Checking
Sapien PrimalScript's support for WIndows PowerShell continues to get better. The latest addition is Live Syntax Checking. This is particularly useful for people who are starting out with PowerShell which is basically everyone at this point. Checkout
Posted by
PowerShellTeam
|
12 Comments
Friday, October 13, 2006 1:17 AM
HanselMinutes Interview
I had the pleasure to do an interview with Scott Hanselman. If you aren't already a regular HanselMinutes listener, I can strongly recommend it. Scott is super smart, articulate and entertaining. BTW - if you ever have a chance to see Scott demo PowerShell
Posted by
PowerShellTeam
|
1 Comments
Thursday, October 12, 2006 4:57 PM
Design For Operations for ISVs/Developers Workshop on October 23th and 24th, 2006
We still have some open slots for a Design For Operations for ISVs/Developers Worksho p on October 23 th and 24 th , 2006 . The goal of the workshop is to provide guidance on how to information for developers and architects who want to build manageable
Posted by
PowerShellTeam
|
2 Comments
Wednesday, October 11, 2006 11:26 PM
Windows PowerShell in Action
Well folks, at long last, my book is almost done :-) Before it goes out for print, you can get electronic copies through Manning's early access program: http://www.manning.com/payette/ The early access program is a chance for readers to provide feedback
Posted by
PowerShellTeam
|
12 Comments
Filed under:
LANGUAGE
,
SHELL
,
ENVIRONMENT
,
PARSER
,
LANGUAGE:CONTROL
,
DOCUMENTATION
Saturday, October 07, 2006 1:06 AM
Adding elements to XML objects with Windows PowerShell
While it’s very easy to load and view the content of XML documents how do you add new elements? Here’s how: Let’s create a simple XML document, one parent node with two children: PS> [xml]$x = “<top> <first>first child</first> <second>second
Posted by
PowerShellTeam
|
2 Comments
Friday, October 06, 2006 11:02 PM
Windows PowerShell RC2 FAQs
Since the release of Windows PowerShell RC2, we've been receiving many questions around some of the changes from previous versions of PowerShell to RC2. To help clear up and confusion, I've taken the most common questions I've been hearing and have answered
Posted by
PowerShellTeam
|
8 Comments