<?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>Tek-Tom</title>
	<atom:link href="http://tek-tom.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tek-tom.com</link>
	<description>Technology Solutions</description>
	<lastBuildDate>Wed, 25 Apr 2012 18:36:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Changing folder permissions on redirected desktop folders on SBS 2008</title>
		<link>http://tek-tom.com/changing-folder-permissions-on-redirected-desktop-folders-on-sbs-2008/</link>
		<comments>http://tek-tom.com/changing-folder-permissions-on-redirected-desktop-folders-on-sbs-2008/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 21:29:46 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[SBS 2008]]></category>

		<guid isPermaLink="false">http://tek-tom.com/?p=35</guid>
		<description><![CDATA[A handy wizard in Small Business Server 2008 allows you to redirect the users&#8217; desktop folders the the server to they&#8217;re automatically backed up and you get features similar to roaming desktop where the user can login to any machine &#8230; <a href="http://tek-tom.com/changing-folder-permissions-on-redirected-desktop-folders-on-sbs-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A handy wizard in Small Business Server 2008 allows you to redirect the users&#8217; desktop folders the the server to they&#8217;re automatically backed up and you get features similar to roaming desktop where the user can login to any machine (that they have permission to login to) and see all their documents and settings.</p>
<p>By default the permissions to these folders are  <strong>Grant the user exclusive rights to My Documents </strong>because of the check box being selected automatically. If you don&#8217;t un-check this box, you, as administrator won&#8217;t have access to everyone&#8217;s folder. Which you will probably want to be able to access files when people are away, etc. So even if  you clear this box later, the same permissions will remain.</p>
<p>How do you change this? One way is to go to each folder and take ownership of them and then manually edit the permissions to give administrator full control. You might find that if you do it this way, there will be problems the next time someone logs off their computer and they don&#8217;t have access to these folders to update the files they&#8217;ve been working on all day.</p>
<p>There is another way using a tool from sysinternals that is part of the PSTools.zip batch of tools which can be downloaded from <a href="http://technet.microsoft.com/en-us/sysinternals/bb897553" target="_blank">here</a> and using powershell that is built into SBS 2008 to use a script to change all the permissions for you.</p>
<p>You will need to create this powershell script and edit it to reflect your environment and save it as ChangePermissions.ps1. If you followed best practices, you have moved the data files and folder redirections to a secondary drive and not kept them on the c: drive. So the $StartingDir is where the folders are for the users.</p>
<p><code>#ChangePermissions.ps1<br />
# CACLS rights are usually<br />
# F = FullControl<br />
# C = Change<br />
# R = Readonly<br />
# W = Write</code></p>
<p><code>$StartingDir= "E:\Users"</code></p>
<p><strong><code>$Principal="Administrators"</code></strong></p>
<p><code>$Permission="F"</code></p>
<p><code>$Verify=Read-Host `n "You are about to change permissions on all" `<br />
"files starting at"$StartingDir.ToUpper() `n "for security"`<br />
"principal"$Principal.ToUpper(<wbr>) `<br />
"with new right of"$Permission.ToUpper()"."`n `<br />
"Do you want to continue? [Y,N]"</wbr></code></p>
<p><code>if ($Verify -eq "Y") {</code></p>
<p><code>foreach ($file in $(Get-ChildItem $StartingDir -recurse)) {<br />
#display filename and old permissions<br />
write-Host -foregroundcolor Yellow $file.FullName<br />
#uncomment if you want to see old permissions<br />
#CACLS $file.FullName</code></p>
<p><code>#ADD new permission with CACLS<br />
CACLS $file.FullName /E /P "${Principal}:${Permission}" &gt;$NULL</code></p>
<p><code>#display new permissions<br />
Write-Host -foregroundcolor Green "New Permissions"<br />
CACLS $file.FullName<br />
}<br />
}</code></p>
<p>The next step is to save this file somewhere and then call it from an elevated command prompt. This is what mine looked like, you will have to change to match  your environment:</p>
<p>psexec -s -i powershell -noexit &#8220;&amp; &#8216;e:\software\tools\ChangePermissions.<wbr>ps1&#8242;&#8221;</wbr></p>
<p>Then sit back and watch as all the permissions are changed. You will then have access to the redirected folders on the server.</p>
<p>&nbsp;</p>
<div class="youtube" style="width: 350; height: 300;"><object width="350" height="300" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/c6_VMIwMZZs&amp;hd=1&amp;showinfo=0&amp;autohide=1" /><embed width="350" height="300" type="application/x-shockwave-flash" src="http://www.youtube.com/v/c6_VMIwMZZs&amp;hd=1&amp;showinfo=0&amp;autohide=1" wmode="transparent" /></object></div>
<p>Thanks to <a href="http://mypkb.wordpress.com/">http://mypkb.wordpress.com/</a> for the information!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://tek-tom.com/changing-folder-permissions-on-redirected-desktop-folders-on-sbs-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New windows drivers forum is up</title>
		<link>http://tek-tom.com/new-drivers-forum/</link>
		<comments>http://tek-tom.com/new-drivers-forum/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 16:04:31 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Tech News]]></category>

		<guid isPermaLink="false">http://tek-tom.com/?p=30</guid>
		<description><![CDATA[To try to keep track of all the drivers for devices I have around the house, I&#8217;ve created a new forum to upload them so I can access them from anywhere. Just go to http://www.tektom.info to see the forums. I &#8230; <a href="http://tek-tom.com/new-drivers-forum/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To try to keep track of all the drivers for devices I have around the house, I&#8217;ve created a new forum to upload them so I can access them from anywhere.</p>
<p>Just go to <a title="Tektom windows Drivers" href="http://www.tektom.info">http://www.tektom.info</a> to see the forums.</p>
<p>I will also be adding other drivers I find around the office and home so that I won&#8217;t have to look around for the installation CDs anymore.</p>
<p>Put in a request for a driver if you would like me to find a hardware driver for you.</p>
<p>L8R,</p>
<p>TT</p>
]]></content:encoded>
			<wfw:commentRss>http://tek-tom.com/new-drivers-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

