Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
March, 2009
MSDN Blogs
>
Windows PowerShell Blog
>
March, 2009
Server & Tools Blogs
>
Server & Management Blogs
>
Windows PowerShell Blog
All About Windows Server
Windows Server
Windows Server Essentials Blog
Building Clouds
Partner & Customer Solutions
Server & Cloud
Ask The
Performance Team
Ask Premier Field Engineering
Ask the Core Team
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
Microsoft Leadership
Brad Anderson - In the Cloud
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
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
Image Manipulation in PowerShell
Posted
over 4 years ago
by
PowerShell Team
2
Comments
The other week, I showed a Get-ProgID function that I used to help someone at Microsoft Research find a good object to talk to images. A few comments jumped to one of the possible solutions, which is to use the .NET Drawing assembly (which I have to load...
Windows PowerShell Blog
Active Directory Administrative Center for Windows Server 2008 R2 implemented using ADPowershell!
Posted
over 4 years ago
by
PowerShell Team
2
Comments
Windows Server 2008 R2 doesn’t just add ADPowershell – it also adds Active Directory Administrative Center (or ADAC), a new GUI tool for AD administrators. Read about it on TechNet . What’s more, while you can’t tell just from looking at it, ADAC is implemented...
Windows PowerShell Blog
Get closure with GetNewClosure
Posted
over 4 years ago
by
PowerShell Team
3
Comments
Have you ever created scriptblocks on the fly, say in a foreach loop, and they totally mess up because they all have the same value? This is something sort of advanced, and typically used when you’re proxying an object. The most basic example would...
Windows PowerShell Blog
Tied Variables in PowerShell
Posted
over 4 years ago
by
PowerShell Team
5
Comments
With Add-Type and $executioncontext you can add special varibles that have tied values. I made $random, and $now add-type @" using System; using System.Management.Automation; public class RandomVariable : PSVariable { Random r; public RandomVariable...
Windows PowerShell Blog
Get-ProgID
Posted
over 4 years ago
by
PowerShell Team
4
Comments
The other day, a friend over in Microsoft Research wanted to figure out how to get out the width and height of an image in PowerShell. There are many ways that you can approach this particular problem. I knew three right off of the top of...
Windows PowerShell Blog
Active Directory Powershell Blog
Posted
over 4 years ago
by
PowerShell Team
3
Comments
AD team has started a new blog for their PowerShell Cmdlets.. In their own words "We are here to answer any questions about AD Powershell, share some tips and tricks, discuss the history behind certain decisions and features and hear your feedback on...
Windows PowerShell Blog
Local Boy Makes Good
Posted
over 4 years ago
by
PowerShell Team
19
Comments
Check it out: http://www.microsoft.com/presspass/exec/de/snover/default.mspx One of the biggest Snoopy Dance moments of my life! BTW - this is really a reflection of how important Microsoft views PowerShell. I'd love to say more but I've...
Windows PowerShell Blog
dir –a:d
Posted
over 4 years ago
by
PowerShell Team
10
Comments
In cmd, listing files based on attributes was simple: only directories dir /a:d only files (no directories) dir /a:-d only hidden files dir /a:h In PowerShell, it’s not so easy: only directories dir ...
Windows PowerShell Blog
Reserving keywords
Posted
over 4 years ago
by
PowerShell Team
35
Comments
A couple months ago we asked our MVPs how they felt about reserving keywords in V2. We received some excellent but mixed feedback, so we’d like to open the discussion up a bit wider. There are keywords we hope to use in a future version of PowerShell...
Windows PowerShell Blog
Out-GridView Revisited
Posted
over 4 years ago
by
PowerShell Team
14
Comments
It has been more than one year since we updated Out-GridView feature with you. In case you are not familiar with Out-GridView yet, it is a unique PowerShell cmdlet that users can pipe command output to a separate window, and it enables users organize...
Windows PowerShell Blog
How to Create an Object in PowerShell
Posted
over 4 years ago
by
PowerShell Team
12
Comments
Today someone in Xbox Live Operations (the folks that keep xBox Live alive and well) pinged me with a simple question about PowerShell with a complicated answer: “How do I create a class in PowerShell?” There’s two scenarios I find where...
Windows PowerShell Blog
Free PowerShell EBook
Posted
over 4 years ago
by
PowerShell Team
9
Comments
PowerShell MVP and prodigious PowerShell blogger Keith Hill has converted his very popular Effective PowerShell blog series into a FREE Ebook. You can download it HERE . Here is a taste of you'll you'll get: Table of Contents Introduction ........
Windows PowerShell Blog
2009 MVP Summit
Posted
over 4 years ago
by
PowerShell Team
5
Comments
The MVP summit started yesterday and we meet with our MVPs today. This is one of my favorite events of the year. MVPs are people in the community that are very active (and helpful [yes - they look at both :-)] ) in a particular technology...
Windows PowerShell Blog
PowerShell Folksonomy - Are You In?
Posted
over 4 years ago
by
PowerShell Team
3
Comments
A while ago I did some experimentation with a PowerShell folksonomy . The idea was to tag internet content (blogs, comments, newsgroup replies, etc) with unique tags that search engines would pick up and make it easier to find exactly the information...
Windows PowerShell Blog
Where Did That Come From?
Posted
over 4 years ago
by
PowerShell Team
5
Comments
Have you ever found yourself asking the question, "where did THAT come from?"? In PowerShell we try to give you mechanisms you can use to answer questions like that. We spend extra resources (memory, cpu cycles, etc) to do...
Page 1 of 1 (15 items)