Friday, August 28, 2009

Windows 2003 Password Policy

Just a quick point on Password Policy in Windows 2003 domains:

In Windows 2003 there's only one Default Domain Policy and it's applied at the Domain level. This has the Password Policy data in it and Password Policy can only be set in this one place and effects all users of the domain. You actually have to go in and edit the Default Domain Policy itself (which effects all users) rather than trying to apply a separate policy at a lower (eg: OU) level because the lower one will never take effect for Password Policy stuff. Incidentally many administrators feel your pain so Microsoft took it upon themselves to allow different Password Policies at an OU level in Windows 2008 native domains/forests.

Wednesday, December 24, 2008

GroupBoard Workspace 2007

So if you've dealt with this one it seems that there are two scenarios.

(1) It works with no problems.
(2) It doesn't seem to work no matter what you do.

You can imagine that I'm not writing about scenario (1). I've opened this post because I need to collect information about GroupBoard Workspace 2007 in one place so I'll be adding to this post as I find out more...

The error I get this morning when I try to create a new site with GroupBoard Workspace as the template is:

Feature '636287a7-7f62-4a6e-9fcc-081f4672cbf8' is not installed in this farm, and can not be added to this scope.

Nice. So what I've found thus far is to retract the solution and attempt to redeploy. When I attempt to retractsolution I get the error:

A deployment or retraction is already under way for the solution "gbw.wsp", and only one deployment or retraction at a time is supported.

So now I figure I'll run an iisreset and go from there...

Wednesday, October 22, 2008

Windows Mobile 6 Ringtones

Quick Tip here. If you want to add your own music file as a Ring tone on your Windows Mobile 6 phone, connect the phone to your computer and browse to "My Windows Mobile-Based Device -> Application Data -> Sounds" and drop it in there. After that, on your device go to "Start -> Settings -> Sounds & Notifications -> Notifications" and select the "Ring tone:" that you just copied to your device from the drop-down list.

Wednesday, October 15, 2008

Managed Default Folders in Exchange 2007

Question:
How do I automatically purge items older than 30 days in the Inbox, Sent Items, and Deleted Items folders in Exchange 2007?

Answer:
There are actually four steps to set this up. They can all be done from PowerShell, which is awesome, but they can also be done through the Exchange Management Console. I'll cover both methods.

Step 1 - New Managed Content Settings
In Exchange Management Console, select Microsoft Exchange -> Organization Configuration -> Mailbox -> Managed Default Folders. From here, select each folder you wish to create Managed Content Settings (read: retention/journaling policies) and click "New Managed Content Settings..." from the Actions menu on the right.

Step 2 - New Managed Folder Mailbox Policy
Now skip over to the Managed Folder Mailbox Policies tab. Click "New Managed Folder Mailbox Policy" and Add the folders you want to group together. This grouping is important because you can only apply one "Policy" to a given user.

In practice this means if I want my retention settings for Inbox and Sent Items that I set up in Step 1 to apply to USER1, I need to add both of those folders to one Policy. If I want the retention settings for Sent Items and Deleted Items to apply to USER2 and USER3, I need to add both of those folders to another Policy.

Step 3 - Messaging Records Management - Recipient Configuration
Still on Exchange Management Console, drill down to Microsoft Exchange -> Recipient Configuration -> Mailbox and double-click on a user. Go to the Mailbox Settings tab on the user Properties window and double click on "Messaging Records Managment". Here you need to select a Managed folder mailbox policy (you created this in Step 2) for this user.

Here's where I reccomend using PowerShell if you have more than a few users to assign this policy to. PowerShell script example coming tomorrow.

Step 4 - Messaging Records Management - Server Configuration
Finally, drill down to Microsoft Exchange -> Server Configuration -> Mailbox and double-click on a Mailbox Server. Go to the Messaging Records Management tab and create a Custom Schedule when to apply the Policy.

Think of this as a scheduled task with a "Stop the task if it runs for X hour(s) X minute(s)." The only difference is that this scheduled task picks up where it left off when it stopped. So, if I schedule it to run at 12AM for one hour each night and it doesn't finish processing through all the mailboxes it is assigned to, it will continue at 12AM on Monday.

One final note, you should do this during light usage hours because this can be intensive on your Exchange Servers and Outlook (think synchronization, especially on the initail run).

That's pretty much it. For more details and PowerShell commands from Microsoft, take a look here (remember it's technet so Internet Exporer or IE emulation will give you a "better" view):
http://technet.microsoft.com/en-us/library/bb123548(EXCHG.80).aspx

Good luck!