Hey, Folks.
I need a bit of AppleScript help.
I just ordered a dual 2.7Ghz G5 and would like to be able to keep track of originally installed system software from the get go.
Back in the days of Mac OS 9 (remember that?) I used a cool little (albeit simplistic) AppleScript that would automatically assign the color Label of my choice to every item inside the System Folder. By doing this, whenever doing any troubleshooting, I could easily see what files were original and which one were added by other applications or utilities.
I've had some trouble finding a way to do this in Mac OS X. What I’d like to do is assign the gray, or seventh, label to all items enclosed in the root level Library folder, the root level System folder and possibly my user account's Library folder.
The script used under OS 9 was this:
tell application "Finder"
activate
set label index of every item of the entire contents of folder "System Folder" of startup disk to 7
end tell
Will this work under Mac OS X if I just modify the proper target folder's name?
I really appreciate any help and input here.
TIA!