-
Recent Posts
Archives
- May 2013 (20)
- April 2013 (22)
- March 2013 (7)
- February 2013 (12)
- January 2013 (24)
- December 2012 (19)
- November 2012 (15)
- October 2012 (8)
- September 2012 (19)
- August 2012 (7)
- July 2012 (5)
- June 2012 (19)
- May 2012 (30)
- April 2012 (21)
- March 2012 (65)
- February 2012 (94)
- January 2012 (54)
- December 2011 (17)
- November 2011 (11)
- October 2011 (15)
- September 2011 (39)
- August 2011 (57)
- July 2011 (58)
- June 2011 (65)
- May 2011 (53)
- April 2011 (25)
- March 2011 (12)
- February 2011 (18)
- January 2011 (27)
- December 2010 (2)
- November 2010 (14)
- October 2010 (13)
- September 2010 (1)
- June 2010 (11)
- May 2010 (31)
- April 2010 (29)
- March 2010 (19)
- February 2010 (31)
- January 2010 (28)
- December 2009 (11)
- November 2009 (40)
- October 2009 (2)
- September 2009 (8)
- August 2009 (21)
- July 2009 (21)
- June 2009 (27)
- May 2009 (32)
- April 2009 (24)
- March 2009 (41)
- February 2009 (42)
- January 2009 (34)
- December 2008 (30)
- November 2008 (40)
- October 2008 (42)
- September 2008 (52)
- August 2008 (40)
- July 2008 (35)
- June 2008 (38)
- May 2008 (29)
- April 2008 (32)
- March 2008 (59)
- February 2008 (43)
- January 2008 (47)
- December 2007 (30)
- November 2007 (62)
- October 2007 (54)
- September 2007 (43)
- August 2007 (44)
- July 2007 (55)
- June 2007 (57)
- May 2007 (55)
- April 2007 (43)
- March 2007 (61)
- February 2007 (50)
- January 2007 (21)
- December 2006 (7)
- November 2006 (16)
Categories
- .NET
- Active Directory
- Active Directory administration with PowerShell
- Architecture
- BITS
- Books
- COM
- Deep Dive
- DHCP
- DNS
- Events
- Exchange
- File system
- files
- Firewall
- General
- General IT matters
- Hyper-V
- IT Community
- IT Security
- Learning Powershell
- Math
- Microsoft
- Networking
- Office 2010
- Office 2013
- Opinion
- Outlook
- Philosophy
- Powershell
- PowerShell and Active Directory
- PowerShell and Exchange 2007
- PowerShell and IIS
- PowerShell and SQL Server
- PowerShell and WMI
- Powershell Basics
- PowerShell User Group
- PowerShell V2
- PowerShell V3
- PSAM
- Rant
- Registry
- Science Fiction
- Script of the Week
- Scripting
- Scripting Games
- SQL Server
- Strings
- Summit
- Technology
- Uncategorized
- Virtualisation
- Walking
- Windows 7
- Windows 8
- Windows 8 Server
- Windows Server 2008
- Windows Server 2008 R2
- Windows Server 2012
- WPF
- WSH
- WSUS
Meta
Twitter
- #PowerShell books at half price - manning.com 1 month ago
- Windows 2008 R2 to Windows 2012 - anyone seen difficulty switching between start and desktop? 8 months ago
- #PowerShell summit open for registration. Early bird savings PowerShell.org/summit & follow registration link 8 months ago
- UK #PowerShell group - PowerShell in Windows 2012 bit.ly/LCDSmVL 12 months ago
- Preparing for the next UG meeting - PowerShell in Server 2012 - too much to choose from 1 year ago
Monthly Archives: March 2008
Start Menu
Do you want to check what is on your start menu Get-WmiObject -Class Win32_LogicalProgramGroupItem | Select Name Very nicely shows if the item is from Default user, Public or the current user Share this post :
Posted in PowerShell and WMI
Leave a comment
Unix aliases
Many of the PowerShell cmdlets are given aliases that correspond to Unix commands. One of the standard Unix commands that seems to be missing is grep. In this post Jeffrey explains how Select-String supplies that functionality and then some. http://blogs.msdn.com/powershell/archive/2008/03/23/select-string-and-grep.aspx … Continue reading
Posted in Powershell
Leave a comment
PowerShell tab expansion
James has picked up on the fact that standard Tab expansion in PowerShell V1 doesn’t pick up functions. He has modified the PowerShell Community Extensions Tab Expansion function (now that is a mouthful – next Scripting Games challenge is to … Continue reading
Posted in Powershell
Leave a comment
March – UK PowerShell User Group
The March meeting of the PowerShell User Group will be held on Date: March 25thTime: 6.30 – 9.30pm Place: Clarks Legal, One Forbury Square, The Forbury, Reading RG1 3EB. A map showing the location and Reading’s infamous one way system … Continue reading
Posted in PowerShell User Group
Leave a comment
PowerShell and Excel
In this post http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!290.entry I showed how the restriction on automating Excel due to using non USA locales could be overcome. I gave an example of adding a workbook to Excel. There are a number of posts leading up to … Continue reading
Posted in Powershell
1 Comment
VMWare cmdlets
In this post – http://richardsiddaway.spaces.live.com/blog/cns!43CFA46A74CF3E96!1188.entry – I referred to the VMWare PowerShell cmdlets for VI This kit is available for download from http://communities.vmware.com/community/developer/windows_toolkit It is currently still marked as beta and contains 102 cmdlets for managing VMWare. This will get … Continue reading
Posted in Powershell
Leave a comment
Warning!!!
If you have not seen the warning posted on the PowerShell Team blog concerning the fate of ANY modifications to the PowerShell installed XML files when V2 is installed you must read this. http://blogs.msdn.com/powershell/archive/2008/03/22/never-modify-powershell-s-xml-files.aspx In other words if you have … Continue reading
Posted in Powershell
Leave a comment
System Updates
One method of digging into the updates applied to your system is via the Windows Update History. This can be accessed as follows $session = New-Object -ComObject Microsoft.Update.Session$search = $session.CreateUpdateSearcher()$count = $search.GetTotalHistoryCount()$history = $search.QueryHistory(1, $count)$history | Select Title, Date, Description … Continue reading
Posted in Powershell
Leave a comment
Scripting vs Interactive
I picked up a copy of Windows PowerShell Scripting Guide by Ed Wilson (MS Press) at the launch event earlier in the week. Can’t wait to try the flashing bunny script but that’s a different story. I write a full … Continue reading
Posted in Powershell
Leave a comment
VBScript to Powershell
Dmitry has done it again. The latest PowerGUI has VBScript to PowerShell conversion functionality – see http://dmitrysotnikov.wordpress.com/ Share this post :
Posted in Powershell
Leave a comment