I just completed my first guide on how to backup/store/load games from an External USB Hard Drive. The guide links to several other key sources on the Internet, such as wiihacks.com forum posts, and the great guide hosted here at mikeandheth.com.
20
2009
Dealing with pesky .DS_Store and dot underscore files between Mac and Windows
If you use Windows Servers and Mac OS X in the same environment and share files, more than likely you have encountered seeing a bunch of .DS_Store files and files that start with ._ on your Windows file servers and SMB shares.
There are several ways you can take care of this on both the Mac OS X client and the Windows Server side.
On your Mac OS X, you can prevent creation of .DS_Store files by opening Terminal and typing the following command:
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
You will need to hit return and restart your Mac for changes to take effect.
More information is detailed in the following KB article from Apple Support.
On your Windows Server, there are a variety of tools, scripts and utilities you can use to both run through your drive and delete these files or even monitor in real-time for their creation and deletion. One easy way to do this is to write a simple batch file to delete these files.
The batch file would look something like this, assuming you wanted to clean up Drive H:
@ECHO OFF
:: DotClean version 0.1
:: 9/20/2009
:: breednet.net – any rights reserved, but free to use and enjoy
::
:: Deleting DS_Store and dot underscores from removable drives H: and I:
ECHO Cleaning up Mac DS_Store files on Drive H: …
del /q /s “H:\*.DS_Store”
ECHO Cleaning up Mac “dot underscore” files on Drive H: …
del /q /s “H:\._*”
You can also run a VBScript on your Windows server to detect and delete the file creation in real-time. There is a great article here that covers this, as well as the source code for DotUnderscore.vbs.
19
2009
Windows Installer command-line options
I am in the middle of preparing to help out a friend with some consulting help for migrating from Symantec Endpoint Protection 11 (SEP11) to McAfee Total Protection for Endpoint on their corporate endpoints. As you may know, Symantec has the only corporate AV solution in the industry WITHOUT a centrally managed/controlled UNINSTALL function.
Anyway, so in researching how I need to accomplish this, I found a good list on MSDN for all of the standard installer command-line options for Windows installer (i.e. msiexec.exe options, MSI package commands). Thanks Microsoft, at least you are helping to document how to clean up after lame vendors like Symantec.
In Symantec’s defense, they do have knowledgebase articles for how to manually uninstall SEP here and MSI options here. However, McAfee ePO has a central way to do this, as does Kaspersky, Trend Micro, Sophos, you get the picture.
16
2009
Pre-built VMware Images
Found a great site here that has a whole list of pre-built VMware images. The list of images include:
CentOS
Debian
Fedora
FreeBSD
Ubuntu
They include current versions and recent releases as well. Great place to go for an already installed VMware image for testing.
16
2009
Shrinking your Windows image running under VMware Fusion on Mac
Great article here on how to go about shrinking your virtual disk size for Windows images running under VMware Fusion on a Mac.