Sign In
Windows PowerShell Blog
Automating the world one-liner at a time...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Advanced Functions
CMDLET
CTP3
DOCUMENTATION
DOTNET
FAQ
Get-Help
HowTo
INTERNAL
Jeffrey Snover
LANGUAGE
PHILOSOPHY
PowerGUI
PowerShell
PowerShell Deep Dive
PowerShell ISE
PowerShell V2
Presentation
Quest
Remoting
Sapien
TechED
Video
WMI
WPF
Archive
Archives
June 2012
(1)
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)
September, 2006
MSDN Blogs
>
Windows PowerShell Blog
>
September, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Windows PowerShell Blog
Linking against RC2
Posted
over 6 years ago
by
PowerShell Team
9
Comments
The RC2 SDK is not yet available. Until it is, here is a quick and dirty way for you to find/extract the DLLs to link your code against. Do this from a RC2 shell and you'll a copy of the DLLS in C:\SDK: PS>[appdomain]::currentdomain.getassemblies...
Windows PowerShell Blog
Windows PowerShell RC2 Now Available
Posted
over 6 years ago
by
PowerShell Team
59
Comments
Windows PowerShell RC2 Now Available Today Microsoft announced the availability of Microsoft Windows PowerShell RC2, the command line shell and scripting language that helps IT Professionals achieve greater productivity and control of system administration...
Windows PowerShell Blog
Windows PowerShell ISV/Developer Conference – Oct 9-10th, 2006
Posted
over 6 years ago
by
PowerShell Team
5
Comments
Windows PowerShell ISV/Developer Conference – Oct 9-10 th , 2006 We have a small number of available slots available for ISVs or Enterprise Developers to attend the Windows PowerShell & Microsoft Management Console (MMC) ISV Workshop (Building...
Windows PowerShell Blog
TECHED: IT Forum
Posted
over 6 years ago
by
PowerShell Team
3
Comments
We are putting together our plans for TECHED IT Forum being held in Barcelona from Nov 14-17. I'll be there as well as a number of other people from the Windows PowerShell team. We'll be showing some new and very exciting stuff so if you are an IT Professional...
Windows PowerShell Blog
Get-Process Piped to Dir
Posted
over 6 years ago
by
PowerShell Team
10
Comments
Did you know that you can pipe the output of Get-Process into dir? Don't believe it? Let me prove it: PS> Get-Process wi* Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName ------- ------ ----- ----- ----- ------ -- ----------- 95 4 1080 2892...
Windows PowerShell Blog
Useful DateTime functions - LibraryTime.ps1
Posted
over 6 years ago
by
PowerShell Team
7
Comments
I was going to post a blog entries and realized that the example I wanted to give used some of my utility functions so I'll share them first. I hope you find them interesting. I put them in a file called LibraryTime.ps1 and dot source that during my login...
Windows PowerShell Blog
The Wonders of Date Math using Windows PowerShell
Posted
over 6 years ago
by
PowerShell Team
9
Comments
Larry Hayden posted a query about dates at: http://techtasks.com/bookmarks/powershell/2006/09/interview-with-a-scripter-jeffrey-snover/ He has a script which gets all the Application Events that happened TODAY: ———————————————————— $today = [DateTime...
Windows PowerShell Blog
ErrorLevel equivalent
Posted
over 6 years ago
by
PowerShell Team
7
Comments
PSMDTAG:FAQ: ErrorLevel - what is the PowerShell equivalent? In Cmd.exe, %ErrorLevel% is a builtin variable which indicates the success or failure of the last executable run. In PowerShell, we support: $? Contains True if last operation succeeded...
Windows PowerShell Blog
Draft - Creating Cmdlet Help
Posted
over 6 years ago
by
PowerShell Team
7
Comments
NOTE: This content is also included as an RTF attachment as well. Creating Cmdlet Help When creating your own cmdlet, you can also create Help content that Windows PowerShell can display using the Get-Help cmdlet. The Help content that describes...
Windows PowerShell Blog
Windows PowerShell on TechNet Radio
Posted
over 6 years ago
by
PowerShell Team
0
Comments
Tune in & Geek out at Technet Radio: http://www.microsoft.com/technet/community/tnradio/default.mspx There are a couple of PowerShell podcasts there: Drill down into Windows PowerShell: An interview with Jeffrey Snover Scripting with Windows...
Windows PowerShell Blog
Controlling Internet Explorer object from PowerShell
Posted
over 6 years ago
by
PowerShell Team
10
Comments
NOTE: The site must be in the Trusted Sites Zone for this script to work - James Brundage [MSFT] January 5th, 2009 The following example shows how to display all the processes in an IE window and highlight the ones with memory usage of greater than...
Windows PowerShell Blog
Thomas Lee on Monad (Windows PowerShell)
Posted
over 6 years ago
by
PowerShell Team
1
Comments
The site that has the Best of TECHED Boston also has the BEST of other shows as well. I'm not sure when/where Thomas gave this talk but I just watched it and it is highly entertaining. It's clear that Thomas has been in front of crowds a couple of (thousand...
Windows PowerShell Blog
FREE Windows PowerShell Help Tool from Sapien
Posted
over 6 years ago
by
PowerShell Team
1
Comments
Command line help is great because it is always there when you need it. That said, sometimes you want to have the help in one window while you experiement in the other. You can always do that with 2 console windows but why would you do that when you can...
Windows PowerShell Blog
Best of Tech.Ed 2006 (BOSTON)
Posted
over 6 years ago
by
PowerShell Team
0
Comments
TechNet has made the provided videos of the top rated sessions of the TechEd 2006 Boston conference available at: http://www.microsoft.com/emea/itshowtime/ My talk: Windows PowerShell: Next Generation Command Line Scripting is available at: http...
Windows PowerShell Blog
All crosshairs on the same prairie dog
Posted
over 6 years ago
by
PowerShell Team
1
Comments
When I lived in Colorado, I picked up the great concept/phrase, "All crosshairs on the same prairie dog". Damon Cortesi recent blog highlights this principle. http://dcortesi.com/2006/09/07/windows-powershell/ He posted a blog about the verbosity...
Windows PowerShell Blog
DateTime Utility Functions
Posted
over 6 years ago
by
PowerShell Team
6
Comments
I often want to find things that happened Today. For instance, which files got changed today. Windows PowerShell makes this easy to do but it can be a bit verbose and I do it a lot so I've added a function to my profile: IsToday. function isToday ...
Windows PowerShell Blog
BizTalk Server Applications: Get/Start/Stop
Posted
over 6 years ago
by
PowerShell Team
1
Comments
Tomas Restrepo has a nice script for getting/starting/stoping BizTalk Server Applications at: ht tp://www.winterdom.com/weblog/2006/09/02/BTSResetWithPowerShell.aspx I like how readable it the script is. It is completely obvious what is going on. Compare...
Page 1 of 1 (17 items)