So for the past couple of days, I’ve been working on creating a couple of Microsoft Windows 2003 Server guests under Xen. Suffice to say the documentation has been rather sparse, I’ve had to look in multiple locations, searching forums, mailing lists, and Wiki’s to find all of the necessary information.
Fortunately, there is just enough documentation out there to get things setup. So I’m going to post my configuration and the steps that you need to go through to get this type of setup working. Hopefully, I’ll save everyone some major time. Look for the updates in the next or so.
Michael Bay is good at making an all-action no plot movie. We’ve had some really great comic book movies lately (Batman Begins, X-Men, Spiderman, etc.) and they all have their warts, but at least there was some development of the characters and some motivation behind their actions. Transformers was all about blowing stuff and not much else. I’d really like to see someone who cares about the Transformers world take on the rest of the movies.
Came across IMified today. What a neat idea! This is my first post using this service. I’ll be experimenting with it more over time to get a feel for how well it works and how easy it is to use.
Apparently, IMified doesn’t handle hyperlinks yet, so I had to manually add the link to the website. It’s probably not a big deal at this point, since I would imagine that using your IM tool to post to your website should be a quick and dirty method. If you really cared about the formatting, you’d use your web browser.
Here’s a Perl script that I wrote to recurse through Active Directory OUs, find a specific OU, and then modify it’s child objects. I’ve removed the code that actually did the work on the child objects since it was specific to our environment. It should be pretty easy to modify this to match your needs.
use Win32::OLE ‘in’; $Win32::OLE::Warn = 3;
my $strLDAPPath = “LDAP://dc=domain,dc=name”;
RecurseOU($strLDAPPath);
sub RecurseOU { my($strLDAPPath, $flag) = @_;
my $objOU = Win32::OLE->GetObject($strLDAPPath);
foreach my $objChildObject (in $objOU) { if ($flag) { print $objChildObject->AdsPath,”\n”; if ($objChildObject->Class eq “group”) { } } if ($objChildObject->Class eq “organizationalUnit”) { #print $objChildObject->Name,”\n”; #print $objChildObject->Class,”\n”; #print $objChildObject->AdsPath,”\n”; RecurseOU($objChildObject->AdsPath, $flag); $flag = 0; } } }