Pages

Search

Wednesday, March 7, 2012

Bill's Recommendations: WinMerge

In an earlier post I spoke about how a little utility called WinMerge really saved me a lot of time comparing some folders related to a project I had undertaken. I decided to write a little more about this little gem and how I have incorporated it into my toolkit and started using it on a daily basis.

WinMerg is a file & folder merge and differences tool that is cross platform, working on both Windows & Linux OS. It is even available as a portable app. It also has a very intuitive interface using easy to understand visuals.

My experience with this software has been very pleasant. I was able to install the software rather quickly, both in the portable format and for Windows. The folder comparison was rather quick and allow for the ability to generate a report. Overall the interface is very easy to understand just like their site says. The documentation is also very sufficient.

My favorite part about this software is that it is FREE & OPEN SOURCE!

So far I have used it to do directory comparisons, word documents, text files (logs), and single folder comparisons. This tool has been very accurate each time I have used it and it has earned a permanent spot in my toolkit. I highly recommend this software for anyone needing to do some accurate file and folder comparisons.

Download WinMerge Here.

My Foray in Moving Disabled AD Accounts & Home Folder Directories Part 2

Last Friday I began with my plan to move users home folders from an old server to a new server. After doing the needed research on Friday and having successful tests the plan proceeded to be executed. below is the first line of code I used on the old server using robocopy:

|  robocopy \\oldserver\home\  \\newserver\home\ /S /E /COPY:DATSOU /R:1 /W:30 >C:\HomeDir_robocopy.log  |

The above robocopy command moved all home folder directories to the new server while retaining the ACL's. This process took about 1 hour to move 22GB's worth of files over the network while creating a log as well. I am sure I could have added more threads to this command using the /MT: switch, but I didn't. Live and learn.

After this process completed, I went through and checked the log file that was created to verify that all files were copied and that there were not any errors. No errors were logged, and the ACL's matched up. I consider that a great success. \\oldserver\home share was then removed from the available shares on the Windows 2008 server. No more old server home folder access for users. The folders are still on the server for the next couple of weeks in case a user is missing any files or cannot access their new home path.

Then the fun part began. I then used a powershell command to look through the Student OU and change all user objects home path to point to \\newserver\home\%username% with the following code:

|   get-qaduser -searchroot 'ou=youraccounts,dc=yourdomain,dc=com' | foreach-object {$folder = $_.samaccountname;set-qaduser $_.dn -homedirectory "\\yourserver\path\$folder" -homedrive 'M:'}   |

The above cmdlet is used after installing the Quest Active Roles AD Management PSSnapin. This cmdlet searches the OU specified in the domain and sets the homedirectory attribute to the path & drive letter that you specify. With all user's now using the proper home path all I needed to do was sit back and wait for someone to scream. So far, no one has complained and all seems to be working pretty smoothly after this move.

Overall this project was a great success and allowed my customer to start planning to allow this server to finally be decommissioned after a long waiting period resulting from this problem of duplicated home folders that were also not mapped properly and a need for ADUC cleaning. This server is now on it's way to becoming and RODC for a satellite office.