Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
May, 2009
MSDN Blogs
>
Windows PowerShell Blog
>
May, 2009
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
PowerShell 2.0 – Differences Between Win7Beta and Win7RC
Posted
over 4 years ago
by
PowerShell Team
2
Comments
Oisin Grehan, PowerShell MVP has done a diff between Powershell 2.0 that shipped with Win7 Beta and Win RC... very useful if you have moved to RC build (or planning to do so) http://www.nivot.org/2009/05/22/PowerShellV20DifferencesBetweenCTP3Win7BetaAndWin7RC...
Windows PowerShell Blog
Adding Custom Cmdlet Help for Providers
Posted
over 4 years ago
by
PowerShell Team
1
Comments
A new feature of Windows PowerShell 2.0 lets you write custom cmdlet help for Windows PowerShell providers. This blog explains how to do it. (The topic will also be covered in excruciating detail in MSDN, but we don't want you to wait.) What's a...
Windows PowerShell Blog
Update-TypeData, ISE CTP3 vs ISE RC, and Teched2009 Demos
Posted
over 4 years ago
by
PowerShell Team
2
Comments
There were quite a few name changes in the ISE Object Model from CTP3 to RC Using Update-TypeData, we can achieve some parity between the two We can add aliases to the CTP3 version to make it look like the RC Version For example, <Name>System...
Windows PowerShell Blog
Hal and Kirk on HanselMinutes
Posted
over 4 years ago
by
PowerShell Team
1
Comments
PowerShell MVPs Hal Rottenberg and Kirk Munro were interviewed for HanselMinutes audio talk show during TechEd 09 - good overview of Powershell http://www.hanselminutes.com/default.aspx?showID=180 Osama Sajid, Program Manager
Windows PowerShell Blog
Get-WindowTitle.ps1
Posted
over 4 years ago
by
PowerShell Team
5
Comments
I do this so frequently that I finally put it into a script called Get-WindowTitle.ps1 . Get-Process |where {$_.mainWindowTItle} |format-table id,name,mainwindowtitle –AutoSize Here is what it does: [4696:0]PS> Get-WindowTitle Id Name MainWindowTitle...
Windows PowerShell Blog
Processing Event Logs in PowerShell
Posted
over 4 years ago
by
PowerShell Team
8
Comments
PowerShell V2 ships with two sets of cmdlets for processing event logs, one is *-EventLog set and other is Get-WinEvent. PS > gcm *EventLog -CommandType cmdlet CommandType Name Definition ----------- ---- ---------- Cmdlet...
Windows PowerShell Blog
V2 Quick Tips: Finding Extra Outputs From Your Script
Posted
over 4 years ago
by
PowerShell Team
0
Comments
One of the nifty features of functions in PowerShell is that they can return as many results from as many places as you’d like. In fact, any method or cmdlet that would give you an output if you try it on the command line will also return values...
Windows PowerShell Blog
PowerShell session at TechEd 2009
Posted
over 4 years ago
by
PowerShell Team
4
Comments
Ibrahim and I presented session WSV402 at TechEd last week with great attendance. Attached are the slides and demos from the talk. Dan Harman, Program Manager Dan Harman Program Manager
Windows PowerShell Blog
Summer Scripting Games 2009
Posted
over 4 years ago
by
PowerShell Team
1
Comments
Scripting is fun .. and it gets better when you do it as part of Scripting Games hosted by Microsoft Script Center . But wait there is more - this year Scripting Center is hosting Summer Scripting Games in collaboration with PowerShellCommunity.org and...
Windows PowerShell Blog
Updates from Tech.Ed 09
Posted
over 4 years ago
by
PowerShell Team
2
Comments
I am not attending Tech.Ed but I am getting updates from my friends. PowerShell team is very excited about the offering we have for Tech.Ed this year... frankly, what is the best way to save money on your IT Infrastructure... Use PowerShell v2 and automate...
Windows PowerShell Blog
Copy-Acl
Posted
over 4 years ago
by
PowerShell Team
16
Comments
Today my wife told me about a problem on the family PC. There were a bunch of PDF files in a directory that had the wrong permissions so my son couldn’t access them. She modified the ACL on one of them using Explorer and verified that that...
Windows PowerShell Blog
Quick "5 Minute Concepts" Video series for Powershell 2.0
Posted
over 4 years ago
by
PowerShell Team
3
Comments
Phil Pennington from DPE has a very useful set of videos on Powershell 2.0 in "5 minute concept" series - Check it out http://channel9.msdn.com/tags/PSV2/ . We will add more videos here. Want some specific area to be covered?- let us know by leaving...
Windows PowerShell Blog
Fun With Alerts (“`a”)
Posted
over 4 years ago
by
PowerShell Team
11
Comments
I just decided to restart Outlook to see if that made some weirdness I was experiencing go away. As you may or may not know, the Outlook process often is running for quite a bit after the Outlook window goes away. As such, you really don’t...
Windows PowerShell Blog
PowerShell V2 - backward compatibility
Posted
over 4 years ago
by
PowerShell Team
5
Comments
Windows PowerShell 2.0 is backward compatible with Windows PowerShell 1.0. All the scripts written for V1 should work in V2. If you find instances of broken scripts from v1 please let us know through our connect site https://connect.microsoft.com/site...
Windows PowerShell Blog
PowerShellToys – WOW!
Posted
over 4 years ago
by
PowerShell Team
1
Comments
Gent Hito and the superstars at /n software has just announced a new product division, PowerShellToys. This division is focused exclusively in PowerShell technologies. PowerShellToys products bridge other Microsoft technologies to PowerShell...
Page 1 of 1 (15 items)