Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
June, 2006
MSDN Blogs
>
Windows PowerShell Blog
>
June, 2006
Server & Tools Blogs
>
Server & Management Blogs
>
Windows PowerShell Blog
All About Windows Server
Windows Server
Windows Server Essentials Blog
Partner & Customer Solutions
Ask The
Performance Team
Ask Premier Field Engineering
Ask the Core Team
Cloud OS Blogs
Brad Anderson - In the Cloud
Building Clouds
Server & Cloud
Datacenter Management
The System Center Team Blog
System Center Virtual Machine Manager
System Center Service Manager
System Center Operations Manager
System Center Data Protection Manager
System Center Orchestrator
Partner & Customer Solutions
Client Management
System Center Configuration Manager
System Center Service Manager
MDOP
Malware Protection Center
Windows Intune
SUS
Partner and Customer Solutions
Virtualization, VDI & Remote Desktop
Virtualization Team Blog
Ben Armstrong’s Virtualization Blog
Jose Barreto Blog on Hyper-V
Partner & Customer Solutions
Remote Desktop Services
Windows Multipoint Server
Ask the Core Team on Hyper-V
File & Storage & High Availability
File & Storage
Jose Barreto
Partner & Customer Solutions
Ask the Core Team on Failover Cluster
Clustering & High Availability
Windows Server Management
PowerShell
Hey Scripting Guy (PowerShell)
Server Manager
Group Policy
Networking
Identity & Access
Ask Directory Services
Active Directory Team Blog
Windows PowerShell Blog
Automating the world one-liner at a time…
Live Now on Server & Tools Blogs
Subscribe
Comments
Contact
Menu
Blog Home
Atom
Translate this page
Powered by
Microsoft® Translator
Tags
Advanced Functions
CMDLET
Community
CTP3
DOCUMENTATION
DOTNET
FAQ
Get-Help
HowTo
INTERNAL
Jeffrey Snover
LANGUAGE
PHILOSOPHY
PowerShell
PowerShell Deep Dive
PowerShell ISE
PowerShell V2
Presentation
Quest
Remoting
Sapien
TechED
Windows Server 2012
WMI
WPF
More
▼
Less
▲
Archives
Archives
August 2013
(1)
July 2013
(4)
June 2013
(1)
April 2013
(1)
March 2013
(1)
January 2013
(2)
December 2012
(1)
October 2012
(2)
September 2012
(2)
August 2012
(1)
July 2012
(5)
June 2012
(9)
May 2012
(1)
April 2012
(3)
March 2012
(7)
February 2012
(1)
January 2012
(1)
December 2011
(2)
October 2011
(3)
September 2011
(3)
August 2011
(2)
July 2011
(2)
June 2011
(1)
May 2011
(1)
April 2011
(5)
March 2011
(4)
February 2011
(4)
January 2011
(2)
December 2010
(2)
November 2010
(1)
October 2010
(1)
September 2010
(1)
July 2010
(1)
June 2010
(9)
May 2010
(7)
April 2010
(4)
March 2010
(3)
February 2010
(7)
January 2010
(8)
December 2009
(8)
November 2009
(9)
October 2009
(7)
September 2009
(12)
August 2009
(8)
July 2009
(11)
June 2009
(16)
May 2009
(15)
April 2009
(18)
March 2009
(15)
February 2009
(6)
January 2009
(45)
December 2008
(31)
November 2008
(5)
October 2008
(12)
September 2008
(14)
August 2008
(8)
July 2008
(15)
June 2008
(26)
May 2008
(20)
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)
More
▼
Less
▲
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Windows PowerShell Blog
Listing all the COM automation PROGIDs
Posted
over 7 years ago
by
PowerShell Team
4
Comments
<edited 7/2/2006 to add categories and PSMDTAGs> Windows PowerShell allows you to program against COM automation. The typical way to do this is : $x = new-ojbect -ComObject <PROGID> The question then is, how do I know what progids...
Windows PowerShell Blog
Finding the static methods of a class
Posted
over 7 years ago
by
PowerShell Team
6
Comments
There are 2 ways to find the static methods of a class: 1) SDK documentation. 2) The Cmdlet: Get-Member ...
Windows PowerShell Blog
Windows PowerShell One Liner: Name to IP Address
Posted
over 7 years ago
by
PowerShell Team
18
Comments
<Edited 7/2/2006 to add tags and category> Wei Wu provided a nice one liner in response to a query in our NewsGroup: Microsoft.Public.Windows.PowerShell about how to resolve a hostname into an IP Address: PS> [ System.Net.Dns]::GetHostAddresses...
Windows PowerShell Blog
Improved Support for WMI
Posted
over 7 years ago
by
PowerShell Team
15
Comments
<Edited 7/2/2006 to add tags and categories> We have recently completed work on improved support for WMI including: Improved Adapters for WMI objects and classes Most notably the ability to easily invoke methods on both Direct language...
Windows PowerShell Blog
BaseName for FileInfo objects
Posted
over 7 years ago
by
PowerShell Team
8
Comments
<Edited to add categories> In our active, responsive, and useful newsgroup Microsoft.Public.Windows.PowerShell (SELL SELL SELL :-) ), MVP Alex Angelopoulos recented posted the following: Although file extension changing is a common technique...
Windows PowerShell Blog
Managing Active Directory with Windows PowerShell
Posted
over 7 years ago
by
PowerShell Team
14
Comments
MOW is now posting the details of his Managing Active Directory with Windows PowerShell demo that he performed at my TechEd talk. This is worthwhile for everyone to review. For the people at the talk, we covered a huge amount of data in a very short time...
Windows PowerShell Blog
Windows PowerShell One-Liner: List all the subdirectories in the current directory
Posted
over 7 years ago
by
PowerShell Team
6
Comments
dir | where {$_.PsIsContainer} Alternatively you could: dir |where {$_.mode -match "d"} Jeffrey Snover Windows PowerShell Architect
Windows PowerShell Blog
Cleaning up obsolete Windows PowerShell Aliases
Posted
over 7 years ago
by
PowerShell Team
1
Comments
Over the course of time, I've written a number of functions & cmdlets and then created aliases for those. Many of those where Ad Hoc and I've since thrown them away but I still have the aliases sticking around. Here is a quick and easy way to determine...
Windows PowerShell Blog
Leveraging Windows PowerShell Type Extensions to get documentation
Posted
over 7 years ago
by
PowerShell Team
12
Comments
After just a little use of Windows PowerShell, you quickly learn that you need to pipe objects in the GET-MEMBER utility to understand the capabilities of that object. Get-Member reflects against the object and shows you all of its methods and properties...
Windows PowerShell Blog
Windows PowerShell documentation
Posted
over 7 years ago
by
PowerShell Team
8
Comments
I have recently noticed that a number of people have missed the fact that we have a Windows PowerShell Documenation Download (for RC1) at: http://www.microsoft.com/downloads/details.aspx?FamilyId=2B0BBFCD-0797-4083-A817-5E6A054A85C9&displaylang...
Windows PowerShell Blog
Exchange PowerShell Scripting Contest
Posted
over 7 years ago
by
PowerShell Team
2
Comments
You are one line of code away from fame and riches ... eeerrrr ... make that fame and a trip to New York. The Exchange team is holding a scirpting contest. Produce the coolest one line Windows PowerShell script and you can win a trip to New York to attend...
Windows PowerShell Blog
Flexible pipelining with ScriptBlock Parameters
Posted
over 7 years ago
by
PowerShell Team
12
Comments
PSMDTAG:FAQ: How can I pipeline data to a parameter which does not accept pipeline input? PSMDTAG:FAQ: What are ScriptBlock Parameters? One of the foundation concepts of Windows PowerShell is pipelining objects instead of text. What happens is that...
Windows PowerShell Blog
More - How does PowerShell formatting really work?
Posted
over 7 years ago
by
PowerShell Team
3
Comments
<Edited 7/2/2006 with tags and categories> PSMDTAG:FAQ: Why doesn't output expand when I expand the width of the console? PSMDTAG:FAQ: Why doesn't output expand when I use -noElements on GROUP? Consider the example: PS> gps |group company...
Windows PowerShell Blog
$ERRORVIEW="CATEGORYVIEW"
Posted
over 7 years ago
by
PowerShell Team
3
Comments
<Edited 7/2/2006 with tags and categories> PSMDTAG:FAQ: What is $ErrorView? PSMDTAG:FAQ: How do I get error details? Have you tried out $ErrorView="CategoryView" yet? Remember - errors are just objects. Given that they are objects, we render...
Windows PowerShell Blog
Windows PowerShell Podcasts with Don Jones available at www.ScriptingAnswers.com
Posted
over 7 years ago
by
PowerShell Team
0
Comments
ScriptingAnswers.com has a number of scripting related podcasts at: http://feeds.feedburner.com/ScriptinganswerscomAudioNetwork I had the pleasure of discussing PowerShell with Don Jones during 2 of these. BTW - if you are not already clued into...
Windows PowerShell Blog
Windows PowerShell: Analyst briefing with RedMonk
Posted
over 7 years ago
by
PowerShell Team
2
Comments
I recently had the pleasure to do an analyst briefing with Michael Cote' of RedMonk. I really enjoyed it because until recently Michael was working at BMC so we had a number of shared contacts and he had a deep understanding of mgmt issues so I could...
Windows PowerShell Blog
Using Format Control Strings.
Posted
over 7 years ago
by
PowerShell Team
3
Comments
PSMDTAG:FAQ: How do I display large numbers with commas? PSMDTAG:FAQ: How do I use .NET formatting strings? As scripters, we often spend tons of times trying to get our data formated just the right way. Often this is an error-prone, frustrating experience...
Windows PowerShell Blog
TECHED: Start-Session Script
Posted
over 7 years ago
by
PowerShell Team
0
Comments
Before my TechEd sessions, I ran a Windows PowerShell script which used animated figures to inform the users how long it would be until the session would start. It threw out some wisecracks along the way to keep things light and maintain their attention...
Windows PowerShell Blog
TechEd Superstars: MOW, Jones, and Hanselman
Posted
over 7 years ago
by
PowerShell Team
2
Comments
Boy did I have a great time at TechEd! On Sunday, I got to finally meet Mark Van Orsouw (MOW of http://mow001.blogspot.com/ fame) and we both ran into Scott Hanselman ( of http://www.hanselman.com/blog/ fame). It was a blast to spend a couple hours sharing...
Windows PowerShell Blog
Tom's Hardware Windows PowerShell article
Posted
over 7 years ago
by
PowerShell Team
0
Comments
Check out Scott Fulton's latest article about my Windows PowerShell talk at TechEd. You can also see pictures of the only tie worn at TechEd Boston! :-) http://www.tgdaily.com/2006/06/14/teched2006_powershell_may_underlie_admin_guis/ For those of...
Windows PowerShell Blog
Windows PowerShell at TechEd
Posted
over 7 years ago
by
PowerShell Team
0
Comments
I'll be presenting 2 talks at TechEd in Boston: MGT306 - Windows PowerShell: Solving Mgmt Problems 6/12 from 9-10:15 MGT308 - Windows PowerShell: Next Generation Command Line Scripting 6/13 10:15-11:30 I've given both these talks before but these...
Windows PowerShell Blog
PowerShellIDE
Posted
over 7 years ago
by
PowerShell Team
13
Comments
Check out the amazing PowerShellIDE at http://PowerShell.com . Many of you probably already know Dr Tobias Weltner from his product SystemScripter http://www.scriptinternals.com . The PowerShell team has been talking to Tobias on and off for years now...
Page 1 of 1 (22 items)