<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bits of Tech &#187; Windows</title>
	<atom:link href="http://bitsoftech.net/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://bitsoftech.net</link>
	<description>Tips &#38; Tricks from IT Pros</description>
	<lastBuildDate>Fri, 18 Nov 2011 04:01:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Quick Tip: Enable Exchange ActiveSync on a Mailbox with PowerShell</title>
		<link>http://bitsoftech.net/quick-tip-enable-exchange-activesync-on-a-mailbox-with-powershell/</link>
		<comments>http://bitsoftech.net/quick-tip-enable-exchange-activesync-on-a-mailbox-with-powershell/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 03:56:35 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/?p=190</guid>
		<description><![CDATA[Exchange 2007 brought some changes to managing mailboxes, most notably, the removal of Exchange tabs from Active Directory. In Exchange 2003, to enable Exchange ActiveSync for a mailbox, you would simply open the ADUC properties for a user, click the Exchange Features tab, click Exchange ActiveSync, and then click Enable. Today, with Exchange 2007 and [...]]]></description>
			<content:encoded><![CDATA[<p>Exchange 2007 brought some changes to managing mailboxes, most notably, the removal of Exchange tabs from Active Directory. In Exchange 2003, to enable Exchange ActiveSync for a mailbox, you would simply open the ADUC properties for a user, click the Exchange Features tab, click Exchange ActiveSync, and then click Enable.</p>
<p>Today, with Exchange 2007 and Exchange 2010, the function isn&#8217;t quite as easily found, but it&#8217;s much easier to use. On any machine with the Exchange Management Tools loaded, fire up the Exchange Management Shell (this won&#8217;t work in your regular PowerShell terminal) and type the following, replacing &#8220;Firstname Lastname&#8221; with the user&#8217;s first and last name, or their user ID, in quotes.</p>
<p>
<pre class="brush: powershell; title: ; notranslate">Get-Mailbox &quot;Firstname Lastname&quot; | Set-CASMailbox -ActiveSyncEnabled $true</pre>
</p>
<p> </p>
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/' title='Delete Temporary Internet Files from All Profiles in Windows 7 or Vista Using PowerShell'>Delete Temporary Internet Files from All Profiles in Windows 7 or Vista Using PowerShell</a></li>
<li><a href='http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-xp-using-powershell/' title='Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell'>Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell</a></li>
<li><a href='http://bitsoftech.net/learning-the-wonders-of-powershell/' title='Learning the Wonders of Windows PowerShell'>Learning the Wonders of Windows PowerShell</a></li>
<li><a href='http://bitsoftech.net/create-custom-office-2007-installations/' title='Create Custom Office 2007 Installations'>Create Custom Office 2007 Installations</a></li>
<li><a href='http://bitsoftech.net/configure-windows-file-sharing-for-easy-migration-of-data/' title='Configure Windows File Sharing for Easy Migration of Data'>Configure Windows File Sharing for Easy Migration of Data</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Exchange' rel='tag,nofollow' target='_self'>Exchange</a>, <a class='technorati-link' href='http://technorati.com/tag/PowerShell' rel='tag,nofollow' target='_self'>PowerShell</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag,nofollow' target='_self'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/quick-tip-enable-exchange-activesync-on-a-mailbox-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete Temporary Internet Files from All Profiles in Windows 7 or Vista Using PowerShell</title>
		<link>http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/</link>
		<comments>http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 21:13:50 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/</guid>
		<description><![CDATA[This is just a minor update to the previous script, modified for Windows 7 and Vista machines. Related Posts Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell Learning the Wonders of Windows PowerShell Technorati Tags: PowerShell, Scripting]]></description>
			<content:encoded><![CDATA[<p>This is just a minor update to the previous script, modified for Windows 7 and Vista machines.</p>
<pre class="brush: powershell; title: ; notranslate">
#==================================================================================
# Delete_Temp_Files_W7.ps1
#
# Author: Bill Clark (http://bitsoftech.net/)
#
# This script deletes all files in all users' Temp and Temporary Internet Files
# folders on a Windows Vista or Windows 7 machine.
#
#==================================================================================

&lt;#

.SYNOPSIS

Deletes all files and subdirectories in %UserProfile%\AppData\Local\Temp and
%UserProfile%\AppData\Local\Microsoft\Windows\Temporary Internet Files for all user
profiles on the machine.

.PARAMETER

No parameters are accepted by this script.

.EXAMPLE

Delete_Temp_Files_W7.ps1

.NOTES

The script will not remove any files that are in use by other processes, and will
throw an error upon encountering any in use files.

#&gt;

# Create array containing all user profile folders
$colProfiles = Get-ChildItem &quot;C:\Users\&quot; -Name
# Remove the All Users profile from the array
$colProfiles = $colProfiles -ne &quot;Public&quot;

# Removes temporary files from each user profile folder
ForEach ( $objProfile in $colProfiles ) {
    # Remove all files and folders in user's Temp folder
    Get-ChildItem &quot;C:\Users\$objProfile\AppData\Local\Temp\*&quot; -recurse | remove-item -force -recurse
    # Remove all files and folders in user's Temporary Internet Files. The -force switch on Get-ChildItem gets hidden directories as well.
    Get-ChildItem &quot;C:\Users\$objProfile\AppData\Local\Microsoft\Windows\Temporary Internet Files\*&quot; -recurse -force | remove-item -force -recurse
}
</pre>
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-xp-using-powershell/' title='Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell'>Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell</a></li>
<li><a href='http://bitsoftech.net/learning-the-wonders-of-powershell/' title='Learning the Wonders of Windows PowerShell'>Learning the Wonders of Windows PowerShell</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/PowerShell' rel='tag,nofollow' target='_self'>PowerShell</a>, <a class='technorati-link' href='http://technorati.com/tag/Scripting' rel='tag,nofollow' target='_self'>Scripting</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell</title>
		<link>http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-xp-using-powershell/</link>
		<comments>http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-xp-using-powershell/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 21:35:09 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/?p=177</guid>
		<description><![CDATA[As a systems administrator, I re-image systems quite often. Part of my re-imaging process entails copying the &#8220;Documents and Settings&#8221; folder containing the user profiles to a disk on my server, dropping a fresh image on the drive, and then copying the user profiles into C:\Recovered_Profiles before shipping it back to the location that sent [...]]]></description>
			<content:encoded><![CDATA[<p>As a systems administrator, I re-image systems quite often. Part of my re-imaging process entails copying the &#8220;Documents and Settings&#8221; folder containing the user profiles to a disk on my server, dropping a fresh image on the drive, and then copying the user profiles into C:\Recovered_Profiles before shipping it back to the location that sent it in. This allows the local IT team member to move the data into the users&#8217; new profiles after their first logon.</p>
<p>The transfer of user profiles can take a very long time depending on the amount of data in each profile, but also upon how many files are in the Temp and Temporary Internet Files folders inside each profile. It&#8217;s not the size of the files in those folders that will cause extended transfer times, but the sheer number of small files in the folders. There can be thousands upon thousands of files in the Temporary Internet Files folder, and each file accounts for a separate read transaction on the hard drive. For this reason, I wrote a VBScript a year or so ago to clear out these two folders, but it never really worked 100% of the time. I&#8217;d still end up with 2-3 profiles (out of 20 or so) that had temp files, but it was better than nothing.</p>
<p>Enter Windows PowerShell. I was able to condense the 60 or so lines of VBScript required to empty those two folders into the script below, which is fewer than 10 lines of actual code. In fact, there are nearly twice the number of lines of comments in the script than lines of code when you count the &#8220;help&#8221; section at the top of the script. I&#8217;ve tested this script on 10 different machines, and it hasn&#8217;t left any temp files behind other than files that were in use at the time I ran the script (most commonly the index.dat file in the IE cache folder).</p>
<p><strong>UPDATE:</strong> I have posted a modified version of this script for use on Windows 7 and Vista machines in the post titled <a href="http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/">Delete Temporary Internet Files from All Profiles in Windows 7 and Vista Using PowerShell</a>.</p>
<pre class="brush: powershell; title: ; notranslate">
#==================================================================================
#
# Delete_Temp_Files_XP.ps1
#
# Author: Bill Clark (http://bitsoftech.net/)
#
# This script deletes all files in all users' Temp and Temporary Internet Files
# folders on a Windows XP machine.
#
#==================================================================================

&lt;#

.SYNOPSIS

Deletes all files and subdirectories in %UserProfile%\Local Settings\Temp and
%UserProfile%\Local Settings\Temporary Internet Files for all user profiles on the machine.

.PARAMETER

No parameters are accepted by this script.

.EXAMPLE

Delete_Temp_Files_XP.ps1

.NOTES

The script should be run while logged in as Administrator, or run with Administrator privileges.

The script will not remove any files that are in use by other processes, and will throw an error upon encountering any in use files.

#&gt;

# Create array containing all user profile folders
$colProfiles = Get-ChildItem &quot;C:\Documents and Settings\&quot; -Name
# Remove the &quot;All Users&quot; profile from the array
$colProfiles = $colProfiles -ne &quot;All Users&quot;

# Removes temporary files from each user profile folder
ForEach ( $objProfile in $colProfiles ) {
	# Remove all files and folders in user's Temp folder
	Get-ChildItem &quot;C:\Documents and Settings\$objProfile\Local Settings\Temp\*&quot; -recurse | remove-item -force -recurse
	# Remove all files and folders in user's Temporary Internet Files. The -force switch on Get-ChildItem gets hidden directories as well.
	Get-ChildItem &quot;C:\Documents and Settings\$objProfile\Local Settings\Temporary Internet Files\*&quot; -recurse -force | remove-item -force -recurse
}
</pre>
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/' title='Delete Temporary Internet Files from All Profiles in Windows 7 or Vista Using PowerShell'>Delete Temporary Internet Files from All Profiles in Windows 7 or Vista Using PowerShell</a></li>
<li><a href='http://bitsoftech.net/learning-the-wonders-of-powershell/' title='Learning the Wonders of Windows PowerShell'>Learning the Wonders of Windows PowerShell</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/PowerShell' rel='tag,nofollow' target='_self'>PowerShell</a>, <a class='technorati-link' href='http://technorati.com/tag/Scripting' rel='tag,nofollow' target='_self'>Scripting</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-xp-using-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning the Wonders of Windows PowerShell</title>
		<link>http://bitsoftech.net/learning-the-wonders-of-powershell/</link>
		<comments>http://bitsoftech.net/learning-the-wonders-of-powershell/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 21:09:59 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/?p=160</guid>
		<description><![CDATA[I&#8217;ve been using VBScript for systems management and task automation for many years. From working with Active Directory to manipulating files and folders, VBScript has been an excellent tool for me. I&#8217;ve read little bits and pieces about Windows PowerShell for a while now, and I always thought it would be too confusing to jump [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using VBScript for systems management and task automation for many years. From working with Active Directory to manipulating files and folders, VBScript has been an excellent tool for me. I&#8217;ve read little bits and pieces about Windows PowerShell for a while now, and I always thought it would be too confusing to jump into without really having the time to devote to learning it well. I started using PowerShell 6 months ago for some basic Active Directory tasks because of the better integration, and it&#8217;s greatly simplified making mass changes to Active Directory.</p>
<p>In the past few days, a colleague of mine inspired me to dig into PowerShell a little more. I picked up a copy of Windows PowerShell Cookbook last night, and started reading this morning at work. This book has definitely made things easier to understand, so I definitely recommend it to anyone that is interested in learning PowerShell. Today, I ported a few VBScripts I use somewhat regularly to PowerShell, and was amazed at the reduction in lines of code needed to complete some of the tasks. For example, I wrote my most frequently used VBScript to delete all files in the Temp and Temporary Internet Files in all Windows XP user profiles on a machine. It was about 60 lines of code. I duplicated the functionality of that script in fewer than 10 lines of code. It surprised me to find I had more lines of comments than actual code!</p>
<p>Over the next few weeks, I&#8217;m going to finish up this book. In the process, I hope to create quite a few more scripts to help automate some of my management tasks, and I&#8217;ll share those scripts here.</p>
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-7-or-vista-using-powershell/' title='Delete Temporary Internet Files from All Profiles in Windows 7 or Vista Using PowerShell'>Delete Temporary Internet Files from All Profiles in Windows 7 or Vista Using PowerShell</a></li>
<li><a href='http://bitsoftech.net/delete-temporary-internet-files-from-all-profiles-in-windows-xp-using-powershell/' title='Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell'>Delete Temporary Internet Files from All Profiles in Windows XP Using PowerShell</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/PowerShell' rel='tag,nofollow' target='_self'>PowerShell</a>, <a class='technorati-link' href='http://technorati.com/tag/Scripting' rel='tag,nofollow' target='_self'>Scripting</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/learning-the-wonders-of-powershell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Custom Office 2007 Installations</title>
		<link>http://bitsoftech.net/create-custom-office-2007-installations/</link>
		<comments>http://bitsoftech.net/create-custom-office-2007-installations/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 19:54:08 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2007]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/?p=86</guid>
		<description><![CDATA[UPDATE: The instructions provided here will also work for Office 2010 installations. Today Bits of Tech brings you a video tutorial on creating custom Office 2007 installations using the Microsoft Office Customization Tool. This video takes you through the process of creating custom installs step-by-step. It also features a small segment on integrating the Office [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE:</strong> The instructions provided here will also work for Office 2010 installations.</p>
<p>Today Bits of Tech brings you a video tutorial on creating custom Office 2007 installations using the Microsoft Office Customization Tool. This video takes you through the process of creating custom installs step-by-step. It also features a small segment on integrating the Office 2007 Service Pack 2 update into your installation media.</p>
<p>A good friend of mine loaned me his lab machine with Camtasia Studio 6 on it to create this video. Camtasia Studio is a great screencasting package, but it is a bit expensive at $299. After using his computer with the software on it, I will definitely be purchasing a copy for future video tutorials when my finances allow.</p>
<p>I had planned on sharing this video on YouTube, but the 10 minute video length restriction has prevented me from doing so. I will try to edit 3 minutes out of the video to fit it on YouTube, but no promises, because I don’t want to remove too much content.</p>
<p><div id="wp_zdytfp_container_86" style="width:100%; height:480px; text-align:center; margin:auto;">
<div id="v_wp_zdytfp_container_86" style="width:100%; height:100%;">ZD YouTube FLV Player</div>
</div>
<script type="text/javascript">
var flashvars = {
vurl: "http://bitsoftech.net/wp-content/video/o2k7-custom-install.flv",
yturl: "http://bitsoftech.net/wp-content/plugins/zd-youtube-flv-player/fl_youTubeProxy.php"
};
var params = {
wmode: "transparent",
allowFullScreen: "true"
};
var attributes = {
id: "my_wp_zdytfp_container_86",
name: "my_wp_zdytfp_container_86"
};
swfobject.embedSWF("http://bitsoftech.net/wp-content/plugins/zd-youtube-flv-player/flash/zdytflv-player-dark.swf", "v_wp_zdytfp_container_86", "640", "480", "9.0.0", false, flashvars, params, attributes);
</script>
<br />
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/integrating-service-pack-2-into-office-2007-installation-media/' title='Integrating Service Pack 2 into Office 2007 Installation Media'>Integrating Service Pack 2 into Office 2007 Installation Media</a></li>
<li><a href='http://bitsoftech.net/quick-tip-enable-exchange-activesync-on-a-mailbox-with-powershell/' title='Quick Tip: Enable Exchange ActiveSync on a Mailbox with PowerShell'>Quick Tip: Enable Exchange ActiveSync on a Mailbox with PowerShell</a></li>
<li><a href='http://bitsoftech.net/configure-windows-file-sharing-for-easy-migration-of-data/' title='Configure Windows File Sharing for Easy Migration of Data'>Configure Windows File Sharing for Easy Migration of Data</a></li>
<li><a href='http://bitsoftech.net/10-programs-i-cant-live-without/' title='10 Programs I Can’t Live Without'>10 Programs I Can’t Live Without</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Microsoft' rel='tag,nofollow' target='_self'>Microsoft</a>, <a class='technorati-link' href='http://technorati.com/tag/Office+2007' rel='tag,nofollow' target='_self'>Office 2007</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag,nofollow' target='_self'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/create-custom-office-2007-installations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://bitsoftech.net/wp-content/video/o2k7-custom-install.flv" length="17917642" type="video/x-flv" />
		</item>
		<item>
		<title>Arranging Menu Bar icons in Leopard</title>
		<link>http://bitsoftech.net/arranging-menu-bar-icons-in-leopard/</link>
		<comments>http://bitsoftech.net/arranging-menu-bar-icons-in-leopard/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 16:22:34 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Menu Bar]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/arranging-menu-bar-icons-in-leopard/</guid>
		<description><![CDATA[Got a few icons in your Menu Bar and you’d like to change the order they’re displayed in? You’re in luck, they’re fairly easy to move around. Just hold your Command key and drag them into the order you prefer. Want to get rid of an icon? Hold the Command key and drag it off [...]]]></description>
			<content:encoded><![CDATA[<p>Got a few icons in your Menu Bar and you’d like to change the order they’re displayed in? You’re in luck, they’re fairly easy to move around. Just hold your Command key and drag them into the order you prefer. </p>
<p>Want to get rid of an icon? Hold the Command key and drag it off the menu bar. Gone!</p>
<p>This method doesn’t work with the Apple icons, but not with all apps. Some exceptions to this method are Google Notifier, Tweeie, and Adium. To rearrange these, exit the apps and relaunch them in the order you’d like them to appear from right to left. If they are apps in your Startup Items, you can change the order they launch in to reorder them in the menu bar.</p>
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/disable-leopards-3d-glass-dock/' title='Disable Leopard’s 3D Glass Dock'>Disable Leopard’s 3D Glass Dock</a></li>
<li><a href='http://bitsoftech.net/apple-releases-mac-os-x-1057-update/' title='Apple Releases Mac OS X 10.5.7 Update'>Apple Releases Mac OS X 10.5.7 Update</a></li>
<li><a href='http://bitsoftech.net/automating-wordpress-backups-using-automator-and-transmit/' title='Automating WordPress Backups using Automator and Transmit'>Automating WordPress Backups using Automator and Transmit</a></li>
<li><a href='http://bitsoftech.net/apple-bumps-up-processor-ram-hard-drive-on-white-macbook/' title='Apple Bumps Up Processor, RAM &amp; Hard Drive on White MacBook'>Apple Bumps Up Processor, RAM &amp; Hard Drive on White MacBook</a></li>
<li><a href='http://bitsoftech.net/checking-your-macbook-battery-health-with-coconutbattery/' title='Checking Your Mac Notebook Battery Health with coconutBattery'>Checking Your Mac Notebook Battery Health with coconutBattery</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Apple' rel='tag,nofollow' target='_self'>Apple</a>, <a class='technorati-link' href='http://technorati.com/tag/Mac+OS' rel='tag,nofollow' target='_self'>Mac OS</a>, <a class='technorati-link' href='http://technorati.com/tag/Menu+Bar' rel='tag,nofollow' target='_self'>Menu Bar</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/arranging-menu-bar-icons-in-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Windows File Sharing for Easy Migration of Data</title>
		<link>http://bitsoftech.net/configure-windows-file-sharing-for-easy-migration-of-data/</link>
		<comments>http://bitsoftech.net/configure-windows-file-sharing-for-easy-migration-of-data/#comments</comments>
		<pubDate>Wed, 20 May 2009 14:25:37 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Permissions]]></category>
		<category><![CDATA[Sharing]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/configure-windows-file-sharing-for-easy-migration-of-data/</guid>
		<description><![CDATA[Long ago, I learned that setting permissions on Shared Folders in Windows is a bad idea. The issue isn’t in restricting access to data, but in the way Windows handles the permissions. I work in an Active Directory environment, with thousands of accounts in my region alone. We also rely heavily on file servers. When [...]]]></description>
			<content:encoded><![CDATA[<p>Long ago, I learned that setting permissions on Shared Folders in Windows is a bad idea. The issue isn’t in restricting access to data, but in the way Windows handles the permissions.</p>
<p>I work in an Active Directory environment, with thousands of accounts in my region alone. We also rely heavily on file servers. When I first set up our file server years ago, I set all of the permissions on the share rather than on the individual files and folders.</p>
<p>Here’s why that’s a bad idea: When you have to move the shared folder to another drive, RAID array, or even server, you have to redo all of the permissions on the share because they don’t get copied with the folder. If you set the permissions on the shared folder and any subfolders/files, when you copy them to a new drive, those NTFS file permissions follow the data to the new location.</p>
<p>Here’s how I configure my file shares now. First, I create the folder I want to share. Then, right click the folder and choose Properties. Click the Sharing tab, select “Share this folder” and give the share a name. Now, click Permissions and check off Full Control, so everyone connecting to the share has full control. Click OK. These steps are illustrated below.</p>
<p><a href="http://bitsoftech.net/wp-content/uploads/2009/05/image3.png"><img title="image" src="http://bitsoftech.net/wp-content/uploads/2009/05/image-thumb1.png" border="0" alt="image" width="210" height="244" /></a> <a href="http://bitsoftech.net/wp-content/uploads/2009/05/image4.png"><img title="image" src="http://bitsoftech.net/wp-content/uploads/2009/05/image-thumb2.png" border="0" alt="image" width="203" height="244" /></a></p>
<p>Now, click on Security tab. Here’s where you’ll set the permissions of the actual folder. First, click the Advanced button and uncheck the box labeled “Allow inheritable permissions from the parent to propagate to this object and all child objects. Include these with entries explicitly defined here.” You will be presented with a box asking if you’d like to copy the permissions, remove them, or cancel. Choose copy, then click OK.</p>
<p>I want everyone to be able to access the root of this folder and the files inside it, so I’m going to click on Everyone in the top pane and ensure “Full Control” is checked. Click OK to save your changes. Now open up your shared folder and move any data you want into it. I have two folders in mine, called Subfolder 1 and Subfolder 2.</p>
<p>I want to restrict access to Subfolder 1 to myself and Administrators of the server only only, so I will right click the folder and choose Properties. In the Security tab, select Everyone in the top pane and click remove. You can leave “CREATOR OWNER”, “SYSTEM”, and “Administrators” there. Now, I will add my user account and assign Full Control to myself. See below, but note I have obscured my Active Directory Domain name and the server name.</p>
<p><a href="http://bitsoftech.net/wp-content/uploads/2009/05/image5.png"><img title="image" src="http://bitsoftech.net/wp-content/uploads/2009/05/image-thumb3.png" border="0" alt="image" width="210" height="244" /></a></p>
<p>Click OK on the window here and your permissions change will be saved. I will leave Subfolder 2 with Full Control for Everyone. Now, any users that connect to the share that aren’t Administrators of the server will receive an “Access is Denied” message if they attempt to open Subfolder1.</p>
<p>You can also restrict access to the whole share by assigning any permissions you want in the Security tab of the main shared folder, removing the entry for “Everyone”. This way, anyone attempting to connect to the share will be able to “Map a drive” to the share, but will receive an “Access is Denied” message whenever attempting to open it.</p>
<p>Using the methods above, you can safely move the shared folder to any other NTFS formatted volume on the server or even another server without worrying about having to recreate all of your permissions when you’ve moved it. All you have to do to once it’s moved is share the folder again and assign Full Control to Everyone.<br />
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/quick-tip-enable-exchange-activesync-on-a-mailbox-with-powershell/' title='Quick Tip: Enable Exchange ActiveSync on a Mailbox with PowerShell'>Quick Tip: Enable Exchange ActiveSync on a Mailbox with PowerShell</a></li>
<li><a href='http://bitsoftech.net/create-custom-office-2007-installations/' title='Create Custom Office 2007 Installations'>Create Custom Office 2007 Installations</a></li>
<li><a href='http://bitsoftech.net/10-programs-i-cant-live-without/' title='10 Programs I Can’t Live Without'>10 Programs I Can’t Live Without</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Permissions' rel='tag,nofollow' target='_self'>Permissions</a>, <a class='technorati-link' href='http://technorati.com/tag/Sharing' rel='tag,nofollow' target='_self'>Sharing</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag,nofollow' target='_self'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/configure-windows-file-sharing-for-easy-migration-of-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Programs I Can’t Live Without</title>
		<link>http://bitsoftech.net/10-programs-i-cant-live-without/</link>
		<comments>http://bitsoftech.net/10-programs-i-cant-live-without/#comments</comments>
		<pubDate>Mon, 11 May 2009 18:21:15 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Trillian]]></category>

		<guid isPermaLink="false">http://bitsoftech.net/10-programs-i-cant-live-without/</guid>
		<description><![CDATA[Anyone who uses a computer for work or personal use on a regular basis has a group of preferred programs to use. Some of us have some programs mandated by our employers, and some of us are free to choose what programs—or even computing platforms—we use. I’m lucky enough to be employed by a company [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone who uses a computer for work or personal use on a regular basis has a group of preferred programs to use. Some of us have some programs mandated by our employers, and some of us are free to choose what programs—or even computing platforms—we use. I’m lucky enough to be employed by a company that allows employees to choose what programs they use for the most part.</p>
<p>In no particular order, here are the 10 programs/software packages I absolutely cannot live without. I use both Windows Vista and Mac OS X, so you’ll find programs from both platforms in my list. To keep this post short and not take up too much of your time reading it, I won’t go into too much detail as to why each program has made it onto this list. You can rest assured though, I will save that detail for individual posts later.</p>
<ol>
<li><strong>Microsoft Outlook 2007</strong> (Windows)<br />
While we use Microsoft Exchange 2007 as our email server platform at work and Outlook is the best way to go for an Exchange client, I could use any POP3/SMTP or IMAP capable client to check my email. Even given this choice, I stick with Outlook 2007. I prefer Outlook because of the tight integration with Exchange, and because it has everything I need—email, calendar, tasks, and notes—all in one package.</li>
<li><strong>Trillian (4.0 beta)</strong> (Windows)<br />
I have been a Trillian user since their early days, and haven’t bothered with other IM clients. Trillian Pro allows me to use my two primary instant messaging platforms—AIM and Yahoo!—without having two programs running. I’ve been testing 4.0 (Astra) since it entered alpha stage, and now in it’s beta stage. Even in it’s alpha form, Trillian 4 has proven itself a stable and full-featured IM client.</li>
<li><strong>Windows Live Writer 2009</strong> (Windows)<br />
While I’ve only just started blogging, Windows Live Writer has quickly become my remote publishing client of choice for my WordPress blog. It’s clean interface and ease of use has claimed it spot on my most frequently used programs list.</li>
<li><strong>PuTTY</strong> (Windows)<br />
I use PuTTY to manage all of the Cisco network gear I work with, as well as to log into the Ubuntu server in my office. It’s a very simple, yet powerful SSH client that just works. It has the ability to connect to telnet, SSH, and even Serial clients, and also has the ability to save connection profiles.</li>
<li><strong>Launchy</strong> (Windows)<br />
Launchy is an open-source Windows alternative to the Mac app, Quicksilver. It allows for keyboard launching of programs, opening documents, and even custom triggers. It has a plug-in architecture and there are quite a few useful plug-ins available. I use it in conjunction with the PuTTY plug-in, which allows me to open an SSH session to a host using the keyboard shortcut to invoke Launchy and then type <em>ssh hostname</em> followed by the enter key. I also use a custom trigger that allows me to launch Microsoft Remote Desktop connections via the Launchy interface.</li>
<li><strong>Quicksilver</strong> (Mac)<br />
Quicksilver is a very powerful keyboard launcher for Mac. At the moment, I haven’t delved too deep in setting it up on my machine. I’m only using Quicksilver as a keyboard launcher. I have quite a few applications that I don’t keep in my dock, but use somewhat regularly. It’s handy to be able to easily launch an application by invoking Quicksilver and typing the first few letters of the name. I’m sure it’s capable of much more, but I haven’t really played with it beyond that.</li>
<li><strong>Tweetie </strong>(Mac)<br />
Tweetie is by far my favorite Twitter client out of all of the options available for Mac and PC. It’s slick interface is both great looking and easy to use. Multiple account support is great, and you can choose from a number of URL shortening and picture sharing services. All in all a great looking, feature packed client. The folks at Atebits definitely put a lot of thought into this app.</li>
<li><strong>Firefox</strong> (PC &amp; Mac)<br />
Firefox is my browser of choice, though Internet Explorer 8 is a close second. The extensibility of Firefox is the clincher for me. Having the ability to add functionality to the browser via extensions is an enormous advantage over IE. A few of the extensions I use are GMail Notifier, Greasemonkey, Right-Click-Link, Google Redesigned, Extended Statusbar, Delicious Bookmarks, and PDF Download.</li>
<li><strong>VNC </strong>(PC &amp; Mac)<br />
I use UltraVNC on my PC, and Chicken of the VNC on my Mac. Having the ability to remote control PC’s is an absolute must in my job. We load UltraVNC Server on each of the desktop and notebook PC’s at my company, and we use OSXvnc as the VNC server on the single Mac at each location. Being able to control PC’s or Mac’s from either platform is a big help as well, so I don’t have to have a particular computer with me to provide support.</li>
<li><strong>SplashID iPhone &amp; Desktop</strong> (iPhone, PC, Mac)<br />
Between my personal data from online banking, credit card websites, forums, and other sites, to my business needs for multiple logon accounts, service accounts, and other passwords, SplashID remembers them all. I have a copy of the desktop version on my PC and another on my Mac, and I routinely sync between the three. I got hooked on password managers back when I used CryptMagic on my old BlackBerry, but since moving to the iPhone, I settled on SplashID since it most closely resembled CryptMagic. The fact that it’s available on both Mac &amp; PC was the deal-maker for me, as I routinely use both platforms.</li>
</ol>
<p>So there you have it, my list of the 10 programs/software packages that I can’t live without. If there’s a piece of software you can’t live without, I’d love to hear about it. Leave a comment and I’ll be sure to check it out.<br />
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/quick-tip-enable-exchange-activesync-on-a-mailbox-with-powershell/' title='Quick Tip: Enable Exchange ActiveSync on a Mailbox with PowerShell'>Quick Tip: Enable Exchange ActiveSync on a Mailbox with PowerShell</a></li>
<li><a href='http://bitsoftech.net/create-custom-office-2007-installations/' title='Create Custom Office 2007 Installations'>Create Custom Office 2007 Installations</a></li>
<li><a href='http://bitsoftech.net/configure-windows-file-sharing-for-easy-migration-of-data/' title='Configure Windows File Sharing for Easy Migration of Data'>Configure Windows File Sharing for Easy Migration of Data</a></li>
<li><a href='http://bitsoftech.net/change-the-default-screen-capture-format-in-mac-os/' title='Change the Default Screen Capture Format in Mac OS'>Change the Default Screen Capture Format in Mac OS</a></li>
<li><a href='http://bitsoftech.net/editing-the-terminal-banner-message-of-the-day/' title='Editing the Terminal Banner (Message of the Day)'>Editing the Terminal Banner (Message of the Day)</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Mac' rel='tag,nofollow' target='_self'>Mac</a>, <a class='technorati-link' href='http://technorati.com/tag/Outlook' rel='tag,nofollow' target='_self'>Outlook</a>, <a class='technorati-link' href='http://technorati.com/tag/Software' rel='tag,nofollow' target='_self'>Software</a>, <a class='technorati-link' href='http://technorati.com/tag/Trillian' rel='tag,nofollow' target='_self'>Trillian</a>, <a class='technorati-link' href='http://technorati.com/tag/Windows' rel='tag,nofollow' target='_self'>Windows</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/10-programs-i-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating Service Pack 2 into Office 2007 Installation Media</title>
		<link>http://bitsoftech.net/integrating-service-pack-2-into-office-2007-installation-media/</link>
		<comments>http://bitsoftech.net/integrating-service-pack-2-into-office-2007-installation-media/#comments</comments>
		<pubDate>Tue, 05 May 2009 14:06:42 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2007]]></category>

		<guid isPermaLink="false">http://bitsofit.net/2009/05/05/integrating-service-pack-2-into-office-2007-installation-media/</guid>
		<description><![CDATA[After Microsoft released Office 2007 Service Pack 2, I wanted to avoid having to install Office 2007 and then perform another installation for SP2. Luckily, Microsoft has made this very easy to do with Office 2007 as compared to earlier versions. No special tools required! A little information about how this works: Your Office 2007 [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>After Microsoft released Office 2007 Service Pack 2, I wanted to avoid having to install Office 2007 and then perform another installation for SP2. Luckily, Microsoft has made this very easy to do with Office 2007 as compared to earlier versions. No special tools required!</p>
<p>A little information about how this works: Your Office 2007 media has a folder called Updates in it. Any *.msp update files copied into that folder will be installed during the Office 2007 install, but after the suite is installed. The SP2 “fullfile” installer is just a self-extracting archive containing all the source *.msp files needed for the update. So, by copying these files into the Updates folder, you’re getting an Office 2007 install with SP2 integrated.</p></blockquote>
<p>To integrate SP2, first you need to copy your install media to a local folder. To do this, create a folder in your C drive called Office 2007. Now, copy everything from the root of your Office 2007 install media to <strong>C:\Office 2007</strong>. Your Office 2007 folder should look similar to the image below.</p>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://bitsoftech.net/wp-content/uploads/2009/05/image.png" border="0" alt="image" width="689" height="540" /></p>
<p>Now, you need to obtain a copy of the SP2 installer. You can download the service pack from the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B444BF18-79EA-46C6-8A81-9DB49B4AB6E5&amp;displaylang=en" rel="nofollow"  target="_blank">Microsoft Download Center</a>. Save the installer to the root of your C drive. Once you’ve downloaded the file, integrating the service pack is as simple as running one command from the command line.</p>
<p>Open up the command line, navigate to your C drive, and enter the following command. If you saved your Office 2007 install media and/or SP2 file to a different path, make sure you make the appropriate substitutions. Also, if there are spaces in your path, be sure to enclose the path in quotes, as shown below.</p>
<p><strong>office2007sp2-kb953195-fullfile-en-us.exe /extract:”C:\Office 2007\Updates”</strong></p>
<p>Hit enter, then you’ll be prompted to accept the license agreement. If you agree to the terms, check off <strong>Click here to accept the Microsoft Software License Terms</strong>, then click <strong>Continue</strong>.</p>
<p><a href="http://bitsoftech.net/wp-content/uploads/2009/05/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://bitsoftech.net/wp-content/uploads/2009/05/image-thumb.png" border="0" alt="image" width="602" height="384" /></a></p>
<p>When the files have been extracted, click <strong>OK</strong> on the window notifying you that the installation is complete. Navigate to <strong>C:\Office 2007\Updates</strong>. Your folder should look similar to the image below.</p>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://bitsoftech.net/wp-content/uploads/2009/05/image2.png" border="0" alt="image" width="655" height="514" /></p>
<p>You’re almost done! All that’s left now is create your install media. If you’re going to be installing from a network point, just copy your Office 2007 folder to the network share you plan to install from. If you plan to install from DVD—the resulting folder will likely be just over 800MB—you’ll need to create a new DVD project in your favorite DVD burning software, then drag the contents of the Office 2007 folder into your DVD project. Burn your disc, and you’re ready to install Office 2007 with SP2 integrated.</p>
<p>If you&#8217;ve found this post helpful, please leave a comment, I&#8217;d love to hear from you!<br />
<h3 class='related_post_title'>Related Posts</h3>
<ul class='related_post'>
<li><a href='http://bitsoftech.net/create-custom-office-2007-installations/' title='Create Custom Office 2007 Installations'>Create Custom Office 2007 Installations</a></li>
</ul>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/Microsoft' rel='tag,nofollow' target='_self'>Microsoft</a>, <a class='technorati-link' href='http://technorati.com/tag/Office+2007' rel='tag,nofollow' target='_self'>Office 2007</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://bitsoftech.net/integrating-service-pack-2-into-office-2007-installation-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

