Category Archives: Windows Server 2008

Using AccountManagement classes to set local accounts expiry

This is a little more verbose than the WinNT example function set-expirydate { [CmdletBinding(SupportsShouldProcess=$true)] param ( [parameter(ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)] [string]$computer, [parameter(ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)] [string]$id ) BEGIN {Add-Type -AssemblyName System.DirectoryServices.AccountManagement} PROCESS { switch ($computer){ “.” {$computer = $env:computername} “localhost” {$computer = $env:computername} } … Continue reading

Posted in IT Security, PowerShell and Active Directory, Windows 7, Windows Server 2008, Windows Server 2008 R2 | Leave a comment

Setting local account expiry dates

Setting expiry dates on AD accounts is a common occurrence and is well documented. Setting expiry dates on local accounts is also possible $user = [adsi]“WinNT://./Test1, user” $expirydate = (Get-Date).AddDays(2) $user.Put(“AccountExpirationDate”, $expirydate) $user.SetInfo() $user.RefreshCache() $user | Format-List * This uses … Continue reading

Posted in IT Security, PowerShell and Active Directory, Windows 7, Windows Server 2008, Windows Server 2008 R2 | Leave a comment

Windows SysInternals Administrators Reference

Windows SysInternals Administrators Reference Title: Windows SysInternals Administrators Reference Publisher: Microsoft Press ISBN: 978-0-7356-5672-7 The SysInternals tool set – http://technet.microsoft.com/en-us/sysinternals/default.aspx  – should be one of a Windows administrator’s best friends. You may not need them every day but when you do … Continue reading

Posted in Books, Technology, Windows 7, Windows Server 2008, Windows Server 2008 R2 | Leave a comment

Surprise

Life is full of surprises and one that has happened to me revolves around the post that seems to get the most attention.  Since moving to one of my mirrors from Microsoft Live to WordPress one of the extra features … Continue reading

Posted in Windows Server 2008 | Leave a comment

Book Review: Windows Server 2008 Administrator’s Pocket Consultant

Author: William R. Stanek Publisher: Microsoft Press ISBN: 978-0-7356-2711-6 This is the second edition that has been updated for Windows Server 2008 R2. As usual I am applying my three main criteria for judging a book: · Is it technically … Continue reading

Posted in Windows Server 2008 | Leave a comment

Hyper-V and Virtual PC

Just a quick warning – be careful if you have virtual machines in virtual PC and switch to using Hyper-V.  Not sure what I did wrong (it was late last night) but managed to trash my virtual SQL Server There … Continue reading

Posted in Windows Server 2008 | Leave a comment

HP G60

I am currently using a HP G60 laptop.  Runs Windows 7 very well. I created a dual boot environment so I could install Windows 2008 R2 and to my pleasant surprise found Hyper-V runs on it.  Need to enable virtualisation … Continue reading

Posted in Windows Server 2008 | Leave a comment

Password Policy

As I mentioned in an earlier post I am reading the Study Guide for the Exchange 2007 Design Exam (70-237).  There is quite a good section on security that goes beyond the normal Exchange stuff. In fact the book overall … Continue reading

Posted in Windows Server 2008 | Leave a comment

Windows 2008 R2

Windows 2008 R2 (also sometimes referred to as Windows Server 7) was another topic I looked at today. Most important point it will have PowerShell v2 installed by default (apart from server core where it is an optional extra – … Continue reading

Posted in Windows Server 2008 | Leave a comment

Windows 2008 R2 AD

Dmitry has blogged about the new features in Windows 2008 R2 AD – http://dmitrysotnikov.wordpress.com/2008/11/04/server-2008-r2-active-directory/ – especially the PowerShell support.  I will be attending the repeat session later in the week and will post my comments on the session at that … Continue reading

Posted in Windows Server 2008 | Leave a comment