<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>4sysops &#187; Tips</title>
	<atom:link href="http://4sysops.com/archives/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://4sysops.com</link>
	<description>For Windows Administrators</description>
	<lastBuildDate>Thu, 24 May 2012 03:46:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<image>
    <title>4sysops</title>
    <url>http://4sysops.com/4sysops-rss.png</url>
    <link>http://4sysops.com</link>
    <width>143</width>
    <height>49</height>
    <description>4sysops.com</description>
    </image>		<item>
		<title>How to install Windows To Go</title>
		<link>http://4sysops.com/archives/how-to-install-windows-to-go/</link>
		<comments>http://4sysops.com/archives/how-to-install-windows-to-go/#comments</comments>
		<pubDate>Tue, 22 May 2012 17:21:03 +0000</pubDate>
		<dc:creator>Geoff Kendal</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[windows 8]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8668</guid>
		<description><![CDATA[n my last article, I <a href="http://4sysops.com/archives/windows-to-go-introduction/">introduced Windows To Go</a>, a new feature in Windows 8. Now, it’s time to get our hands dirty and install Windows To Go on a USB stick in a portable workspace.]]></description>
			<content:encoded><![CDATA[<p><strong><i>n my last article, I <a href="http://4sysops.com/archives/windows-to-go-introduction/">introduced Windows To Go</a>, a new feature in Windows 8. Now, it’s time to get our hands dirty and install Windows To Go on a USB stick in a portable workspace.</i></strong></p>
<p>Before we start, we will need to make sure we have a few things ready:</p>
<ol>
<li>USB (2.0) stick &gt;16GB (&gt;32GB USB 3.0 is recommended for seamless performance)</li>
<li>Windows 8 ISO (or at least the install.wim file from inside the ISO)</li>
<li>A system with the Windows Automated Installation Kit (WAIK) installed</li>
</ol>
<p>The first thing we will need to do is make sure that the partitions on the disk are set up correctly. For this, we will need to run “diskpart” from a command prompt. When you see the diskpart command prompt, enter the following command:</p>
<p><em>list disk</em></p>
<p>This will show all the disks currently attached to the system. Identify your USB disk. (Make sure you do this correctly. We don’t want to trash the system disk!) Once identified, enter the following command, substituting <em>X</em> with the disk number of your USB disk:</p>
<p><em>sel disk X</em></p>
<p>Now that we have the correct disk selected, we can partition and format it with the following sequence of commands:</p>
<p><em>clean</em></p>
<p><em>create partition pri</em></p>
<p><em>format fs=ntfs quick</em></p>
<p><em>active</em></p>
<p><em>exit</em></p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Windows-To-Go-Format-USB-stick.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Windows-To-Go-Format-USB-stick.png','',event,300,75)"><img style="margin: 0px 6px; display: inline;" title="Windows To Go - Format USB stick" src="http://4sysops.com/wp-content/uploads/2012/05/Windows-To-Go-Format-USB-stick_thumb.png" alt="Windows To Go - Format USB stick" width="519" height="530" /></a></p>
<p align="center"><em>Windows To Go &#8211; Format USB stick</em></p>
<p>At this stage, you should be able to see your empty USB drive in Windows Explorer. If you can’t, you may need to assign the disk a drive letter. You can do this by running computer management (compmgmt.msc) and then selecting the disk management node, right-clicking your partition on the USB drive, and selecting the “Assign drive letter” option.</p>
<p>Now we need to get our hands on the install.wim image file, which is located inside the Windows 8 ISO. If you are running Windows 8, you can just double-click the ISO file and access the files via Windows Explorer (similar to how ZIP files are handled). If you’re running a previous version of Windows, you may need a third-party tool to open the ISO, such as 7-Zip.</p>
<p>Once you’re able to access the files in the Windows 8 ISO, you will find install.wim in the “sources” folder. Now that we have the WIM file, we can apply it to our USB disk. Start the Deployment Tools command prompt. (This is just a regular command prompt, but it loads extra locations into the path when it starts.) Then, run the following command:</p>
<p><em>imagex.exe /apply c:\path\to\install.wim 1 X:\</em></p>
<p>You will need to replace the path to install.wim and also substitute X: with the letter assigned to your USB drive. This stage may take quite a while, but we’re almost there.</p>
<p>Once the image has applied, we just need to set up a boot record on our USB disk. To do this, issue the following command from a regular Windows 8 command prompt:</p>
<p><em>bcdboot.exe X:\windows /s X: /f ALL</em></p>
<p>Again, make sure you substitute <em>X:</em> with the letter assigned to your USB disk.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Windows-To-Go-Startup-Options.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Windows-To-Go-Startup-Options.png','',event,300,75)"><img style="margin: 0px 6px; display: inline;" title="Windows To Go - Startup Options" src="http://4sysops.com/wp-content/uploads/2012/05/Windows-To-Go-Startup-Options_thumb.png" alt="Windows To Go - Startup Options" width="400" height="203" /></a></p>
<p align="center"><em>Windows To Go &#8211; Startup Options</em></p>
<p>Our basic Windows To Go workspace is now complete. Reboot your system and press F12 (or whatever key is required to get the boot menu), and then select the USB device. Windows should load from your USB drive!</p>
Author: Geoff Kendal
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-to-go-introduction/" title="Windows To Go introduction (May 21, 2012)">Windows To Go introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-new-features-the-complete-list/" title="Windows 8 new features &#8211; The complete list (May 17, 2012)">Windows 8 new features &#8211; The complete list</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-metro-disable-in-windows-server-2012/" title="Windows 8 Metro &#8211; Disable in Windows Server 2012? (April 23, 2012)">Windows 8 Metro &#8211; Disable in Windows Server 2012?</a> (0)</li>
	<li><a href="http://4sysops.com/archives/domain-join-behavior-in-windows-server-8/" title="Domain join behavior in Windows Server 8 (April 17, 2012)">Domain join behavior in Windows Server 8</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/how-to-install-windows-to-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 Hyper-V</title>
		<link>http://4sysops.com/archives/windows-8-hyper-v/</link>
		<comments>http://4sysops.com/archives/windows-8-hyper-v/#comments</comments>
		<pubDate>Tue, 15 May 2012 17:19:12 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>
		<category><![CDATA[windows 8]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8606</guid>
		<description><![CDATA[One of the great additions to Windows 8 is Hyper-V 3.0, also known as Client Hyper-V, allowing full 64-bit testing from your desktop. In this post I’ll talk a little bit about it and tell you how to enable it in Windows 8.]]></description>
			<content:encoded><![CDATA[<p><strong><i>One of the great additions to Windows 8 is Hyper-V 3.0, also known as Client Hyper-V, allowing full 64-bit testing from your desktop. In this post I’ll talk a little bit about it and tell you how to enable it in Windows 8.</i></strong></p>
<p>Remember that first time you tried to fire up a virtual test machine in <a href="http://www.microsoft.com/windows/virtual-pc/download.aspx">Windows 7 Virtual PC</a> only to discover that 64-bit operating systems were not supported? How disappointing!</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Enable-Hyper-V-Windows-8.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Enable-Hyper-V-Windows-8.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Enable Hyper-V Windows 8" src="http://4sysops.com/wp-content/uploads/2012/05/Enable-Hyper-V-Windows-8_thumb.png" alt="Enable Hyper-V Windows 8" width="529" height="447" border="0" /></a></p>
<p align="center"><em>Enable Hyper-V in Windows 8</em></p>
<p>Fret no more. Windows 8 desktop includes Hyper-V 3.0. I’ve spent some time checking it out and I’m quite impressed. The reason I’m so impressed is that the new feature looks and feels just like the Hyper-V Manager we all grew accustomed to in Windows Server 2008 R1 and R2. It is in fact the exact same tool available in Windows Server 2012.</p>
<p>Please note that you will need Windows 8 Professional to run Client Hyper-V (see <a href="http://windowsteamblog.com/windows/b/bloggingwindows/archive/2012/04/16/announcing-the-windows-8-editions.aspx">edition features</a>). Windows 8 (standard edition) and Windows 8 RT (for ARM processors) won’t support Client Hyper-V. You can try Client Hyper-V by <a href="http://windows.microsoft.com/en-US/windows-8/download">downloading</a> the current Consumer Preview.</p>
<h2>Client Hyper-V hardware requirements and Limitations</h2>
<p>The added capability also includes new hardware requirements. The good thing is that your typical modern desktop system should support them.</p>
<ul>
<li>4GB of RAM is a requirement. You will probably have at least 4GB if you’re going to be running virtual machines.</li>
<li>A 64-bit Second Level Address Translation (SLAT) capable system is also required. Intel’s Desktop i-series (i3, i5, i7) supports SLAT. For AMD support see <a href="http://support.amd.com/us/kbarticles/Pages/GPU120AMDRVICPUsHyperVWin8.aspx">AMD Processors with Rapid Virtualization Indexing Required to Run Hyper-V in Windows 8</a>. Also see <a href="http://social.technet.microsoft.com/wiki/contents/articles/1401.hyper-v-list-of-slat-capable-cpus-for-hosts.aspx">Hyper-V: List of SLAT capable CPUs for Hosts</a> for more information.</li>
</ul>
<p>Although the Hyper-V Manager tool looks identical to what you see in Windows Server 2012, there are a handful of features that cannot be used in Client Hyper-V.</p>
<ul>
<li>Remote FX</li>
<li>Live VM Migration</li>
<li>Hyper-V Replica</li>
<li>SR-IOV networking</li>
<li>Synthetic Fibre Channel</li>
</ul>
<p>For additional information please see <a href="http://social.technet.microsoft.com/wiki/contents/articles/7704.client-hyper-v-survival-guide-en-us.aspx">Microsoft Technet Client Hyper-V Survival Guide</a>.</p>
<h2>Enable Hyper-V in Windows 8</h2>
<p>Enabling Hyper-V is extremely easy in Windows 8.</p>
<ol>
<li>If you are at the Start screen, begin by clicking <strong>Desktop</strong>.</li>
<li>Now move your mouse to the bottom left corner of the screen and right-click when you see the start icon pop up.
<a href="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Start-icon.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Start-icon.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Hyper-V Windows 8 - Start icon" src="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Start-icon_thumb.png" alt="Hyper-V Windows 8 - Start icon" width="339" height="141" border="0" /></a></li>
<li>Click <strong>Programs and Features</strong> and then click <strong>Turn Windows features on or off</strong>.<a href="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Program-and-Features.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Program-and-Features.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Hyper-V Windows 8 - Program and Features" src="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Program-and-Features_thumb.png" alt="Hyper-V Windows 8 - Program and Features" width="163" height="209" border="0" /></a></li>
<li>From here you can just enable Hyper-V and all other Hyper-V components will be installed.
Included are the GUI Management Tools, Module for Windows Powershell, and the Hyper-V Platform.</li>
<li>After clicking OK, you’ll have to restart. Once you get to the logon screen, the machine will restart again.</li>
</ol>
<p>After logging back in, you may have to scroll in the Metro interface all the way to the right to see a new tile labeled <strong>Hyper-V Manager</strong>. Click the tile and Hyper-V Manager is opened at the Desktop.</p>
<p align="center"><em><a href="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Metro.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Metro.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Hyper-V Windows 8 - Metro" src="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Metro_thumb.png" alt="Hyper-V Windows 8 - Metro" width="579" height="502" border="0" /></a></em></p>
<p align="center"><em>Hyper-V in Windows 8 Metro</em></p>
<p>If you’ve been using Hyper-V Manager in Windows Server 2008, the GUI in Windows 8 will feel very familiar. What really impresses me is that it doesn’t appear that any features have been stripped out that would make the desktop version a “dumbed-down” version with limited usefulness. For example, an important difference is that Windows 8 Client Hyper-V is a bare metal hypervisor (type 1) as opposed to the Windows 7 Virtual PC hypervisor that is hosted (type 2). Thus you can expect better performance and more reliability with Hyper-V in Windows 8.</p>
<p>Two features that stood out to me were the expanded list of processor and virtual NIC options.</p>
<h2>Processor settings</h2>
<ul>
<li>NUMA – NUMA customizations can now be made for each virtual machine. Previously this could be done in the host settings but not per VM.</li>
</ul>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Processor-settings.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Processor-settings.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Hyper-V Windows 8 - Processor settings" src="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Processor-settings_thumb.png" alt="Hyper-V Windows 8 - Processor settings" width="604" height="445" border="0" /></a></p>
<p align="center"><em>Hyper-V Windows 8 – Processor settings</em></p>
<h2>Network adapter</h2>
<ul>
<li>Bandwidth – Enable Bandwidth Management and control the minimum and maximum bandwidth for a virtual network adapter. The settings are in MBps.</li>
</ul>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Network-adapter.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Network-adapter.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Hyper-V Windows 8 - Network adapter" src="http://4sysops.com/wp-content/uploads/2012/05/Hyper-V-Windows-8-Network-adapter_thumb.png" alt="Hyper-V Windows 8 - Network adapter" width="604" height="573" border="0" /></a></p>
<p align="center"><em>Hyper-V Windows 8 – Network settings</em></p>
<p>Windows 8 Client Hyper-V is definitely a great improvement over Windows 7 Virtual PC.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/how-to-install-windows-to-go/" title="How to install Windows To Go (May 22, 2012)">How to install Windows To Go</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-to-go-introduction/" title="Windows To Go introduction (May 21, 2012)">Windows To Go introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-new-features-the-complete-list/" title="Windows 8 new features &#8211; The complete list (May 17, 2012)">Windows 8 new features &#8211; The complete list</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-metro-disable-in-windows-server-2012/" title="Windows 8 Metro &#8211; Disable in Windows Server 2012? (April 23, 2012)">Windows 8 Metro &#8211; Disable in Windows Server 2012?</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/windows-8-hyper-v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Folder Redirection &#8211; Part 5: Best practices</title>
		<link>http://4sysops.com/archives/folder-redirection-part-5-best-practices/</link>
		<comments>http://4sysops.com/archives/folder-redirection-part-5-best-practices/#comments</comments>
		<pubDate>Mon, 14 May 2012 17:37:15 +0000</pubDate>
		<dc:creator>Kyle Beckman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[group policy]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8593</guid>
		<description><![CDATA[<a href="http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In the last part of this series, I’ll discuss things that I’ve learned in implementing Folder Redirection and things you’ll need to consider before you implement.]]></description>
			<content:encoded><![CDATA[<p><strong><i><a href="http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In the last part of this series, I’ll discuss things that I’ve learned in implementing Folder Redirection and things you’ll need to consider before you implement.</i></strong></p>
<p>After implementing this in several organizations, I’ve discovered several issues that may be of interest if you’re planning on implementing Folder Redirection.</p>
<h2>Test, test, test</h2>
<p>If you’ve read other Group Policy articles I’ve read, I harp on testing. Sorry, but way too many people make a change in a production environment before trying it out on test systems first.</p>
<h2>Communicate to end users</h2>
<p>If Folder Redirection is new for your users, make sure they know the change is coming. Most users will never notice until they accidentally delete a file or have a machine die and you become their hero.</p>
<h2>Slow logons after implementation</h2>
<p>One of the things you’ll need to communicate with users if you have pre-Windows 7 computers is that they may see slow logons the first time they log into their computers after Folder Redirection is implemented. Not only are everyone’s files being copied to the file server, but the server’s NIC and the network will probably be saturated with file transfer traffic. (Microsoft improved this in Windows 7 with <a href="http://technet.microsoft.com/en-us/library/ff183315%28WS.10%29.aspx">Fast First Logon</a>.</p>
<h2>Broken shortcuts and Recent Documents</h2>
<p>If users have created shortcuts to documents or folders inside of folders that you’re redirecting, they may end up with broken shortcuts. The same is true for the Recent Documents feature in applications like Word and Excel.</p>
<h2>Which folders to redirect</h2>
<p>Decide beforehand what you want to redirect vs. what you really need to redirect. Is it really important to redirect Downloads? How about Saved Games? Everything you redirect is going to have an impact on how much storage you need.</p>
<h2>Planning storage</h2>
<p>For your shared folder, you’ll want to make sure that the share is on a volume that is large enough to handle the amount of data that your users will be storing. There are a few ways to accomplish this, but most of them depend on your server environment. If your file server is a virtual machine, you can always expand your virtual disk and then expand the volume in Windows if you start to run low on disk space later. In the event you’re using a physical server connected to some kind of Fiber Channel or iSCSI SAN, you can do pretty much do the same thing: Expand the volume on the SAN and then expand the volume in Windows.</p>
<p>The amount of storage you’ll need can vary widely depending on the types of users you’re supporting. I’ve seen administrative users (accountants, HR, etc.) users use as little as a few hundred megabytes and engineers use hundreds of gigs. Plan accordingly!</p>
<h2>File server configuration</h2>
<p>File server configuration can have an impact on Folder Redirection. Just be aware that things like antivirus or an IDS application can impact your users. Also be aware of whether or not File Screening is being used to block files on your file server since this will impact Folder Redirection also.</p>
<h2>Consider using DFS</h2>
<p>If you’re already using DFS, seriously consider using DFS for your folder redirections. In the event you need to change servers or create a more redundant file server, everything you need is already built in to DFS.</p>
<h2>Stopping Folder Redirection for labs and kiosks</h2>
<p>If you have training facilities, kiosks, or other computers where you don’t want user folders being redirected, you’ll need to use <a href="http://4sysops.com/archives/group-policy-loopback-processing-part-2-replace-mode-and-merge-mode/">loopback processing</a>. In most cases, using Replace will be the easiest since it will just ignore all of the User Configuration. In the event you do decide to use Merge, make sure you set a User policy that redirects all of the folders to the local user profile.</p>
<h2>Offline Files</h2>
<p>In most circumstances, the default settings for Offline files will probably be adequate. In the event you need to change those settings, Offline Files can be configured for the entire computer in the GPMC at Computer Configuration &gt; Policies &gt; Administrative Templates &gt; Network &gt; Offline Files. On the user side, it is located in User Configuration &gt; Policies &gt; Administrative Templates &gt; Network &gt; Offline Files. By default, Redirected Folders will be made available offline. On both sides, you can disable Offline Files by setting “Prevent use of Offline Files” to Enabled.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Prevent-use-of-Offline-Files.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Prevent-use-of-Offline-Files.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Folder Redirection - Prevent use of Offline Files" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Prevent-use-of-Offline-Files_thumb.png" alt="Folder Redirection - Prevent use of Offline Files" width="604" height="552" border="0" /></a></p>
<p align="center"><em>Folder Redirection &#8211; Prevent use of Offline Files</em></p>
<h2>Disabled Offline Files and server availability</h2>
<p>In the event you need to disable Offline Files for security reason, you’ll want to make sure that your file server is as highly available as possible. In the event your file server does need to be offline or reboot, just be aware that any logged in users will immediately lose access to their files until the file server becomes available again.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Offline-Files-disabled-and-file-server-unavailable.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Offline-Files-disabled-and-file-server-unavailable.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Folder Redirection - Offline Files disabled and file server unavailable" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Offline-Files-disabled-and-file-server-unavailable_thumb.png" alt="Folder Redirection - Offline Files disabled and file server unavailable" width="576" height="203" border="0" /></a></p>
<p align="center"><em>Folder Redirection &#8211; Offline Files disabled and file server unavailable</em></p>
Author: Kyle Beckman
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/" title="Folder Redirection &#8211; Part 4: Group Policy configuration (May 9, 2012)">Folder Redirection &#8211; Part 4: Group Policy configuration</a> (0)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/" title="Folder Redirection &#8211; Part 3: Explanation of folder permissions (May 7, 2012)">Folder Redirection &#8211; Part 3: Explanation of folder permissions</a> (4)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/" title="Folder Redirection &#8211; Part 2: Setting up your file server (May 2, 2012)">Folder Redirection &#8211; Part 2: Setting up your file server</a> (0)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/" title="Folder Redirection &#8211; Part 1: Introduction (April 30, 2012)">Folder Redirection &#8211; Part 1: Introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-desktop-optimization-pack-mdop-advanced-group-policy-management-agpm/" title="Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM) (April 13, 2012)">Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM)</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/folder-redirection-part-5-best-practices/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<series:name><![CDATA[Folder Redirection]]></series:name>
	</item>
		<item>
		<title>Folder Redirection &#8211; Part 4: Group Policy configuration</title>
		<link>http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/</link>
		<comments>http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/#comments</comments>
		<pubDate>Wed, 09 May 2012 19:59:10 +0000</pubDate>
		<dc:creator>Kyle Beckman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[group policy]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8571</guid>
		<description><![CDATA[<a href="https://4sysops.com/archives/folder-redirection-part-1-introduction/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In part 4 of <a href="https://4sysops.com/archives/folder-redirection-part-1-introduction/">this series</a>, I’ll discuss configuring Folder Redirection and the available configuration options in Group Policy.]]></description>
			<content:encoded><![CDATA[<p><strong><i><a href="https://4sysops.com/archives/folder-redirection-part-1-introduction/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In part 4 of <a href="https://4sysops.com/archives/folder-redirection-part-1-introduction/">this series</a>, I’ll discuss configuring Folder Redirection and the available configuration options in Group Policy.</i></strong></p>
<p>Now that we have a server with a share configured, we’re ready to set up the Folder Redirection in Group Policy. Folder Redirection is User configuration. Because of that, you’ll need to either create a new Group Policy Object (GPO) or edit an existing GPO that is linked to an OU for your users. Go to User Configuration &gt; Policies &gt; Windows Settings &gt; Folder Redirection.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/GPMC-in-Windows-7-Showing-Folder-Redirection.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/GPMC-in-Windows-7-Showing-Folder-Redirection.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="GPMC in Windows 7 Showing Folder Redirection" src="http://4sysops.com/wp-content/uploads/2012/05/GPMC-in-Windows-7-Showing-Folder-Redirection_thumb.png" alt="GPMC in Windows 7 Showing Folder Redirection" width="604" height="447" border="0" /></a></p>
<p align="center"><em>GPMC in Windows 7 Showing Folder Redirection</em></p>
<p>Right-click on one of the folder names and click Properties. In my example, I’ll be using Documents. The first thing you’ll want to set in the Target tab is how you want to redirect folders: Basic or Advanced. If you’re planning on directing every user to your new User share, then Basic will probably do for you. If you have multiple shares for Folder Redirection (possibly for departments or geographical locations), you can choose Advanced and assign specific folders for groups.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Properties.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Properties.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Folder Redirection Properties" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Properties_thumb.png" alt="Folder Redirection Properties" width="408" height="452" border="0" /></a></p>
<p align="center"><em>Folder Redirection Properties</em></p>
<p>Next, you’ll need to determine where you want to redirect the user folders. In most circumstances, you’ll probably want to use “Create a folder for each user under the root path.” However, you can also use a user’s home directory (if you have that attribute configured in AD), a specific path (for labs or common area computers where every user should share certain folders), and the local user profile (useful if you don’t want users reconfiguring folder locations).</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Target-folder-location.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Target-folder-location.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Folder Redirection - Target folder location" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Target-folder-location_thumb.png" alt="Folder Redirection - Target folder location" width="403" height="447" border="0" /></a></p>
<p align="center"><em>Target folder location</em></p>
<p>Type in the name of your server and the path to your Users share. If you used the option to create a folder for each user under the path, you’ll see that your folder structure should be in the format \\fileserver\Users\%username%\redirectefoldername for each Folder Redirection you configure.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Root-Path-setting.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Root-Path-setting.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Folder Redirection - Root Path setting" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Root-Path-setting_thumb.png" alt="Folder Redirection - Root Path setting" width="408" height="452" border="0" /></a></p>
<p align="center"><em> Root Path setting</em></p>
<p>Go to the Settings tab. Uncheck the checkbox by “Grant the user exclusive rights to Documents.” If you don’t uncheck this setting, the permissions will be configured so that even Administrators won’t be able to access the files without changing the folder permissions.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Settings-Tab.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Settings-Tab.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Folder Redirection - Settings Tab" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Settings-Tab_thumb.png" alt="Folder Redirection - Settings Tab" width="408" height="452" border="0" /></a></p>
<p align="center"><em>Settings Tab</em></p>
<p>Choose the settings for the remaining options that work for your environment and click OK.</p>
<p>That’s it! All you need to do is go to your test system, refresh Group Policy, log off, and log back in. Just be aware that when you run gpupdate, you’ll get a reminder that you need to log out and back in for the changes to take place.</p>
<p>In the last post of this Folder Redirection series I will share some <a href="http://4sysops.com/archives/folder-redirection-part-5-best-practices/">best practices tips</a>.</p>
Author: Kyle Beckman
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/folder-redirection-part-5-best-practices/" title="Folder Redirection &#8211; Part 5: Best practices (May 14, 2012)">Folder Redirection &#8211; Part 5: Best practices</a> (1)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/" title="Folder Redirection &#8211; Part 3: Explanation of folder permissions (May 7, 2012)">Folder Redirection &#8211; Part 3: Explanation of folder permissions</a> (4)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/" title="Folder Redirection &#8211; Part 2: Setting up your file server (May 2, 2012)">Folder Redirection &#8211; Part 2: Setting up your file server</a> (0)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/" title="Folder Redirection &#8211; Part 1: Introduction (April 30, 2012)">Folder Redirection &#8211; Part 1: Introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-desktop-optimization-pack-mdop-advanced-group-policy-management-agpm/" title="Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM) (April 13, 2012)">Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM)</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Folder Redirection]]></series:name>
	</item>
		<item>
		<title>Folder Redirection &#8211; Part 3: Explanation of folder permissions</title>
		<link>http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/</link>
		<comments>http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/#comments</comments>
		<pubDate>Mon, 07 May 2012 19:23:40 +0000</pubDate>
		<dc:creator>Kyle Beckman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[roaming profiles]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8556</guid>
		<description><![CDATA[<a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In part 3 of this <a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">series</a>, I’ll discuss the folder permissions we set on the file server along with justifications for those settings and alternatives.]]></description>
			<content:encoded><![CDATA[<p><strong><i><a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In part 3 of this <a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">series</a>, I’ll discuss the folder permissions we set on the file server along with justifications for those settings and alternatives.</i></strong></p>
<p>At this point, you may have noticed that we didn’t give our users very many permissions on the Users folder. First and foremost, we made sure that one user can’t see inside of another user’s folder. It’s also pretty obvious that we don’t want to give users the ability to do things like take ownership, delete files/folders, or change permissions, but a few of the other missing permissions take a little more explanation.</p>
<p>First off, you don’t want users to have Create files/write data permissions or they can save files into the root of the shared folder. Since we’re redirecting folders, we only want the users to be able to create folders in the root Users folder, but not individual files. Once the user creates a folder named %username%, the CREATOR OWNER permission will take over (since it is a sub-folder of Users) and will give the account full control over the %username% folder and everything inside of it.</p>
<p>Second, List folder/read data is also missing because we don’t want users to be able to enumerate folders in the share. Here’s what it will look like to the end user if they try to go to \\fileserver\Users:</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-User-cant-enumerate-folders.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-User-cant-enumerate-folders.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Folder Redirection - User can't enumerate folders" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-User-cant-enumerate-folders_thumb.png" alt="Folder Redirection - User can't enumerate folders" width="604" height="454" border="0" /></a></p>
<p align="center"><em>User can&#8217;t enumerate folders</em></p>
<p>However, if the user tries to go to \\fileserver\Users\%username%, he can see all of his folders:</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redicretion-User-CAN-see-inside-username-folder.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redicretion-User-CAN-see-inside-username-folder.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Folder Redicretion - User CAN see inside username folder" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redicretion-User-CAN-see-inside-username-folder_thumb.png" alt="Folder Redicretion - User CAN see inside username folder" width="604" height="383" border="0" /></a></p>
<p align="center"><em>User CAN see inside username folder</em></p>
<p>To the Administrator, you’ll still be able to see everything on the server:</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-redirected-folders-on-server.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-redirected-folders-on-server.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Folder Redirection - redirected folders on server" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-redirected-folders-on-server_thumb.png" alt="Folder Redirection - redirected folders on server" width="604" height="454" border="0" /></a></p>
<p align="center"><em>Redirected folders on server</em></p>
<p>Why would you want to do it this way? The biggest reason is that we’re giving the user the ability to create folders in the Users share. That means that there is nothing to stop a user from creating a few hundred folders and then saving files into those folders inside of Users. By removing the ability to enumerate folders in the Users share, you eliminate the ability of the user to see what is in the folder. It doesn’t stop the user from being able to create other folders or copy data into them, but it makes is much more difficult to use should they decide to try.</p>
<p>The other big benefit you get is that users can’t see the other user account folders that are stored in the Users share. Can’t I do that with Access Based Enumeration? Yes… Access Based Enumeration will essentially hide any files/folders to a user that he/she doesn’t have permissions to see; but, it doesn’t solve the problem of the user being able to create new folders in your Users share. If you enable Access Based Enumeration and allow users to enumerate the contents of the share, they’ll just see their %username% folder and all of the other folders they’ve created there.</p>
<p>In the next post I will show you how to <a href="http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/">configure folder redirection in Group Policy</a>.</p>
Author: Kyle Beckman
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/folder-redirection-part-5-best-practices/" title="Folder Redirection &#8211; Part 5: Best practices (May 14, 2012)">Folder Redirection &#8211; Part 5: Best practices</a> (1)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/" title="Folder Redirection &#8211; Part 4: Group Policy configuration (May 9, 2012)">Folder Redirection &#8211; Part 4: Group Policy configuration</a> (0)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/" title="Folder Redirection &#8211; Part 2: Setting up your file server (May 2, 2012)">Folder Redirection &#8211; Part 2: Setting up your file server</a> (0)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/" title="Folder Redirection &#8211; Part 1: Introduction (April 30, 2012)">Folder Redirection &#8211; Part 1: Introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-desktop-optimization-pack-mdop-advanced-group-policy-management-agpm/" title="Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM) (April 13, 2012)">Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM)</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<series:name><![CDATA[Folder Redirection]]></series:name>
	</item>
		<item>
		<title>Folder Redirection &#8211; Part 2: Setting up your file server</title>
		<link>http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/</link>
		<comments>http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/#comments</comments>
		<pubDate>Thu, 03 May 2012 04:20:44 +0000</pubDate>
		<dc:creator>Kyle Beckman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[group policy]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8515</guid>
		<description><![CDATA[<a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In part 2 of this <a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">series</a>, I’ll discuss setting up the shared folder and permissions you’ll need on your file server.]]></description>
			<content:encoded><![CDATA[<p><strong><i><a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">Folder Redirection in Group Policy</a> allows a systems administrator to redirect certain folders from a user’s profile to a file server. In part 2 of this <a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/">series</a>, I’ll discuss setting up the shared folder and permissions you’ll need on your file server.</i></strong></p>
<p>Before you set up Group Policy for Folder Redirection, you need a properly configured file server. In my examples, I’ll be using Windows Server 2008 R2, but earlier versions will have the same settings, more or less.</p>
<p>The first decision you’ll need to make is on the share name. My preference is typically to use “Users” since we’ll be redirecting user folders. As an added step, you can make this a hidden share (by adding a $ to the end of the share name) if you think that is necessary for your file server. It is fairly easy for users to discover where their folders are being redirected. Personally, I’m not a big fan of hiding shares unless they are being used in DFS or there is another good reason to hide them; but, that is typically a personal (or organizational) preference.</p>
<p>Starting with the Sharing tab, you’ll want to share the folder by clicking the Advanced Sharing button. Click the “Share this folder” checkbox and the share name should fill in automatically. Caching should default to “Only the files and programs that users specify are available offline.” Click the Permissions tab. In Permissions, you can probably check the Full Control checkbox and OK, but make sure that works for your environment. If you provision Guest accounts or have users that don’t need access to the Folder Redirection share, consider limiting the share to Domain Users or smaller groups of users.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Share-Properties.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Share-Properties.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Folder Redirection - Share Properties" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Share-Properties_thumb.png" alt="Folder Redirection - Share Properties" width="294" height="253" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Share-Permissions.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Share-Permissions.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Folder Redirection - Share Permissions" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-Share-Permissions_thumb.png" alt="Folder Redirection - Share Permissions" width="294" height="353" border="0" /></a></p>
<p align="center"><em>Share permissions</em></p>
<p>The easiest method for provisioning new folders for users is to allow the logon process to create all of the folders automatically as they are redirected to the file server. To do this, you’ll need to set the file permissions so that users can create folders, but not access the folders of other users. This can all be done in the GUI, but I prefer using the icacls.exe utility to set the file permissions for something like this so I can be sure I don’t miss something. Here are the commands you’ll need:</p>
<pre>icacls.exe C:\Shares\Users /inheritance:d</pre>
<p>This removes inheritance on the folder and copies the existing permissions. We want to do this for two reasons: first off, any permission changes to the volume or top-level folder will propagate down to your shared folder which we don’t want. Second, the default file permissions will give “Users” access to read everything in the folder… we don’t want that either.</p>
<pre>icacls.exe C:\Shares\Users /remove:g Users</pre>
<p>Remove “Users” access to the folder so that users can’t get nosey and go through other users’ files.</p>
<pre>icacls.exe C:\Shares\Users /grant Everyone:(x,ra,ad)</pre>
<ul>
<li>Give “Everyone” execute/traverse (x), read attributes (ra), and append data/add subdirectory (ad). After running the command, your permissions should look like this:</li>
<li>Administrators (Full Control) – This folder, sub-folders, and files</li>
<li>SYSTEM (Full Control) – This folder, sub-folders, and files</li>
<li>CREATOR OWNER (Full Control) – Sub-folders, and files</li>
<li>Everyone (Special – Traverse Folder/Execute File, Read Attributes, Create Folders/Append Data) – This folder only</li>
</ul>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-File-Permissions.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-File-Permissions.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Folder Redirection - File Permissions" src="http://4sysops.com/wp-content/uploads/2012/05/Folder-Redirection-File-Permissions_thumb.png" alt="Folder Redirection - File Permissions" width="604" height="287" border="0" /></a></p>
<p align="center"><em>File permissions</em></p>
<p>In my next post I will discuss <a href="http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/">folder permissions</a>.</p>
Author: Kyle Beckman
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/folder-redirection-part-5-best-practices/" title="Folder Redirection &#8211; Part 5: Best practices (May 14, 2012)">Folder Redirection &#8211; Part 5: Best practices</a> (1)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/" title="Folder Redirection &#8211; Part 4: Group Policy configuration (May 9, 2012)">Folder Redirection &#8211; Part 4: Group Policy configuration</a> (0)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/" title="Folder Redirection &#8211; Part 3: Explanation of folder permissions (May 7, 2012)">Folder Redirection &#8211; Part 3: Explanation of folder permissions</a> (4)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-1-introduction/" title="Folder Redirection &#8211; Part 1: Introduction (April 30, 2012)">Folder Redirection &#8211; Part 1: Introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-desktop-optimization-pack-mdop-advanced-group-policy-management-agpm/" title="Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM) (April 13, 2012)">Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM)</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Folder Redirection]]></series:name>
	</item>
		<item>
		<title>Folder Redirection &#8211; Part 1: Introduction</title>
		<link>http://4sysops.com/archives/folder-redirection-part-1-introduction/</link>
		<comments>http://4sysops.com/archives/folder-redirection-part-1-introduction/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 20:48:52 +0000</pubDate>
		<dc:creator>Kyle Beckman</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[group policy]]></category>
		<category><![CDATA[roaming profiles]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8502</guid>
		<description><![CDATA[Folder Redirection in Group Policy allows a systems administrator to redirect certain folders from a user’s profile to a file server.  In part 1 of this series, I’ll introduce Folder Redirection and show where to find it in the Group Policy Management Console]]></description>
			<content:encoded><![CDATA[<p><strong><i>Folder Redirection in Group Policy allows a systems administrator to redirect certain folders from a user’s profile to a file server.  In part 1 of this series, I’ll introduce Folder Redirection and show where to find it in the Group Policy Management Console</i></strong></p>
<p>If you’re like me, you’ve probably gotten a frantic call from a customer because they have a computer that won’t boot and they have irreplaceable files on their local hard drive. Try adding clicking or grinding sounds coming from that computer along with no recent backup to the mixture. Sound familiar? That combination can add up to a very upset customer and possibly a very expensive bill if you have to get data restored from that failed hard drive.</p>
<p>The good news is that there is something you can start doing today to start combatting that problem: Folder Redirection in Group Policy. To get started with Folder Redirection, you’ll need to be running Active Directory (any functional level), have an available file server, and a management station running the Group Policy Management Console. As with most Group Policy, the latest version of the GPMC is preferred, but most of these settings are available in older versions.</p>
<p>So what exactly does Folder Redirection do? Folder Redirection takes common user profile folders from C:\Users (or C:\Documents and Settings\ in Windows XP) like the Desktop or Documents and puts them on a UNC path instead of the local hard drive of the computer. I</p>
<p>In addition to the immediate benefit of having that data on a file server that is much easier to keep backed up, the user also gets the benefit of being able to go to multiple computers in your organization and still have access to their data. Using the default Windows settings and the default share settings on your file server, these redirections will be even made available offline automatically for your users. (Don’t worry, this can be controlled separately in Group Policy, which we’ll cover in a later article.)</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Folder-Redirection-Documents-Redirected-in-Windows-7.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Folder-Redirection-Documents-Redirected-in-Windows-7.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Folder Redirection - Documents Redirected in Windows 7" src="http://4sysops.com/wp-content/uploads/2012/04/Folder-Redirection-Documents-Redirected-in-Windows-7_thumb.png" alt="Folder Redirection - Documents Redirected in Windows 7" width="604" height="448" border="0" /></a></p>
<p align="center"><em>Documents Redirected in Windows 7</em></p>
<p>In the GPMC, the Folder Redirection settings can be found in User Configuration &gt; Policies &gt; Windows Settings &gt; Folder Redirection. If you’re using the GPMC in Windows XP, you can redirect Application Data, Desktop, My Documents, and the Start Menu. In addition, folders in Windows XP that are inside the My Documents folder like My Music and My Pictures will follow My Documents when it is redirected.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/GPMC-in-Windows-XP-Showing-Folder-Redirection.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/GPMC-in-Windows-XP-Showing-Folder-Redirection.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="GPMC in Windows XP Showing Folder Redirection" src="http://4sysops.com/wp-content/uploads/2012/04/GPMC-in-Windows-XP-Showing-Folder-Redirection_thumb.png" alt="GPMC in Windows XP Showing Folder Redirection" width="604" height="340" border="0" /></a></p>
<p align="center"><em>GPMC in Windows XP Showing Folder Redirection</em></p>
<p>If you’re using the GPMC in either Windows 7 or Windows Server 2008 R2, you’ll see that the list of folders that can be redirected is much longer. AppData (Roaming), Desktop, Start Menu, Documents, Pictures, Music, Videos, Favorites, Contacts, Downloads, Links, Searches, and Saved Games can all be redirected in Vista, 7, Server 2008, and Server 2008 R2.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/GPMC-in-Windows-7-Showing-Folder-Redirection.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/GPMC-in-Windows-7-Showing-Folder-Redirection.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="GPMC in Windows 7 Showing Folder Redirection" src="http://4sysops.com/wp-content/uploads/2012/04/GPMC-in-Windows-7-Showing-Folder-Redirection_thumb.png" alt="GPMC in Windows 7 Showing Folder Redirection" width="604" height="447" border="0" /></a></p>
<p align="center"><em>GPMC in Windows 7 Showing Folder Redirection</em></p>
<p>In the next post of this series I will explain how to <a href="http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/">set up Folder Redirection</a>.</p>
Author: Kyle Beckman
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/folder-redirection-part-5-best-practices/" title="Folder Redirection &#8211; Part 5: Best practices (May 14, 2012)">Folder Redirection &#8211; Part 5: Best practices</a> (1)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-4-group-policy-configuration/" title="Folder Redirection &#8211; Part 4: Group Policy configuration (May 9, 2012)">Folder Redirection &#8211; Part 4: Group Policy configuration</a> (0)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-3-explanation-of-folder-permissions/" title="Folder Redirection &#8211; Part 3: Explanation of folder permissions (May 7, 2012)">Folder Redirection &#8211; Part 3: Explanation of folder permissions</a> (4)</li>
	<li><a href="http://4sysops.com/archives/folder-redirection-part-2-setting-up-your-file-server/" title="Folder Redirection &#8211; Part 2: Setting up your file server (May 2, 2012)">Folder Redirection &#8211; Part 2: Setting up your file server</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-desktop-optimization-pack-mdop-advanced-group-policy-management-agpm/" title="Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM) (April 13, 2012)">Microsoft Desktop Optimization Pack (MDOP): Advanced Group Policy Management (AGPM)</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/folder-redirection-part-1-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Folder Redirection]]></series:name>
	</item>
		<item>
		<title>Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines</title>
		<link>http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/</link>
		<comments>http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 18:30:18 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8402</guid>
		<description><![CDATA[<p>In the previous post in this <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">Hyper-V cluster series</a>, we <a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/">configured cluster shared volumes</a>, <a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/">modified the cluster quorum type</a> and <a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/">created a cluster</a>. In this post we’ll setup cluster shared volumes, add existing and new virtual machines, and test moving a VM between host nodes.</p>]]></description>
			<content:encoded><![CDATA[<p><strong><i>
<p>In the previous post in this <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">Hyper-V cluster series</a>, we <a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/">configured cluster shared volumes</a>, <a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/">modified the cluster quorum type</a> and <a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/">created a cluster</a>. In this post we’ll setup cluster shared volumes, add existing and new virtual machines, and test moving a VM between host nodes.</p>
<p></i></strong></p>
<h2>Cluster Shared Volume setup</h2>
<p>We’re almost ready to make virtual machines highly available. The last step is to enable Cluster Shared Volumes and assign a volume as a cluster shared volume. With the cluster object selected, click the link in the main pane Enable Cluster Shared Volumes. You will receive an informational message indicating that the storage is only meant to be used for virtual machines.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-CSV-Warning.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-CSV-Warning.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Hyper-V Cluster - CSV Warning" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-CSV-Warning_thumb.png" alt="Hyper-V Cluster - CSV Warning" width="404" height="184" border="0" /></a></p>
<p align="center"><em>Hyper-V Cluster &#8211; CSV Warning</em></p>
<p>Now that cluster shared volumes are enabled, let’s make the disk we called cluster shared volume 1 into an actual cluster shared volume.</p>
<ul>
<li>Right-click Cluster Shared Volumes in the left pane and select Add Storage.</li>
<li>Select the disk called cluster shared volume and click OK.</li>
<li>The disk will now be displayed in both Cluster Shared Volumes and Storage.</li>
</ul>
<p>With the cluster share volume created, all virtual machine files will be saved to the new directory C:\ClusterStorage\volume1.</p>
<h2>Add virtual machines to the cluster</h2>
<p>Now that everything is in place, we can add virtual machines to our cluster. There a couple ways you can do this.</p>
<ul>
<li>Existing virtual machines should be shut down, vhd files moved to C:\ClusterStorage\volume1, and then have the properties updated.</li>
<li>With that finished right-click the cluster object in the left pane of Failover Cluster Manager and select Configure a Service or Application.</li>
<li>Select Virtual Machine and click next.</li>
<li>Select virtual machines from the list that should be clustered and click Next.</li>
<li>Click Next and/or Finish until the wizard is finished.</li>
</ul>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Existing-VMs.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Existing-VMs.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Hyper-V Cluster  - Existing VMs" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Existing-VMs_thumb.png" alt="Hyper-V Cluster  - Existing VMs" width="290" height="205" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Existing-VMs-2.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Existing-VMs-2.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Hyper-V Cluster - Existing VMs 2" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Existing-VMs-2_thumb.png" alt="Hyper-V Cluster - Existing VMs 2" width="290" height="205" border="0" /></a></p>
<p align="center"><em>Choose Virtual Machine  &#8211; Select the virtual machine(s) you want to cluster</em></p>
<p>New virtual machines can be created in a much more direct manner.</p>
<ul>
<li>Using Failover Cluster Manager, right-click Services and Applications in the left pane, hover Virtual Machines, and select which host the virtual machine should be created on. Although you are picking one host, the VM will automatically be clustered and could be moved to any host in the cluster without need for any further configuration once the creation wizard has finished.</li>
<li>From here on out the wizard is essentially identical to the wizard you would access from Hyper-V Manager. The only important thing to keep in mind is to make sure the machine location and vhd files is modified to C:\ClusterStorage\volume1. For example, for an IIS server, I might change the location to C:\ClusterStorage\volume1\IIS.</li>
</ul>
<p align="center"> <a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Create-new-VM-1.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Create-new-VM-1.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Hyper-V Cluster - Create new VM 1" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Create-new-VM-1_thumb.png" alt="Hyper-V Cluster - Create new VM 1" width="294" height="198" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Create-new-VM-2.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Create-new-VM-2.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Hyper-V Cluster  - Create new VM 2" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Create-new-VM-2_thumb.png" alt="Hyper-V Cluster  - Create new VM 2" width="283" height="205" border="0" /></a></p>
<p align="center"><em>Create new VMs in Failover Cluster Manager &#8211; Modify location to cluster shared volume</em></p>
<p>The final step is to test moving a virtual machine between hosts. With Services and Applications selected in the left pane, right-click a running VM hover Live migrate virtual machine to another node, and select Live migrate to node Host2. After a few moments, FCM will update and show that the current owner is Host 2.</p>
<p>In this final post in the Hyper-V Clustering for Beginner’s series, we enabled and setup cluster shared volumes, added existing and new virtual machines, and tested migration between hosts.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/" title="Hyper-V cluster &#8211; Part 6: Create a cluster (April 12, 2012)">Hyper-V cluster &#8211; Part 6: Create a cluster</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/" title="Hyper-V cluster &#8211; Part 5: Quorums and disk configuration (April 10, 2012)">Hyper-V cluster &#8211; Part 5: Quorums and disk configuration</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/" title="Hyper-V cluster &#8211; Part 4: Host setup, and cluster shared volumes (April 5, 2012)">Hyper-V cluster &#8211; Part 4: Host setup, and cluster shared volumes</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Hyper-V cluster]]></series:name>
	</item>
		<item>
		<title>Hyper-V cluster &#8211; Part 6: Create a cluster</title>
		<link>http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/</link>
		<comments>http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 19:57:54 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8377</guid>
		<description><![CDATA[In the previous post we discussed what <a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/">quorum means</a>, connected to the <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN using iSCSI Initiator</a>, and <a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/">setup disks in disk management</a>. In this article, we’ll verify the configuration and create the cluster.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In the previous post we discussed what <a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/">quorum means</a>, connected to the <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN using iSCSI Initiator</a>, and <a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/">setup disks in disk management</a>. In this article, we’ll verify the configuration and create the cluster.</i></strong></p>
<h2>Verify Cluster Components in place</h2>
<p>The Failover Clustering management console provides a list of links in the main display area. One of those is Validate a Configuration. This will give a nice report to assist with tying up any loose ends you may not have thought of. This step is not required, but I highly recommend completing it. A good rule of thumb is to address every error and warning until running the validation wizard yields a green check mark indicating success. One of the more common items to address is matching service packs and updates on each host.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Begin-by-validating-your-configuration.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Begin-by-validating-your-configuration.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Hyper Cluster - Begin by validating your configuration" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Begin-by-validating-your-configuration_thumb.png" alt="Hyper Cluster - Begin by validating your configuration" width="604" height="439" border="0" /></a></p>
<p align="center"><em>Begin by validating your configuration</em></p>
<h2>Create cluster</h2>
<ol>
<li>Now that validation has passed to ensure our environment is ready, the cluster can be created.</li>
<li>Open Failover Clustering and click Create Cluster.</li>
<li>Add the nodes that will be participating in the cluster.</li>
<li>When prompted for a name and IP address, provide an IP for the client network. This will be the IP address of the cluster object. The cluster name you input will become the name of the computer object in Active Directory that represents the cluster. For this example, I’ll call it VMCluster.</li>
</ol>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Create-Cluster-Wizard-Specify-IP-address-for-cluster.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Create-Cluster-Wizard-Specify-IP-address-for-cluster.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border-width: 0px;" title="Hyper Cluster - Create Cluster Wizard Specify IP address for cluster" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Create-Cluster-Wizard-Specify-IP-address-for-cluster_thumb.png" alt="Hyper Cluster - Create Cluster Wizard Specify IP address for cluster" width="604" height="402" border="0" /></a></p>
<p align="center"><em>Create Cluster Wizard: Specify IP address for cluster</em></p>
<p>One of the final screens in the wizard will display a summary of results. If you’ve been following along with my instructions and have an even number of nodes, you’ll see a warning stating ‘No appropriate disk could be found for the quorum disk.’. No need for alarm here as the Node and Disk Majority quorum type simply hasn’t been setup yet.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Create-Cluster-Wizard-warning-regarding-no-quorum-disk-found.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Create-Cluster-Wizard-warning-regarding-no-quorum-disk-found.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper Cluster - Create Cluster Wizard warning regarding no quorum disk found" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Create-Cluster-Wizard-warning-regarding-no-quorum-disk-found_thumb.png" alt="Hyper Cluster - Create Cluster Wizard warning regarding no quorum disk found" width="604" height="402" border="0" /></a></p>
<p align="center"><em>Create Cluster Wizard warning regarding no quorum disk found</em></p>
<h2>Add Disks to Cluster</h2>
<ol>
<li>Now let’s get the disks added that will be used for our quorum and cluster shared volume.</li>
<li>Expand your new cluster in the left pane of the Failover Cluster Manager.</li>
<li>Right-click Storage and select Add Disk. Select the two disks and click OK.</li>
<li>Right-click and select Properties for each disk. Customize the name to something more meaningful. For my example, my quorum disk is 256MB and I renamed that to VMQuorum. The disk I’ll be using in this example is 100GB and I renamed it to Cluster Shared Volume 1.</li>
</ol>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk1.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk1.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper Cluster - AddDisk1" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk1_thumb.png" alt="Hyper Cluster - AddDisk1" width="194" height="141" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk2.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk2.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper Cluster - AddDisk2" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk2_thumb.png" alt="Hyper Cluster - AddDisk2" width="194" height="141" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk3.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk3.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper Cluster - AddDisk3" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-AddDisk3_thumb.png" alt="Hyper Cluster - AddDisk3" width="194" height="141" border="0" /></a></p>
<p align="center"><em>Without Storage Adding Storage Updating Disk Name</em></p>
<h2>Configure Node and Disk Majority Quorum</h2>
<p>After initial creation, the cluster will default to the Node Majority quorum type. If you have an odd number of nodes, this option will work for you. If you have an even number of nodes than the quorum type should be changed to Node and Disk Majority.</p>
<p>We change the quorum type by right-clicking the cluster object in the left pane, hovering More Actions, and then click Configure Cluster Quorum Settings.</p>
<ol>
<li>Select Node and Disk Majority and click Next.</li>
<li>Available storage will be displayed. Choose the volume called VMQuorum.</li>
<li>Another Next and Finish and the main pane of Failover Cluster Manager will display the updated status of your cluster.</li>
</ol>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-QuorumSettings.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-QuorumSettings.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper Cluster - QuorumSettings" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-QuorumSettings_thumb.png" alt="Hyper Cluster - QuorumSettings" width="294" height="216" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Quorum-2.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Quorum-2.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper Cluster - Quorum 2" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Quorum-2_thumb.png" alt="Hyper Cluster - Quorum 2" width="294" height="205" border="0" /></a></p>
<p align="center"><em>Right-click cluster object to modify quorum Choose quorum type</em></p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Quorum-3.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Quorum-3.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper Cluster - Quorum 3" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-Cluster-Quorum-3_thumb.png" alt="Hyper Cluster - Quorum 3" width="293" height="205" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Quorum-4.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Quorum-4.png','',event,300,75)"><img style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px 6px; display: inline; padding-right: 0px; border: 0px;" title="Hyper-V Cluster - Quorum 4" src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-Cluster-Quorum-4_thumb.png" alt="Hyper-V Cluster - Quorum 4" width="294" height="124" border="0" /></a></p>
<p align="center"><em>Select a disk to use as Storage Witness Updated summary showing new quorum configuration</em></p>
<p>In this post, we validated that our configuration was correct and ready for us to configure clustering. We also added disks and modified the quorum type. In the next and final post in this series, we’ll <a href="http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/">enable cluster shared volumes and add existing and new virtual machines</a>.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/" title="Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines (April 16, 2012)">Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/" title="Hyper-V cluster &#8211; Part 5: Quorums and disk configuration (April 10, 2012)">Hyper-V cluster &#8211; Part 5: Quorums and disk configuration</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/" title="Hyper-V cluster &#8211; Part 4: Host setup, and cluster shared volumes (April 5, 2012)">Hyper-V cluster &#8211; Part 4: Host setup, and cluster shared volumes</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Hyper-V cluster]]></series:name>
	</item>
		<item>
		<title>Hyper-V cluster &#8211; Part 5: Quorums and disk configuration</title>
		<link>http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/</link>
		<comments>http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 19:42:06 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8347</guid>
		<description><![CDATA[In my last post, I covered <a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/">Windows Server 2008 software versions to use with Hyper-V clustering</a>. I also covered host server setup and discussed cluster shared volumes. This post will cover what you need to know about quorums and configuring your disks.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In my last post, I covered <a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/">Windows Server 2008 software versions to use with Hyper-V clustering</a>. I also covered host server setup and discussed cluster shared volumes. This post will cover what you need to know about quorums and configuring your disks.</i></strong></p>
<h2>Quorum</h2>
<p>Quorum is an important concept to understand in clustering. For a cluster to be active, it needs some method of keeping track of which node is the current owner of the cluster object. How this is achieved depends on the number of nodes that will be in your cluster. If you have an odd number of nodes, the default quorum configuration <strong>Node Majority</strong> will work just fine. If you have an even number of nodes, quorum configuration <strong>Node and Disk Majority</strong> should be used.</p>
<p>For a cluster to be up, it has to have quorum. Quorum can only be achieved when greater than 50% of the quorum members are actively participating.</p>
<p><span style="text-decoration: underline;"><strong>Node Majority</strong></span> &#8211; Let’s say you have only two nodes. With Node Majority, when both servers are active, everything will work fine. But as soon as one server goes offline, the percentage of participants is not greater than 50% and the cluster will then become unavailable.</p>
<p>In contrast, what if you have three nodes? In that case, if one host is down, you still would have 66% of the participants and the cluster is still available.</p>
<p><span style="text-decoration: underline;"><strong>Node and Disk Majority</strong></span> &#8211; Let’s make the same comparison as before. In a two node cluster, when one host goes down, you still have one host and the disk participant so you still have 66% of the participants.</p>
<p>What about three nodes and the added disk participant? Having the disk participate here is not necessary. With the loss of one node, the other two nodes are still providing 66%.</p>
<p>The overall purpose of quorum is to maintain availability of the cluster even when half the nodes are offline. For further quorum documentation see<a href="http://technet.microsoft.com/en-us/library/cc731739.aspx">Understanding</a><a href="http://technet.microsoft.com/en-us/library/cc731739.aspx">Quorum</a><a href="http://technet.microsoft.com/en-us/library/cc731739.aspx">Configuration</a><a href="http://technet.microsoft.com/en-us/library/cc731739.aspx">in</a><a href="http://technet.microsoft.com/en-us/library/cc731739.aspx">a</a><a href="http://technet.microsoft.com/en-us/library/cc731739.aspx">Failover</a><a href="http://technet.microsoft.com/en-us/library/cc731739.aspx">Cluster</a> and <a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">Appendix</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">A</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">: </a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">Details</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">of</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">How</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">Quorum</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">Works</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">in</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">a</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">Failover</a><a href="http://technet.microsoft.com/en-us/library/cc730649(v=ws.10).aspx">Cluster</a>..</p>
<h2>Configure disks</h2>
<p>Now you need to get the disks connected to your host. Use an iSCSI intiator to connect to the SAN iSCSI targets. Windows Server 2008 and later includes iSCSI Initiator. Network cards that include iSCSI offloading may have their own connection client. Your list of connections should also include any CSV disks.</p>
<p>In Windows Server 2008 R2, the iSCSI Initiator allows you to quickly connect to the virtual disks on the SAN by typing in the IP address of the SAN and clicking Quick Connect. This will display a list of targets and allow you to select each one and click Connect.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Host-Initiator-Adding-IP-to-host.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Host-Initiator-Adding-IP-to-host.png','',event,300,75)">a<img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Host Initiator - Adding IP to host" src="http://4sysops.com/wp-content/uploads/2012/04/Host-Initiator-Adding-IP-to-host_thumb.png" alt="Host Initiator - Adding IP to host" width="300" height="369" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/04/iSCSI-Initiator-connection-for-csv1-and-vmquorum.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/iSCSI-Initiator-connection-for-csv1-and-vmquorum.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="iSCSI Initiator connection for csv1 and vmquorum" src="http://4sysops.com/wp-content/uploads/2012/04/iSCSI-Initiator-connection-for-csv1-and-vmquorum_thumb.png" alt="iSCSI Initiator connection for csv1 and vmquorum" width="275" height="386" border="0" /></a></p>
<p align="center"><em>Adding IP to host  &#8211; iSCSI Initiator connection for csv1 and vmquorum</em></p>
<h2>Disk Management</h2>
<p>With targets connected, the disks will display in Disk Management as offline. The disk that will be used for quorum can now be brought online and assigned a drive letter. Any disks that will be used as cluster shared volumes should be formatted but should not be assigned a drive letter or mount point. This is important to be aware of as it is a requirement for a CSV. In my example, I have a 256MB disk with drive letter Q for my quorum. I have another 100GB disk that I’ll use as a cluster shared volume.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Cluster-Shared-Volume-1-and-Quorum-disk-for-Hyper-V-host-cluster.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Cluster-Shared-Volume-1-and-Quorum-disk-for-Hyper-V-host-cluster.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Cluster Shared Volume 1 and Quorum disk for Hyper-V host cluster" src="http://4sysops.com/wp-content/uploads/2012/04/Cluster-Shared-Volume-1-and-Quorum-disk-for-Hyper-V-host-cluster_thumb.png" alt="Cluster Shared Volume 1 and Quorum disk for Hyper-V host cluster" width="604" height="438" border="0" /></a></p>
<p align="center"><em>Cluster Shared Volume 1 and Quorum disk for Hyper-V host cluster</em></p>
<p>This post covered the two different quorum types that you should use in Hyper-V clustering. Setting up your disks was also covered. The next post in this series will be covering the <a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/">creation and configuration of your cluster and the cluster shared volume</a>.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/" title="Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines (April 16, 2012)">Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/" title="Hyper-V cluster &#8211; Part 6: Create a cluster (April 12, 2012)">Hyper-V cluster &#8211; Part 6: Create a cluster</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/" title="Hyper-V cluster &#8211; Part 4: Host setup, and cluster shared volumes (April 5, 2012)">Hyper-V cluster &#8211; Part 4: Host setup, and cluster shared volumes</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Hyper-V cluster]]></series:name>
	</item>
		<item>
		<title>Hyper-V cluster &#8211; Part 4: Host setup, and cluster shared volumes</title>
		<link>http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/</link>
		<comments>http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 20:10:00 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8329</guid>
		<description><![CDATA[In the previous posts in this series, I discussed how a <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN</a>, <a href="http://4sysops.com/archives/hyper-v-cluster-part-2-switching/">Gigabit switching</a>, and <a href="http://4sysops.com/archives/hyper-v-cluster-part-3-host-server-requirements/">host servers</a> are the three pieces needed to do Hyper-V clustering. This article will continue that discussion by covering host setup, and cluster shared volumes.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In the previous posts in this series, I discussed how a <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN</a>, <a href="http://4sysops.com/archives/hyper-v-cluster-part-2-switching/">Gigabit switching</a>, and <a href="http://4sysops.com/archives/hyper-v-cluster-part-3-host-server-requirements/">host servers</a> are the three pieces needed to do Hyper-V clustering. This article will continue that discussion by covering host setup, and cluster shared volumes.</i></strong></p>
<h2>Windows Server 2008 version</h2>
<p>The first item to consider is which Windows Server 2008 licensing to use. If you take a look at <a href="http://www.microsoft.com/en-us/server-cloud/windows-server/2008-r2-editions.aspx">Microsoft ’s comparison of editions for R2</a>, you’ll see that Standard, Enterprise, and Datacenter editions each come with a different number of virtual machine instances included. Standard edition does not support Failover Clustering, so make sure you have Enterprise or Datacenter. Enterprise includes rights to run up to 4 virtual machines. Datacenter includes rights to run an unlimited number of virtual machines.</p>
<table border="1" cellspacing="0" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>Edition</strong></td>
<td valign="top"><strong>Virtual Machine rights</strong></td>
<td valign="top"><strong>Failover Clustering</strong></td>
</tr>
<tr>
<td valign="top">Standard</td>
<td valign="top">1</td>
<td valign="top">no</td>
</tr>
<tr>
<td valign="top">Enterprise</td>
<td valign="top">4</td>
<td valign="top">yes</td>
</tr>
<tr>
<td valign="top">Datacenter</td>
<td valign="top">unlimited</td>
<td valign="top">yes</td>
</tr>
</tbody>
</table>
<h2>Basic Host Setup</h2>
<p>Preparing the hosts to support clustered virtual machines involves a few basic steps.</p>
<ol>
<li><strong>Add hosts to your domain</strong> &#8211; Other Hyper-V configurations do not require that the host be a domain member. However, to support clustering, the hosts must be domain members.<strong></strong></li>
<li><strong>Install Hyper-V Role</strong> &#8211; At this point, the hosts could run virtual machines. However, they cannot yet be made highly available.<strong></strong></li>
<li><strong>Install Failover Clustering Feature</strong> &#8211; This enables clustering on your server. One of the cluster objects that can be created is a clustered virtual machine.</li>
</ol>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Server-Manager-with-Hyper-V-and-Failover-Clustering-installed.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Server-Manager-with-Hyper-V-and-Failover-Clustering-installed.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Server Manager with Hyper-V and Failover Clustering installed" src="http://4sysops.com/wp-content/uploads/2012/04/Server-Manager-with-Hyper-V-and-Failover-Clustering-installed_thumb.png" alt="Server Manager with Hyper-V and Failover Clustering installed" width="538" height="389" border="0" /></a></p>
<p align="center"><em>Server Manager with Hyper-V and Failover Clustering installed</em></p>
<h2>Network Connections</h2>
<p>Now you should make sure that all network connections are in place are ready to go.</p>
<ol>
<li><strong>Client Connectivity</strong> &#8211; this connection should be on a subnet that is accessible by client computers and will also have access to Active Directory. For discussion, let’s say the host will connect to Active Directory using subnet 10.10.10.0 with subnet mask 255.255.255.0.<strong></strong></li>
<li><strong>Heartbeat</strong> &#8211; In a two-node cluster, this could be a direct connection. If you have more nodes, or want to build with scalability in mind, a switch should be used. For this one, let’s use 192.168.1.0 with subnet mask 255.255.255.0.<strong></strong></li>
<li><strong>SAN Connection</strong> &#8211; This connection needs to provide Gigabit speed or faster between the hosts and the SAN. For this one, let’s use 172.16.1.0 with subnet mask 255.255.255.0.<strong></strong></li>
</ol>
<h2>Cluster Shared Volumes</h2>
<p>Before R2, Windows Server 2008 required a separate disk instance for each virtual disk that virtual machines used. If you had a total of ten servers using 16 virtual disks, then you would end up with 16 disks being used. Since the operating system drive for each of those had to use a drive letter, pretty soon you had alphabet soup in Windows Explorer and Disk Management. Cluster Shared Volumes (CSV) has been added to streamline administration in R2 (aka Hyper-V 2.0). A CSV can now support the files and access for more than one VM. In a small environment, this could mean that all VMs use one CSV total or one CSV per host.</p>
<p>When you enable Cluster Shared Volumes in the Failover Clustering console, the C:\ClusterStorage directory is created which will contain a folder for each CSV in the cluster. This takes care of the alphabet soup I mentioned earlier. Using cluster shared volumes is not a requirement but I would highly recommend its use. There are some special requirements for using cluster shared volumes that are well documented at <a href="http://technet.microsoft.com/en-us/library/ff182358(WS.10).aspx">Requirements for Using Cluster Shared Volumes</a><strong>.</strong></p>
<p>In this article I covered which versions of Windows Server you should use for clustering. I also covered getting the hosts ready and cluster shared volumes. In the next article in this series, I’ll be covering <a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/">quorum and disk configuration</a>.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/" title="Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines (April 16, 2012)">Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/" title="Hyper-V cluster &#8211; Part 6: Create a cluster (April 12, 2012)">Hyper-V cluster &#8211; Part 6: Create a cluster</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/" title="Hyper-V cluster &#8211; Part 5: Quorums and disk configuration (April 10, 2012)">Hyper-V cluster &#8211; Part 5: Quorums and disk configuration</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Hyper-V cluster]]></series:name>
	</item>
		<item>
		<title>Hyper-V cluster &#8211; Part 3: Host server requirements</title>
		<link>http://4sysops.com/archives/hyper-v-cluster-part-3-host-server-requirements/</link>
		<comments>http://4sysops.com/archives/hyper-v-cluster-part-3-host-server-requirements/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 18:50:20 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8303</guid>
		<description><![CDATA[In the two previous posts of this series, I discussed the <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN</a> and  <a href="http://4sysops.com/archives/hyper-v-cluster-part-2-switching/">switch requirements needed for clustering Hyper-V hosts</a>. In this post, I’ll be discussing the host servers which are the third piece of the puzzle.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In the two previous posts of this series, I discussed the <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN</a> and  <a href="http://4sysops.com/archives/hyper-v-cluster-part-2-switching/">switch requirements needed for clustering Hyper-V hosts</a>. In this post, I’ll be discussing the host servers which are the third piece of the puzzle.</i></strong></p>
<p>Host servers that will be clustered need to meet all of the same base requirements as Hyper-V hosts that will not be clustered. There are also some additional hardware and software considerations.</p>
<h2>Dynamic Memory</h2>
<p>Windows Server 2008 R2 (Hyper-V version 2) introduced <a href="http://4sysops.com/archives/microsoft-vdi-remotefx-and-dynamic-memory-for-hyper-v/">dynamic memory</a>. This allows an admin to assign a startup and maximum memory allocation for a virtual machine rather than a static number. When the VM is started, the minimum amount of memory is allocated and reserved. Anytime the amount of memory used by the VM encroaches upon the currently allocated memory, additional memory is added to the VM. At a later time, this memory could then be returned to the pool for dynamic assignment to another VM.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-cluster-Dynamic-Memory-Configuration-.jpg" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-cluster-Dynamic-Memory-Configuration-.jpg','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border-width: 0px;" title="Hyper-V cluster - Dynamic Memory Configuration " src="http://4sysops.com/wp-content/uploads/2012/04/Hyper-V-cluster-Dynamic-Memory-Configuration-_thumb.jpg" alt="Hyper-V cluster - Dynamic Memory Configuration " width="529" height="496" border="0" /></a>
<em>Hyper-V &#8211; Dynamic Memory Configuration </em></p>
<p>As mentioned in my series about <a href="http://4sysops.com/archives/why-i-am-upgrading-from-hyper-v-1-0-to-2-0/">upgrading from Hyper-V version 1.0 to 2.0</a>, one big advantage with dynamic memory is that all memory on a host can be utilized under normal circumstances. If a host fails and VMs fail-over, memory can be reassigned. Before dynamic memory, host memory in a cluster environment would often sit unused so that VMs would have memory available in the case of failover.</p>
<h2>Network Cards</h2>
<p>At least 3 network cards should be in each host. One should be used to allow clients to connect and needs to be able to communicate with Active Directory. Another high <a href="http://msdn.microsoft.com/en-us/windows/hardware/gg463254">performance NIC</a>, or SAN NIC, should be used exclusively for SAN traffic. The SAN NIC needs at least Gigabit speeds to perform well. A third NIC should be used for heartbeat traffic.
Depending on your environment and expected server load, separate physical network cards may not be necessary. A small setup could get away with using onboard NICs and one additional two-port NIC.</p>
<p>Live Migration is also an important feature to keep in mind when determining the number of network cards (or ports needed). Whether or not you need to plan for an extra NIC or port for Live Migration also depends on your setup. Fortunately; Microsoft has provided some guidelines for NIC configuration depending on the number available. See <a href="http://technet.microsoft.com/en-us/library/ff428137(v=ws.10).aspx">Hyper-V: Live Migration Network Configuration Guide</a> for more information.</p>
<h2>Motherboard</h2>
<p>Special consideration should be taken to assure you don’t have any bottlenecks at the hardware level. There is going to be an immense amount of traffic going through a NIC between the Hosts and the SAN. It’s important to make sure that the SAN traffic coming in the NIC isn’t hampered a motherboard that isn’t designed to accommodate large amounts of throughput between a PCI-Express port and other hardware components. It might be helpful to obtain a diagram of the motherboard to assure that pathways from the NIC are optimized.<strong></strong></p>
<p>Note that there also is one software requirement: If you need to use the <a href="http://technet.microsoft.com/en-us/library/cc725923(WS.10).aspx">Failover Clustering feature</a> of Windows Server 2008, you must be running either <a href="http://www.microsoft.com/en-us/server-cloud/windows-server/2008-r2-enterprise.aspx">Enterprise</a> or <a href="http://www.microsoft.com/en-us/server-cloud/windows-server/2008-r2-datacenter.aspx">Datacenter</a> edition.<strong></strong></p>
<p>In this post I covered some of the additional host server hardware considerations for clustering Hyper-V. My next post will cover how to begin getting <a href="http://4sysops.com/archives/hyper-v-cluster-part-4-host-setup-and-cluster-shared-volumes/">Hyper-V clustering setup</a> now that all the pieces are in place.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/" title="Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines (April 16, 2012)">Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/" title="Hyper-V cluster &#8211; Part 6: Create a cluster (April 12, 2012)">Hyper-V cluster &#8211; Part 6: Create a cluster</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/" title="Hyper-V cluster &#8211; Part 5: Quorums and disk configuration (April 10, 2012)">Hyper-V cluster &#8211; Part 5: Quorums and disk configuration</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/hyper-v-cluster-part-3-host-server-requirements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Hyper-V cluster]]></series:name>
	</item>
		<item>
		<title>How to administer Active Directory from your iPhone or iPad</title>
		<link>http://4sysops.com/archives/how-to-administer-active-directory-from-your-iphone-or-ipad/</link>
		<comments>http://4sysops.com/archives/how-to-administer-active-directory-from-your-iphone-or-ipad/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 16:10:19 +0000</pubDate>
		<dc:creator>Timothy Warner</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8300</guid>
		<description><![CDATA[In this article you will become aware of some options regarding how you can access your Windows servers by using an iPhone, iPod touch, or iPad device.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article you will become aware of some options regarding how you can access your Windows servers by using an iPhone, iPod touch, or iPad device.</i></strong></p>
<p>Let’s face facts: the Apple iPhone, iPod touch, and iPad were not designed for enterprise networks. The devices certainly were not intended to be integrated in Active Directory networks.</p>
<p>Nevertheless, Apple hardware is growing increasingly ubiquitous these days. The bottom line is that many Active Directory administrators carry iPhones instead of Android- or Windows Phone-based mobile phones.</p>
<p>Thus, we encounter the question: what iOS apps exist that can facilitate our management of Active Directory from our iPhones or iPads?</p>
<p>Before we list those apps, we need to understand some relevant Apple terminology. In Apple development nomenclature, an iOS device is a piece of Apple hardware that runs the iOS operating system. Examples of iOS-based devices include the iPhone, the iPod touch, and the iPad.</p>
<p>Furthermore, iOS applications can take one of three distinct forms:</p>
<ul>
<li><strong>iPhone</strong> (pretty rare these days)</li>
<li><strong>iPad</strong> (these apps often have HD attached to their names and are designed to take advantage of the additional screen real estate offered by the iPad)</li>
<li><strong>Universal</strong> (an app that runs natively on either an iPhone, an iPod touch, or an iPad)</li>
</ul>
<p>Newcomers to iOS development ask the reasonable question, “How in the world can a Universal app dynamically change its appearance depending upon whether the host hardware is an iPhone or an iPad?” If you are interested, the answer can be found in the article <a href="https://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html">“Creating a Universal App”</a> at the Apple iOS Developer Library.</p>
<p>In this article we will approach our app overview by examining these tools from three different perspectives:</p>
<ul>
<li>VNC, RDP, or SSH remote access clients</li>
<li>VM remote access clients</li>
<li>Dedicated admin tools</li>
</ul>
<p><em><strong>NOTE</strong>: All of the following iOS apps presume that your Apple device is connected to the same Wi-Fi network as the servers in your Active Directory environment.</em></p>
<h2>VNC, RDP, or SSH remote access clients</h2>
<p>Perhaps the most straightforward method for administering a Windows Server 2008 domain controller is to connect directly to the box by using a remote access protocol such as Virtual Network Computing (VNC), Remote Desktop Protocol (RDP), or Secure Shell (SSH).</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/iPad-Active-Directory-iTap-RDP-client-for-iPad.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/iPad-Active-Directory-iTap-RDP-client-for-iPad.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="iPad -Active Directory - iTap RDP client for iPad" src="http://4sysops.com/wp-content/uploads/2012/03/iPad-Active-Directory-iTap-RDP-client-for-iPad_thumb.png" alt="iPad -Active Directory - iTap RDP client for iPad" width="600" height="458" /></a></p>
<p align="center"><em>iTap RDP client for iPad</em></p>
<ul>
<li><a href="http://itunes.apple.com/us/app/itap-mobile-rdp-remote-desktop/id317062064?mt=8">iTap Mobile RDP</a> (Universal, $11.99): RDP client</li>
<li><a href="http://itunes.apple.com/us/app/jump-desktop-remote-desktop/id364876095?mt=8">Jump Desktop</a> (Universal, $14.99): RDP client</li>
<li><a href="http://itunes.apple.com/us/app/iremotewin-hd-remote-desktop/id446364747?mt=8">iRemoteWin</a> (iPad, $1.99): RDP client</li>
<li><a href="http://itunes.apple.com/app/winadmin-remote-desktop/id284963046?mt=8">WinAdmin</a> (Universal, $7.99): RDP client</li>
<li><a href="http://ax.itunes.apple.com/us/app/pterm-ssh-telnet-client-terminal/id287269552?mt=8&amp;ign-impt=clickRef%3DSoftware%2520Page-US-pTerm%2520-%2520SSH%252C%2520Telnet%2520Client%2520and%2520Terminal%2520Emulator-287269552-Lockup">pTerm</a> (Universal, $4.99): SSH and Telnet client</li>
<li><a href="http://itunes.apple.com/us/app/issh-ssh-vnc-console/id287765826?mt=8">iSSH</a> (Univeral, $9.99): SSH and VNC client</li>
<li><a href="http://itunes.apple.com/us/app/screens/id400012962?mt=8">Screens</a> (Universal, $19.99): VNC client</li>
<li><a href="http://itunes.apple.com/us/app/vnc-viewer/id352019548?mt=8;uo=6">VNC Viewer</a> (Universal, $9.99): VNC client</li>
<li><a href="http://itunes.apple.com/us/app/mocha-vnc/id284981670?mt=8">Mocha VNC</a> (Universal, $5.99): VNC client</li>
<li><a href="http://itunes.apple.com/us/app/ignition/id299616801?mt=8">Ignition</a> (Universal, $99.99): Multi-protocol remote access client</li>
</ul>
<h2>VM remote access clients</h2>
<p>Your Active Directory forest may be virtualized either partially or fully. The good news is that the major virtualization vendors have published iOS apps that facilitate remote connection to those devices and infrastructures.</p>
<ul>
<li><a href="http://itunes.apple.com/us/app/citrix-receiver./id363501921?mt=8">Citrix Receiver</a> (Universal, Free): Citrix client</li>
<li><a href="http://itunes.apple.com/us/app/vmware-vsphere-client-for/id417323354?mt=8">VMware vSphere Client</a> (iPad, Free): VMware client</li>
<li><a href="http://itunes.apple.com/us/app/ivmcontrol-control-vmware/id404263941?mt=8">iVMControl</a> (Universal, $9.99): VMware client</li>
</ul>
<p>Dedicated Admin Tools</p>
<p>Now we turn our attention to iOS apps that were designed expressly for performing one or more specific Active Directory and/or server management tasks.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/iPad-Active-Directory-AD-Manager-Mobile-for-iPhone.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/iPad-Active-Directory-AD-Manager-Mobile-for-iPhone.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="iPad Active Directory - AD Manager Mobile for iPhone" src="http://4sysops.com/wp-content/uploads/2012/03/iPad-Active-Directory-AD-Manager-Mobile-for-iPhone_thumb.png" alt="iPad Active Directory - AD Manager Mobile for iPhone" width="250" height="368" /></a></p>
<p align="center"><em>AD Manager Mobile for iPhone</em></p>
<ul>
<li><a href="http://itunes.apple.com/us/app/ad-helpdesk/id366597535?mt=8">AD HelpDesk</a> (Universal, $7.99): Domain user account password reset tool</li>
<li><a href="http://itunes.apple.com/us/app/admanager-mobile/id383576391?mt=8">AD Manager Mobile</a> (Universal, $4.99): Provides much of the functionality of Active Directory Users and Computers</li>
<li><a href="http://itunes.apple.com/us/app/smash!-user-manager/id407785473?mt=8">Smash! User Manager</a> (Universal, Free): Domain user account management</li>
<li><a href="http://itunes.apple.com/us/app/pc-monitor/id405566169?mt=8">PC Monitor</a> (Universal, Free): Hardware/software inventory management</li>
</ul>
<h2>Conclusion</h2>
<p>Today we presented a summary of the most popular iOS apps for managing Active Directory from your Apple device. Have you used any of these tools to good effect in your environment? Have we missed an essential app? Please let us know in the comments portion of this post.</p>
Author: Timothy Warner
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-to-mac-remote-management-with-vnc-and-ssh/" title="Windows-to-Mac remote management with VNC and SSH (March 22, 2012)">Windows-to-Mac remote management with VNC and SSH</a> (1)</li>
	<li><a href="http://4sysops.com/archives/mac-to-windows-remote-desktop-and-remote-command-connection/" title="Mac-to-Windows Remote Desktop (RDP) and remote command connection (March 15, 2012)">Mac-to-Windows Remote Desktop (RDP) and remote command connection</a> (5)</li>
	<li><a href="http://4sysops.com/archives/speed-up-slow-windows-file-sharing-in-mac-os-x/" title="Speed up slow Windows file sharing in Mac OS X (March 5, 2012)">Speed up slow Windows file sharing in Mac OS X</a> (1)</li>
	<li><a href="http://4sysops.com/archives/how-to-share-a-folder-in-mac-os-x-for-windows-users/" title="How to share a folder in Mac OS X for Windows users (January 5, 2012)">How to share a folder in Mac OS X for Windows users</a> (2)</li>
	<li><a href="http://4sysops.com/archives/troubleshooting-the-network-accounts-are-unavailable-error-in-mac-os-x-lion/" title="Troubleshooting the &#8220;Network accounts are unavailable&#8221; error in Mac OS X Lion (November 9, 2011)">Troubleshooting the &#8220;Network accounts are unavailable&#8221; error in Mac OS X Lion</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/how-to-administer-active-directory-from-your-iphone-or-ipad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hyper-V cluster &#8211; Part 2: Switching</title>
		<link>http://4sysops.com/archives/hyper-v-cluster-part-2-switching/</link>
		<comments>http://4sysops.com/archives/hyper-v-cluster-part-2-switching/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 16:45:55 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8294</guid>
		<description><![CDATA[In the last article I discussed how a <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN was required as one of the pieces of the Hyper-V cluster</a> environment. This article will outline the three main switching scenarios. Each of the three should be on its own subnet.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In the last article I discussed how a <a href="http://4sysops.com/archives/hyper-v-cluster-part-1-san/">SAN was required as one of the pieces of the Hyper-V cluster</a> environment. This article will outline the three main switching scenarios. Each of the three should be on its own subnet.</i></strong></p>
<h2>Gigabit or faster SAN switching</h2>
<p>The choice of which switch to use relies on which SAN solution was used as well as the number of hosts and virtual machines the switching solution will support.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-Switch-diagram.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-Switch-diagram.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Hyper-V cluster - Switch diagram" src="http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-Switch-diagram_thumb.png" alt="Hyper-V cluster - Switch diagram" width="442" height="433" /></a></p>
<p align="center"><em>Hyper-V cluster &#8211; Switch diagram</em></p>
<p>Here are two scenarios:</p>
<p><strong>Scenario 1: Small to Medium business with a small budget</strong></p>
<ul style="list-style-type: none; list-style-image: none;">
<li>A small business might have two clustered Hyper-V servers with a total of 4-8 virtual machines split between them. In this case, a relatively low budget Gigabit switch could suffice to support SAN traffic. It might also double as a device to support heartbeat traffic on a different VLAN. Any solution should be as thoroughly tested prior to use in production as possible.</li>
</ul>
<p><strong>Scenario 2: Large business with a large budget</strong></p>
<ul style="list-style-type: none; list-style-image: none;">
<li>A larger business might have switching integrated as part of the SAN hardware. In this case, switching would likely be 10Gb/s or faster to accommodate very large bandwidth needs. If switches are not integrated, great care should be taken to assure switches meet the throughput requirements for the workload. Switch vendors have specific products that are designed for virtualization in the data center. Larger environments also introduce the possibility of <a href="http://docs.media.bitpipe.com/io_10x/io_103275/item_495391/solution_overview_c22-687087.pdf">virtual</a><a href="http://docs.media.bitpipe.com/io_10x/io_103275/item_495391/solution_overview_c22-687087.pdf">networking</a>.</li>
</ul>
<p>Switches that will carry SAN traffic should have the ability to enable <a href="http://en.wikipedia.org/wiki/Jumbo_frame">jumbo</a><a href="http://en.wikipedia.org/wiki/Jumbo_frame">frames</a>, <a href="http://en.wikipedia.org/wiki/TCP_offload_engine">TCP</a><a href="http://en.wikipedia.org/wiki/TCP_offload_engine">/</a><a href="http://en.wikipedia.org/wiki/TCP_offload_engine">IP</a><a href="http://en.wikipedia.org/wiki/TCP_offload_engine">offload</a>, and <a href="http://technet.microsoft.com/en-us/network/dd277646">receive</a><a href="http://technet.microsoft.com/en-us/network/dd277646">side</a><a href="http://technet.microsoft.com/en-us/network/dd277646">scaling</a>. Jumbo frames allow the use of 9000 byte frames as opposed to the typical 1500 bytes. This can drastically reduce overhead for the SAN. TCP/IP offload features will help offload some of the work from the processor. Receive side scaling will allow processor use to be spread to more than one core.</p>
<p>A word of caution, enabling these features does not always lead to better performance. As mentioned previously, test with different combinations of these features enabled until you find the one that provides the best performance.</p>
<h2>Heartbeat switching</h2>
<p>Regardless of the size, a Windows cluster will require a reliable means of maintaining a heartbeat. Heartbeat traffic should be isolated from potential bottlenecks at all times. If the cluster cannot retain a reliable heartbeat, the cluster does not live.</p>
<p>Switching for the heartbeat does not have to be Gigabit. The only major requirement for the heartbeat is that latency is very minimal. So even an older 10Mb switch could do the job. For more info see <a href="http://support.microsoft.com/kb/258750">Recommended</a><a href="http://support.microsoft.com/kb/258750">private</a><a href="http://support.microsoft.com/kb/258750"> “</a><a href="http://support.microsoft.com/kb/258750">Heartbeat</a><a href="http://support.microsoft.com/kb/258750">” </a><a href="http://support.microsoft.com/kb/258750">configuration</a><a href="http://support.microsoft.com/kb/258750">on</a><a href="http://support.microsoft.com/kb/258750">a</a><a href="http://support.microsoft.com/kb/258750">cluster</a><a href="http://support.microsoft.com/kb/258750">server</a>. When cluster nodes are separated by a <a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">WAN</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">the</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">heartbeat</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">interval</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">may</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">need</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">to</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">be</a><a href="http://technet.microsoft.com/en-us/library/dd197562(d=lightweight,l=en-us,v=ws.10).aspx">adjusted</a>. By default the heartbeat is every 1.2 seconds. When two beats are missed, clustering will attempt to failover resources from the node it deems is missing. When you will only have two hosts, a crossover cable could be used instead of a switch.</p>
<h2>Client access switching</h2>
<p>Client access to the virtual machines running on the hosts should be isolated from SAN and heartbeat traffic. This is important because you don’t want peaks in user activity to affect the operation of the virtual machine. Remember, the host will see the iSCSI connected hard drive as a local hard drive and expect it to act like one. If client access traffic is competing, you could be asking for trouble. I’ve seen this cause problems in a test environment. The result of all that competition for bandwidth results in virtual machines that break.</p>
<p>In the next article, we’ll start looking at requirements on the host servers and then the actual steps involved in getting the pieces all working together.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/" title="Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines (April 16, 2012)">Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/" title="Hyper-V cluster &#8211; Part 6: Create a cluster (April 12, 2012)">Hyper-V cluster &#8211; Part 6: Create a cluster</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/" title="Hyper-V cluster &#8211; Part 5: Quorums and disk configuration (April 10, 2012)">Hyper-V cluster &#8211; Part 5: Quorums and disk configuration</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/hyper-v-cluster-part-2-switching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Hyper-V cluster]]></series:name>
	</item>
		<item>
		<title>Hyper-V cluster &#8211; Part 1: SAN</title>
		<link>http://4sysops.com/archives/hyper-v-cluster-part-1-san/</link>
		<comments>http://4sysops.com/archives/hyper-v-cluster-part-1-san/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 18:30:20 +0000</pubDate>
		<dc:creator>Aaron Denton</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[hyper-v]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8280</guid>
		<description><![CDATA[In this first post in the Hyper-V clustering beginner’s guide series, I’ll discuss what a storage area network (SAN) is and how it’s used in a Hyper-V cluster.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this first post in the Hyper-V clustering beginner’s guide series, I’ll discuss what a storage area network (SAN) is and how it’s used in a Hyper-V cluster.</i></strong></p>
<h2>Pieces of the puzzle &#8211; Hyper-V hosts, switching, and a SAN</h2>
<p>At a very high level, Hyper-V clustering is fairly straightforward. You have two host servers that form a Hyper-V cluster. Host servers store and access virtual machine files located on a SAN. Connection to the SAN is done using iSCSI protocol to make drives on the SAN appear as local drives to Windows Server. Because the virtual machines (VMs) are clustered, they can be moved between servers and provide high availability.</p>
<h2>The SAN</h2>
<p>The storage area network, or SAN, is a centralized location for storage of virtual machine files. The SAN is needed because Hyper-V hosts require a place to store virtual machine files that can be shared between multiple hosts. In the event of a host server failure, another Hyper-V host, utilizing cluster technology, can resume operation of virtual machines by assuming control of the virtual drive where the virtual machine’s files are stored. The SAN has to be setup and fully functional before creation of clustered virtual machines.</p>
<p>There are seemingly endless options when it comes to SAN solutions. The solution you choose will likely be dictated more by budget constraints than by system requirements. To illustrate, here are a couple scenarios:</p>
<p><strong>Scenario 1: Software SAN for Small to Medium business with a small budget</strong></p>
<p>A small business might host their SAN on a single server and share some network hardware with the rest of the network. The SAN server might run Windows Server 2008 R2 with a free iSCSI target solution like <a href="http://www.microsoft.com/download/en/details.aspx?id=19867">Microsofti SCS ISoftware Target</a> or <a href="http://4sysops.com/archives/raffle-starwind-enterprise-cdp-edition-iscsi-san-storage-software-for-windows/">Starwind iSCSI SAN</a>. Linux based <a href="http://www.openfiler.com/products">Openfiler</a> is another option.</p>
<p>Loss of this single server could cause the Hyper-V virtual machines to stop responding. (NOTE: Some vendors, like Starwind Software for example, may have the option of providing highly available storage though by having more than one SAN server).</p>
<p><strong>Scenario 2: Hardware SAN for Large business with a large budget</strong></p>
<p>A large business might host their SAN on server hardware from a vendor such as <a href="http://www.emc.com/products/index.htm">EMC</a> or <a href="http://www.netapp.com/us/products/protocols/san/iscsi.html">NetApp</a> who specializes in building SAN hardware. The solution might also provide virtual drive replication and high availability. Loss of a single server would not prevent Hyper-V virtual machines from functioning normally.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-Starwind-.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-Starwind-.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Hyper-V cluster - Starwind " src="http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-Starwind-_thumb.png" alt="Hyper-V cluster - Starwind " width="604" height="456" border="0" /></a></p>
<p align="center"><em>Starwind Software management console</em></p>
<h2>iSCSI Initiators and targets</h2>
<p>Regardless of vendor and complexity, the SAN needs to provide iSCSI targets. An iSCSI initiator on the Windows Server 2008 host is used to connect to an iSCSI target on the SAN. Once the connection is established, specific virtual drives are added. In iSCSI, virtual drives are identified by logical unit number (<a href="http://searchstorage.techtarget.com/definition/logical-unit-number">LUN</a>). Each connected LUN is seen by the Windows Hyper-V host as a local drive. The drive can then be formatted for storage of virtual machine configuration and hard drive files.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-iSCSI-Initiator-in-Windows-Server-2008-R2.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-iSCSI-Initiator-in-Windows-Server-2008-R2.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Hyper-V cluster - iSCSI Initiator in Windows Server 2008 R2" src="http://4sysops.com/wp-content/uploads/2012/03/Hyper-V-cluster-iSCSI-Initiator-in-Windows-Server-2008-R2_thumb.png" alt="Hyper-V cluster - iSCSI Initiator in Windows Server 2008 R2" width="454" height="638" border="0" /></a></p>
<p align="center"><em>iSCSI Initiator in Windows Server 2008 R2</em></p>
<p>In the next posts I’ll be covering switching and additional host <a href="http://4sysops.com/archives/hyper-v-cluster-part-2-switching/">requirements for a Hyper-V cluster</a>.</p>
Author: Aaron Denton
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-veeam-one-free-edition-real-time-hyper-v-and-vmware-monitoring/" title="FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring (May 3, 2012)">FREE: Veeam ONE Free Edition &#8211; Real-time Hyper-V and VMware monitoring</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-7-custer-shared-volume-and-manage-virtual-machines/" title="Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines (April 16, 2012)">Hyper-V cluster &#8211; Part 7: Custer Shared Volume and manage virtual machines</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-6-create-a-cluster/" title="Hyper-V cluster &#8211; Part 6: Create a cluster (April 12, 2012)">Hyper-V cluster &#8211; Part 6: Create a cluster</a> (0)</li>
	<li><a href="http://4sysops.com/archives/hyper-v-cluster-part-5-quorums-and-disk-configuration/" title="Hyper-V cluster &#8211; Part 5: Quorums and disk configuration (April 10, 2012)">Hyper-V cluster &#8211; Part 5: Quorums and disk configuration</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/hyper-v-cluster-part-1-san/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<series:name><![CDATA[Hyper-V cluster]]></series:name>
	</item>
		<item>
		<title>Windows Server 8 installation notes</title>
		<link>http://4sysops.com/archives/windows-server-8-installation-notes/</link>
		<comments>http://4sysops.com/archives/windows-server-8-installation-notes/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 16:45:13 +0000</pubDate>
		<dc:creator>Timothy Warner</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[windows 8]]></category>
		<category><![CDATA[windows server 2012]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8261</guid>
		<description><![CDATA[In this article you will quickly learn how Windows Server 8 Beta installation differs from that of earlier versions of Windows Server.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article you will quickly learn how Windows Server 8 Beta installation differs from that of earlier versions of Windows Server.</i></strong></p>
<p>Who among the 4sysops readership remembers the Windows NT Server 4.0 installation process? Ah, the good old days. You’ll recall that we began the installation three 1.44-inch floppy startup disks. After bootup we then spent indeterminate time intervals installing undetected device drivers. Finally, with our fingers crossed and with a lot f luck, we might actually proceed to the actual OS installation.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Metro-UI.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Metro-UI.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows Server 8 Beta Metro UI" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Metro-UI_thumb.png" alt="Windows Server 8 Beta Metro UI" width="600" height="449" /></a></p>
<p align="center"><em>Windows Server 8 Beta Metro UI</em></p>
<p>It wasn’t until Microsoft released Windows Server 2008 that we received full support for the mouse, enhanced video, and the network interface card all the way through installation; this was thanks to the nifty Windows Preinstallation Environment (PE).</p>
<p>This bit of negative historical background sets the stage for today’s subject. In my opinion, Microsoft has done some amazing work in streamlining the installation of their server operating system over successive product versions. If you haven’t yet downloaded the <a href="http://technet.microsoft.com/en-us/evalcenter/hh670538">Windows Server 8 Beta ISO image</a> yet, then please do yourselves a favor and nab it while it is still available.</p>
<p>In this blog post we will cover the Windows Server 8 installation process, touching on the high points, the low points, and most importantly the points of departure from Windows Server 2008 R2 installation.</p>
<p>Let’s mount the Windows Server 8 DVD in a physical or virtual computer and get to work!</p>
<p><em><strong>NOTE</strong>: The </em><a href="http://technet.microsoft.com/en-us/evalcenter/hh670538"><em>Microsoft TechNet Evaluation Center</em></a><em> includes all the usual preinstallation details, including Windows Server 8 release notes, </em><a href="http://download.microsoft.com/download/9/D/E/9DEDD9C9-C152-46FE-9FDA-EC3497837C2F/WS8%20Beta%20System%20Requirements%20Overview.pdf"><em>system requirements</em></a><em>, and marketing copy.</em></p>
<h2>Enhanced Recovery Environment</h2>
<p>After we boot our target machine from the Windows Server 8 Beta DVD, let’s begin our tour of Windows Server 8 Beta installation by clicking <strong>Repair your computer</strong> in the initial <strong>Windows Setup</strong> dialog.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Server-Booting-into-Windows-PE.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Server-Booting-into-Windows-PE.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows 8 Server - Booting into Windows PE" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Server-Booting-into-Windows-PE_thumb.png" alt="Windows 8 Server - Booting into Windows PE" width="600" height="431" /></a></p>
<p align="center"><em>Booting into Windows PE</em></p>
<p>As you see in the screenshot below, we can click <strong>Troubleshoot</strong> to “refresh or reset your PC, or use advanced tools.” Let’s click that button to see where the option takes us.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Enhanced-recovery-tools.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Enhanced-recovery-tools.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows Server 8 - Enhanced recovery tools" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Enhanced-recovery-tools_thumb.png" alt="Windows Server 8 - Enhanced recovery tools" width="600" height="441" /></a></p>
<p align="center"><em>Windows Server 8 Beta enhanced recovery tools</em></p>
<p>The <strong>Advanced options</strong> screen gives us access to an elevated command prompt, which is nothing surprising. We also see the <a href="http://technet.microsoft.com/en-us/library/cc755163.aspx">System Image Recovery</a> option that exists in Windows Server 2008 R2 and Windows 7. With only a few mouse clicks, you can load a previously created operating system image from a local or remote location and restore the server as it existed on the system image creation date.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Server-Advanced-recovery-options.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Server-Advanced-recovery-options.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows 8 Server - Advanced recovery options" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Server-Advanced-recovery-options_thumb.png" alt="Windows 8 Server - Advanced recovery options" width="600" height="440" /></a></p>
<p align="center"><em>Windows Server 8 &#8211; Advanced recovery options</em></p>
<p>While the recovery tools as such really haven’t changed over the past couple of editions of Windows Server, the way in which we access them certainly has evolved.</p>
<h2>Where is Features on Demand?</h2>
<p>If you experimented with the <a href="http://www.redmondpie.com/download-windows-8-developer-preview-iso-64-bit-32-bit-now/">Windows Server 8 Developer Preview</a> that Microsoft released in late 2011, you probably noticed an installation option called “Features on Demand.”</p>
<p>The idea behind Features on Demand is that if a server role or feature is not in use on that server, then the installation binaries themselves should not exist on the local file system at all. This is the IT security principle of <em>least service</em>.</p>
<p>With Features on Demand, we not only reduce the attack surface of the server, but we also decrease the disk space usage footprint of the operating system itself.</p>
<p>However, you might be shocked to observe, as I was, that the Features on Demand installation option is not included in the Windows Server 8 Beta release. As you can see in the following screen capture, we have just two options:</p>
<ul>
<li><strong>Server Core Installation</strong>: No GUI, managed either remotely or with PowerShell</li>
<li><strong>Server with a GUI:</strong> Full installation that includes Windows Explorer and Metro shell interfaces</li>
</ul>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Selecting-an-OS-install-option.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Selecting-an-OS-install-option.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows Server 8 - Selecting an OS install option" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Selecting-an-OS-install-option_thumb.png" alt="Windows Server 8 - Selecting an OS install option" width="600" height="426" /></a></p>
<p align="center">Windows Server 8 &#8211; Selecting an OS install option</p>
<p>Quite honestly, I am completely baffled as to where the Features on Demand installation option went. Perhaps it will reappear in a future release. Perhaps its functionality will be integrated into the two existing installation options (both of which we are familiar with from Windows Server 2008 R2).</p>
<p>Regardless, the coolest Windows Server 8 Beta feature that I’ve seen is the ability to dynamically switch between the Server Core and Server with a GUI installation modes; we will learn how to do that later in this blog post.</p>
<h2>No Microsoft accounts</h2>
<p>If you have played around with the <a href="http://windows.microsoft.com/en-US/windows-8/consumer-preview">Windows 8 Consumer Preview</a>, then you know how strongly Microsoft feels about your logging into Windows with a so-called “<a href="https://en.wikipedia.org/wiki/Windows_Live_ID">Microsoft Account</a>.”</p>
<p><em><strong>NOTE:</strong> Microsoft Accounts were previously known as Windows Live IDs.</em></p>
<p>The cool thing about Microsoft accounts is that they provide a Windows 8 user with transparent access to Microsoft online services, most notably their <a href="http://skydrive.com/">SkyDrive cloud storage service</a>.</p>
<p>However, we domain administrators need full control over our security principals. Thus, we are relieved to find no trace of Microsoft Accounts in the Windows Server 8 Beta logon process. We instead use the familiar, garden variety local Administrator account.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Logging-into-Windows-Server-8.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Logging-into-Windows-Server-8.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Logging into Windows Server 8" src="http://4sysops.com/wp-content/uploads/2012/03/Logging-into-Windows-Server-8_thumb.png" alt="Logging into Windows Server 8" width="600" height="453" /></a></p>
<p align="center"><em>Logging into Windows Server 8 Beta</em></p>
<h2>Heavy PowerShell integration</h2>
<p>Upon successful logon, you are presented not with the flashy, touch-centric Metro user interface, but instead with what looks at first like a traditional Windows 7 desktop.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Desktop.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Desktop.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows Server 8 Beta Desktop" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Desktop_thumb.png" alt="Windows Server 8 Beta Desktop" width="600" height="453" /></a></p>
<p align="center"><em>Windows Server 8 Beta Desktop</em></p>
<p>Don’t be fooled—there are much more intense changes to the “traditional” Desktop interface than meet the eye. One significant difference between the Windows Server 8 Beta and Windows Server 2008 R2 desktops is the absence of a <strong>Start</strong> menu system. Instead, the button in the lower-left location of the Taskbar is simply a shortcut that launches the Server Manager console.</p>
<p>Microsoft clearly wants us administrators to center all of our server management around the Server Manager PowerShell host application. That’s right—when you issue commands by using the Server Manager control surface, you are actually running Windows PowerShell cmdlets in the background.</p>
<p>We can (and will) cover the ins-and-outs of the new Server Manager in a future 4Sysops blog post.</p>
<h2>Windows Server 8 Metro user interface</h2>
<p>At this point you might also have thought to yourself, “Cool! There is no Metro interface in Windows Server 8 Beta!” Not so fast—if you move your mouse to the lower-right corner of the Desktop, expose the Charm bar, and select <strong>Start</strong>, then you find yourself magically transported to the “you either love it or you hate it” Metro UI.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/The-Charm-bar-in-Windows-Server-8-Beta.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/The-Charm-bar-in-Windows-Server-8-Beta.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="The Charm bar in Windows Server 8 Beta" src="http://4sysops.com/wp-content/uploads/2012/03/The-Charm-bar-in-Windows-Server-8-Beta_thumb.png" alt="The Charm bar in Windows Server 8 Beta" width="600" height="446" /></a></p>
<p align="center"><em>The Charm bar in Windows Server 8 Beta</em></p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Metro-UI.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Metro-UI.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows Server 8 Beta Metro UI" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-Server-8-Beta-Metro-UI_thumb.png" alt="Windows Server 8 Beta Metro UI" width="600" height="449" /></a></p>
<p align="center"><em>Windows Server 8 Beta Metro UI</em></p>
<p>I must admit that I remain confused at Microsoft’s inclusion of the Metro UI in its Windows Server product. However, I must concede the possibility that perhaps one day in the near future we will manage all of our Windows servers from a tablet device. In that case, having a touch-centric UI would be eminently intuitive.</p>
<h2>Hot server UI switching</h2>
<p>As I stated earlier, I believe that hot user interface switching is the coolest new feature in Windows Server 8 Beta. Here is a typical use case: You need to install a Windows Server 8 box with the Server Core configuration to enhance the system’s security and to comply with IT department policy.</p>
<p>However, you aren’t yet up to speed on PowerShell and instead want to configure the server by using graphical tools. One option (with remote access obviously being another one) is to use the trusty Deployment Image Servicing and Management (Dism) tool to make a temporary switch.</p>
<p>For instance, to switch from a Server with a GUI (full) installation to Server Core, issue the following command from an elevated command prompt:</p>
<pre>OS:&gt; dism /online /disable-feature /featurename:ServerCore-FullServer</pre>
<p>Conversely, to switch from Server Core to the Server with a GUI installation, issue the following command from an elevated command prompt:</p>
<pre>OS:&gt; dism /online /enable-feature /featurename:ServerCore-FullServer
/featurename:Server-Gui-Shell /featurename:Server-Gui-Mgmt</pre>
<p>The installation option switching process may take several minutes, after which you will need to reboot:</p>
<pre>OS:&gt;shutdown –r -f</pre>
<h2>Conclusion</h2>
<p>Today we performed a quick overview of the Windows Server 8 Beta installation process. Were you impressed with the speed and intuitive nature of the installation? Yes, it is true that we Windows systems administrators have a learning curve ahead of us, not only in terms of navigating Windows Server 8 UI, but also with respect to managing fleets of Windows 8 desktop systems. However, we became IT professionals in the first place because we love learning, growth, and change, correct?</p>
Author: Timothy Warner
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/how-to-install-windows-to-go/" title="How to install Windows To Go (May 22, 2012)">How to install Windows To Go</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-to-go-introduction/" title="Windows To Go introduction (May 21, 2012)">Windows To Go introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-new-features-the-complete-list/" title="Windows 8 new features &#8211; The complete list (May 17, 2012)">Windows 8 new features &#8211; The complete list</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-metro-disable-in-windows-server-2012/" title="Windows 8 Metro &#8211; Disable in Windows Server 2012? (April 23, 2012)">Windows 8 Metro &#8211; Disable in Windows Server 2012?</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/windows-server-8-installation-notes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows-to-Mac remote management with VNC and SSH</title>
		<link>http://4sysops.com/archives/windows-to-mac-remote-management-with-vnc-and-ssh/</link>
		<comments>http://4sysops.com/archives/windows-to-mac-remote-management-with-vnc-and-ssh/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 09:15:16 +0000</pubDate>
		<dc:creator>Timothy Warner</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[remote management]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8241</guid>
		<description><![CDATA[In this article you will learn some techniques for accessing and manage your Mac OS X computer remotely from Windows.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article you will learn some techniques for accessing and manage your Mac OS X computer remotely from Windows.</i></strong></p>
<p>Here is the situation: you are the systems administrator of a mixed Windows/Mac OS X network environment. Your administrative laptop runs Windows 7, and you realize that you need to establish a remote connection to one of your Mac OS X Server computers to tweak a setting. What do you do?</p>
<p>The good news is that Mac OS X (both the server and desktop varieties) include built-in File Transfer Protocol (FTP), Secure Shell (SSH), and Virtual Network Computing (VNC) servers. Thus, we have immediate, “out of the box” remote connectivity to our Mac boxes.</p>
<h2>Enable VNC and SSH in Mac OS X</h2>
<p>On your Mac OS X computer, open the <strong>Sharing</strong> System Preferences pane. To turn on the SSH server, enable <strong>Remote Login</strong>. The status area at right helpfully informs us of our SSH connection string. In the screenshot below, &#8220;uwarnti&#8221; refers to the currently logged on Mac user, and the IP address is, well, the IP address. <img src='http://4sysops.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/03/Enabling-inbound-SSH-connections-in-Mac-OS-X.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Enabling-inbound-SSH-connections-in-Mac-OS-X.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Enabling inbound SSH connections in Mac OS X" src="http://4sysops.com/wp-content/uploads/2012/03/Enabling-inbound-SSH-connections-in-Mac-OS-X_thumb.png" alt="Enabling inbound SSH connections in Mac OS X" width="600" height="495" /></a><em>Enabling inbound SSH connections in Mac OS X</em></p>
<p>To enable the VNC server, select <strong>Remote Management</strong> and then press <strong>Computer Settings…</strong>.A drop-down pane appears in which we can select <strong>VNC viewers may control screen with password</strong>. Supply a strong password and click <strong>OK</strong> to complete the configuration.</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/03/Enabling-incoming-VNC-connections-in-Mac-OS-X.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Enabling-incoming-VNC-connections-in-Mac-OS-X.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Enabling incoming VNC connections in Mac OS X" src="http://4sysops.com/wp-content/uploads/2012/03/Enabling-incoming-VNC-connections-in-Mac-OS-X_thumb.png" alt="Enabling incoming VNC connections in Mac OS X" width="600" height="495" /></a><em>Enabling incoming VNC connections in Mac OS X</em></p>
<p>That’s all there is to it!</p>
<p><em><strong>NOTE:</strong> VNC uses TCP port 5900 and SSH uses TCP port 22 by default. You may need to take this information into account when firewalls and Internet connections are involved.</em></p>
<p>Remote Terminal with SSH</p>
<p>We can use a Secure Shell (SSH) client in Windows to establish a secure remote Terminal connection to our target Mac OS X computer. Unfortunately, Microsoft has never (repeat: never) included built-in support for this vendor-neutral, open-source protocol in its operating systems. Thus, we will have to download an SSH client.</p>
<p>I would suggest that you try either <a href="http://sshwindows.sourceforge.net/">OpenSSH</a> or <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a>. Both are easy to use, and accomplish the same goal.</p>
<p><em><strong>NOTE</strong>: Technically, we could use the built-in Telnet client in Windows to establish to the Mac OS X Telnet server, but as we both know, this protocol is hideously unsecure.</em></p>
<p>The following image shows a PuTTY-based SSH connection to a remote Mac OS X computer. In the screen output you see (a) the connection and authentication process; (b) a run of <strong>pwd</strong> to test that we are in fact connected to a Mac; and (c) authentication as the <strong>root</strong> superuser.</p>
<p align="center"><img style="margin: 0px auto; display: block; float: none;" title="Remote Mac OS X Terminal session from Windows" src="http://4sysops.com/wp-content/uploads/2012/03/Remote-Mac-OS-X-Terminal-session-from-Windows_thumb.png" alt="Remote Mac OS X Terminal session from Windows" width="600" height="383" /><em>Remote Mac OS X Terminal session from Windows</em></p>
<p>Of course, once we have authenticated to the Mac, we can issue shell commands as if we had a local Terminal session open on the computer.</p>
<h2>Remote Desktop with VNC</h2>
<p>If we want to establish a remote desktop session to a Mac OS X computer, the VNC protocol is probably our best option. Several quality VNC clients for Windows are available:</p>
<ul>
<li><a href="http://www.tightvnc.com/">TightVNC</a></li>
<li><a href="http://www.realvnc.com/">RealVNC</a></li>
<li><a href="http://www.uvnc.com/">UltraVNC</a></li>
</ul>
<p>I myself use TightVNC because of its robust support for add-ons. The following screenshot shows a VNC session between a Windows XP workstation and a Mac OS X Lion computer:</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/03/Remote-Mac-OS-X-desktop-session-from-Windows.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Remote-Mac-OS-X-desktop-session-from-Windows.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Remote Mac OS X desktop session from Windows" src="http://4sysops.com/wp-content/uploads/2012/03/Remote-Mac-OS-X-desktop-session-from-Windows_thumb.png" alt="Remote Mac OS X desktop session from Windows" width="600" height="363" /></a><em>Remote Mac OS X desktop session from Windows</em></p>
<h2>Conclusion</h2>
<p>Today we learned a couple solid, reliable mechanisms for establishing a remote administration connection to a Mac OS X computer. I hope that you found this article useful. Please feel free to leave your comments and questions in the comments portion of this post.</p>
<p>Also read: <a href="http://4sysops.com/archives/mac-to-windows-remote-desktop-and-remote-command-connection/">Mac-to-Windows Remote Desktop (RDP) and remote command connection</a></p>
Author: Timothy Warner
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/raffle-solarwinds-dameware-nt-utilities-remote-administration-tools/" title="Raffle: SolarWinds DameWare NT Utilities &#8211; Remote administration tools (April 18, 2012)">Raffle: SolarWinds DameWare NT Utilities &#8211; Remote administration tools</a> (3)</li>
	<li><a href="http://4sysops.com/archives/how-to-administer-active-directory-from-your-iphone-or-ipad/" title="How to administer Active Directory from your iPhone or iPad (March 30, 2012)">How to administer Active Directory from your iPhone or iPad</a> (1)</li>
	<li><a href="http://4sysops.com/archives/mac-to-windows-remote-desktop-and-remote-command-connection/" title="Mac-to-Windows Remote Desktop (RDP) and remote command connection (March 15, 2012)">Mac-to-Windows Remote Desktop (RDP) and remote command connection</a> (5)</li>
	<li><a href="http://4sysops.com/archives/free-paexec-run-programs-on-remote-windows-servers/" title="FREE: PAExec &#8211; Run programs on remote Windows servers (March 12, 2012)">FREE: PAExec &#8211; Run programs on remote Windows servers</a> (0)</li>
	<li><a href="http://4sysops.com/archives/query-free-disk-space-details-of-remote-computers-using-powershell/" title="Query free disk space details of remote computers using PowerShell (March 9, 2012)">Query free disk space details of remote computers using PowerShell</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/windows-to-mac-remote-management-with-vnc-and-ssh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac-to-Windows Remote Desktop (RDP) and remote command connection</title>
		<link>http://4sysops.com/archives/mac-to-windows-remote-desktop-and-remote-command-connection/</link>
		<comments>http://4sysops.com/archives/mac-to-windows-remote-desktop-and-remote-command-connection/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 20:45:26 +0000</pubDate>
		<dc:creator>Timothy Warner</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8182</guid>
		<description><![CDATA[In this article you will learn some techniques for accessing and administering your Windows computer remotely from Mac OS X through Remote Desktop Connection (RDP) and SSH.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article you will learn some techniques for accessing and administering your Windows computer remotely from Mac OS X through Remote Desktop Connection (RDP) and SSH.</i></strong></p>
<p>Here is the scenario: you are the systems administrator of a mixed Windows/Mac OS X network environment. Your administrative laptop runs Mac OS X 10.7 Lion, and you realize that you need to establish a remote connection to one of your Windows Server 2008 computers to tweak a setting. What do you do?</p>
<p>In this blog post I will share with you reliable methods for establishing both remote desktop and remote command-prompt sessions to a target a Windows computers.</p>
<h2>Windows back-end setup</h2>
<p>In this tutorial we will use the vendor-neutral Secure Shell (SSH) protocol to establish command-line-based remote access from Mac to Windows. We will also leverage Microsoft’s own Remote Desktop Protocol (RDP) to obtain a Windows desktop session from the Mac.</p>
<p>As you probably already know, we can enable Remote Desktop Connection in Windows Server 2008 by opening the System Control Panel item, navigating to the Remote tab, and selecting one of the two options for enabling remote connections. The System Properties dialog box is shown in the following screenshot:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Mac-Remote-Desktop-Desktop-Connection-Enable-RDP-in-Windows-Server-2008.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Mac-Remote-Desktop-Desktop-Connection-Enable-RDP-in-Windows-Server-2008.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Mac - Remote Desktop Desktop Connection - Enable RDP in Windows Server 2008" src="http://4sysops.com/wp-content/uploads/2012/03/Mac-Remote-Desktop-Desktop-Connection-Enable-RDP-in-Windows-Server-2008_thumb.png" alt="Mac - Remote Desktop Desktop Connection - Enable RDP in Windows Server 2008" width="424" height="474" /></a></p>
<p align="center"><em>Enabling RDP remote connections in Windows Server 2008</em></p>
<p>Please see <a href="http://technet.microsoft.com/en-us/library/cc732713.aspx">the Microsoft documentation</a> if you want more background on Network Level Authentication.</p>
<p>Microsoft includes no built-in support for SSH, unfortunately. At any rate, we have some choices in the matter for free SSH server/client packages for Windows:</p>
<ul>
<li><a href="http://www.freesshd.com/">FreeSSHd</a> (easy to configure)</li>
<li><a href="http://sshwindows.sourceforge.net/">OpenSSH for Windows</a> (quite tricky to configure)</li>
</ul>
<p>In this exercise I downloaded and installed FreeSSHd. One point of confusion: after installation you might want to double-click the FreeSSHd desktop icon to open the administration panel. This does NOTHING. Instead, right-click the FreeSSHd system tray icon and select <strong>Settings…</strong> from the shortcut menu. This is shown in the following screenshot.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Administering-the-FreeSSHd-server.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Administering-the-FreeSSHd-server.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Administering the FreeSSHd server" src="http://4sysops.com/wp-content/uploads/2012/03/Administering-the-FreeSSHd-server_thumb.png" alt="Administering the FreeSSHd server" width="276" height="182" /></a></p>
<p align="center"><em>Administering the FreeSSHd server</em></p>
<p>After you’ve installed FreeSSHd and ensured that the service is running in the Windows Service Control Manager, our next (and final) configuration task is to create an SSH user. The <strong>User properties</strong> dialog box is shown in the next figure. In this example, we are enabling the 4Sysopslab domain administrator account to connect to the server by using SSH. Note that FreeSSHd includes secure FTP and Tunneling options as well.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Creating-an-SSH-user.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Creating-an-SSH-user.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Creating an SSH user" src="http://4sysops.com/wp-content/uploads/2012/03/Creating-an-SSH-user_thumb.png" alt="Creating an SSH user" width="393" height="425" /></a></p>
<p align="center"><em>Creating an SSH user</em></p>
<p><em><strong>NOTE</strong>: By default, SSH operates on TCP port 22, and RDP operates on TCP port 3389. Keep this in mind when you are configuring firewall exceptions.</em></p>
<p>Command-Line Remote Access</p>
<p>If we need to open a Windows Server 2008 or Windows 7 command prompt from a Mac OS X computer, we don’t need to worry about <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa384426(v=vs.85).aspx">WinRM</a> or all that jazz. Remember that Mac OS X includes native support for SSH. Thus, we can simply fire up a Terminal session and type our SSH command string.</p>
<p>For instance, to connect to a Windows SSH server at 192.168.1.108 as a user named <strong>administrator</strong>, we can send the following command:</p>
<p>MAC&gt;ssh administrator@192.168.1.108</p>
<p>Once we accept the Windows host’s private key and authenticate, we are in business. This process is shown in the following screen shot:</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/A-Windows-command-prompt-from-a-Mac-OS-X-computer.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/A-Windows-command-prompt-from-a-Mac-OS-X-computer.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="A Windows command prompt from a Mac OS X computer" src="http://4sysops.com/wp-content/uploads/2012/03/A-Windows-command-prompt-from-a-Mac-OS-X-computer_thumb.png" alt="A Windows command prompt from a Mac OS X computer" width="600" height="368" /></a></p>
<p align="center"><em>A Windows command prompt from a Mac OS X computer</em></p>
<h2>Remote Desktop Access</h2>
<p>As far as I am personally concerned, Microsoft’s Remote Desktop Protocol (RDP) is more secure, efficient, and robust than the Remote Frame Buffer (RFB) protocol that is used with Virtual Network Computing (VNC) technology. The good news here is that Microsoft actually makes their Remote Desktop Connection client available for the Mac:</p>
<ul>
<li><a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=18140">Download the Microsoft Remote Desktop Connection Client for Mac 2.1.1</a></li>
</ul>
<p>Once you have the software installed, click <strong>RDC &gt; Preferences</strong> to set preferences, and thereafter use RDC exactly as you would use the Windows version.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Remote-Desktop-Connection-for-the-Mac.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Remote-Desktop-Connection-for-the-Mac.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Remote Desktop Connection for the Mac" src="http://4sysops.com/wp-content/uploads/2012/03/Remote-Desktop-Connection-for-the-Mac_thumb.png" alt="Remote Desktop Connection for the Mac" width="600" height="341" /></a></p>
<p align="center"><em>Remote Desktop Connection for the Mac</em></p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Remote-Windows-Server-2008-session-from-Mac-OS-X.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Remote-Windows-Server-2008-session-from-Mac-OS-X.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Remote Windows Server 2008 session from Mac OS X" src="http://4sysops.com/wp-content/uploads/2012/03/Remote-Windows-Server-2008-session-from-Mac-OS-X_thumb.png" alt="Remote Windows Server 2008 session from Mac OS X" width="600" height="494" /></a></p>
<p align="center"><em>Remote Windows Server 2008 session from Mac OS X</em></p>
<h2>Conclusion</h2>
<p>Today we learned a couple of different methods for establishing a remote administration session with a Windows-based computer from Mac OS X. I hope that you found this article useful. Hey, while we are on the subject of Mac/Windows integration, what “pain points” do you have in your environment? I am more than happy to write on particular subjects, specific issues you are experiencing, etc. Just leave a note in the comments portion of this post; I am happy to help!</p>
<p>Also read: <a href="http://4sysops.com/archives/windows-to-mac-remote-management-with-vnc-and-ssh/">Windows-to-Mac remote management with VNC and SSH</a></p>
Author: Timothy Warner
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/how-to-administer-active-directory-from-your-iphone-or-ipad/" title="How to administer Active Directory from your iPhone or iPad (March 30, 2012)">How to administer Active Directory from your iPhone or iPad</a> (1)</li>
	<li><a href="http://4sysops.com/archives/windows-to-mac-remote-management-with-vnc-and-ssh/" title="Windows-to-Mac remote management with VNC and SSH (March 22, 2012)">Windows-to-Mac remote management with VNC and SSH</a> (1)</li>
	<li><a href="http://4sysops.com/archives/speed-up-slow-windows-file-sharing-in-mac-os-x/" title="Speed up slow Windows file sharing in Mac OS X (March 5, 2012)">Speed up slow Windows file sharing in Mac OS X</a> (1)</li>
	<li><a href="http://4sysops.com/archives/how-to-share-a-folder-in-mac-os-x-for-windows-users/" title="How to share a folder in Mac OS X for Windows users (January 5, 2012)">How to share a folder in Mac OS X for Windows users</a> (2)</li>
	<li><a href="http://4sysops.com/archives/troubleshooting-the-network-accounts-are-unavailable-error-in-mac-os-x-lion/" title="Troubleshooting the &#8220;Network accounts are unavailable&#8221; error in Mac OS X Lion (November 9, 2011)">Troubleshooting the &#8220;Network accounts are unavailable&#8221; error in Mac OS X Lion</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/mac-to-windows-remote-desktop-and-remote-command-connection/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Your first 8 minutes with Windows 8 &#8211; Please don&#8217;t start whining</title>
		<link>http://4sysops.com/archives/your-first-8-minutes-with-windows-8-please-dont-start-whining/</link>
		<comments>http://4sysops.com/archives/your-first-8-minutes-with-windows-8-please-dont-start-whining/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 16:10:48 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[windows 8]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8156</guid>
		<description><![CDATA[If you didn't start testing Windows 8 yet, then this guide is a must-read. This text is also a must-read if you already played with Windows 8 and started whining because everything is so different and strange.]]></description>
			<content:encoded><![CDATA[<p><strong><i>If you didn&#8217;t start testing Windows 8 yet, then this guide is a must-read. This text is also a must-read if you already played with Windows 8 and started whining because everything is so different and strange.</i></strong></p>
<p>As expected, there is lots of buzz about Windows 8. Not surprisingly, many are complaining about the huge changes in the user interface. Considering the large user base of Windows, there are always some people who don&#8217;t like the changes and some who do like them. The ones who don&#8217;t are usually louder.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Lock-Screen.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Lock-Screen.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows 8 Lock Screen" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Lock-Screen_thumb.png" alt="Windows 8 Lock Screen" width="500" height="373" /></a></p>
<p align="center"><em>Windows 8 Lock Screen</em></p>
<p>Before reading the reviews and making up your mind, I recommend testing Windows 8 yourself. If you have problems in finding your way, don&#8217;t condemn Windows 8 prematurely. It usually takes some time until one gets used to a new user interface, especially if you have been working with a system for so many years. Suddenly many of your practiced habits and shortcuts no longer work. Of course, the first reaction is to wonder why all those changes were necessary. Is it just because Microsoft wants to appear as an innovative company, making changes just for the sake of changing things? And is it really necessary to completely change a successful operating system because of a handful of iPad sales?</p>
<p>I feel you should suppress your anger and seriously give the new user interface a chance. Once you are sure that you really know all about Windows 8, you can then proudly tell the world that you downgraded again to Windows XP.</p>
<p>The purpose of this post is to help you a little with your first steps in the first 8 minutes or so. The list of tips here is by no means complete. In my experience, it takes weeks, sometimes months, of daily work with an operating system (and the willingness to learn) to appreciate a new OS user interface.</p>
<h3>Testing Windows 8</h3>
<p>The best way to test Windows 8 is on a dedicated machine and, if possible, on a tablet. But if this testing gear is not available, you can try Windows 8 with virtualization software. For this post, I assume that you are trying Windows 8 with an old-fashioned mouse and a keyboard in a <a href="https://www.virtualbox.org/">VirtualBox</a> VM.</p>
<p>Windows 8 works with Windows Server 2008 R2 Hyper-V, VMware Workstation 8.0, or Oracle VirtualBox 4.1.2 (or greater). VirtualBox is free and very easy to use. Thus, if you don&#8217;t already work with one of the other two virtualization products, I suggest you follow <a href="http://4sysops.com/archives/how-to-install-windows-server-8-developer-preview-in-virtualbox/">Tim Warner&#8217;s guide for how to install Windows 8 on VirtualBox</a>. The guide was written for the Developer Preview, but it is still correct.</p>
<p>I&#8217;d just like to add that you should select the Intel PRO/1000 MT Desktop (82540EM) network interface instead of the default PCNet nic. When I tested the Consumer Preview on VirtualBox 4.1.7, Windows 8 wasn&#8217;t able to install the driver for the virtual PCNet interface. You can find the corresponding settings under the Advanced tab of the virtual machine&#8217;s network settings.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-VirtualBox-network-interface.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-VirtualBox-network-interface.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Windows 8 - VirtualBox network interface" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-VirtualBox-network-interface_thumb.png" alt="Windows 8 - VirtualBox network interface" width="504" height="376" border="0" /></a></p>
<p align="center"><em>Windows 8 VirtualBox network interface</em></p>
<h3>Log on to Windows 8</h3>
<p>After Windows 8 boots up for the first time, you will see this beautiful tree with no hint on how to proceed. You just have to hit the space bar and the logon screen will appear. After you log in with the password you configured during the installation procedure, the new Metro start screen appears. This is the point where you will wonder if you accidentally installed Windows Phone. To assure you that you are really working with Windows 8, I suggest you immediately switch to Windows Desktop mode by clicking the &#8220;Desktop tile&#8221; in the lower left corner.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-logon-screen.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-logon-screen.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Windows 8 logon screen" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-logon-screen_thumb.png" alt="Windows 8 logon screen" width="504" height="377" border="0" /></a></p>
<p align="center"><em>Windows 8 Logon screen</em></p>
<p>You can also use the key combination WIN+D or hover the mouse over the upper left or lower left corner of the desktop. To switch back to Metro mode, you just have to hit the WIN key. The strange thing is that you can now switch back and forth between Desktop mode and Metro mode by only hitting the WIN key (without D). If you do this right after you logged in, you will open the so-called Charms Bar. Is this a bug or perhaps a VirtualBox issue?</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Metro-Start-screen.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Metro-Start-screen.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Windows 8 Metro Start screen" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Metro-Start-screen_thumb.png" alt="Windows 8 Metro Start screen" width="256" height="193" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Desktop-Mode.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Desktop-Mode.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Windows 8 Desktop Mode" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Desktop-Mode_thumb.png" alt="Windows 8 Desktop Mode" width="256" height="193" border="0" /></a></p>
<p align="center"><em>Windows 8 Metro mode | Windows 8 Desktop mode</em></p>
<h3>Windows 8 Start button</h3>
<p>Anyway, since I already mentioned the Charms Bar, you can always open it with WIN+C or by hovering the mouse over the lower right desktop corner. The Charms Bar contains the Search, Share, Start, Devices, and Settings charms. As you can see, all rumors that Windows 8 no longer features a Start button were hopelessly exaggerated. Click the Start charm, et voilà, you are at the Metro start screen which is the new Start menu.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Start-Menu.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Start-Menu.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Windows 8 Start Menu" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Start-Menu_thumb.png" alt="Windows 8 Start Menu" width="504" height="376" border="0" /></a></p>
<p align="center"><em>Windows 8 Start Menu</em></p>
<p>You see, this is one of the things you have to figure out first before you start whining about missing features. There is even the old Start Search field that allows you to find applications quickly. If you ask me, Start Search was the only thing that was helpful in the old Windows Start menu. You don&#8217;t want to tell me that you really started applications by clicking your way through the Programs menu, do you?</p>
<p>So what is the first Windows 8 application you want to start? Notepad, of course! Just start typing &#8220;n&#8230;&#8221;. Ah, you see, not so difficult, right? And you know what? Notepad didn&#8217;t change at all. This is good news, isn&#8217;t it? Yeah, now we all feel at home again.</p>
<p>By the way, you don&#8217;t even need to switch to the Metro Start screen to invoke Start Search. You can just start typing when you are in Metro mode. Note that this doesn&#8217;t work in Desktop mode. However, the key combination WIN+R still allows you to run programs in Desktop mode and Metro mode.</p>
<h3>8 useful Windows 8 shortcuts</h3>
<p>Windows 8 offers myriad keyboard shortcuts, and you probably will know many of them from Windows 7. I noticed that keyboard shortcuts are quite popular in Windows 8 beginner&#8217;s guides. The reason is that Windows 8 was partly designed for touch. But if your old LCD screen is somewhat insensitive to your patting approaches, you are often faster with a keyboard shortcut than with the mouse.</p>
<p>Below are the shortcuts you might need during your first 8-minute tour of Windows 8. I already mentioned some of them above, but rehearsal is everything when it comes to learning how to deal with a new user interface.</p>
<p>WIN: Switch between Metro and Desktop mode</p>
<p>WIN+M: Show Desktop (minimize all windows in Desktop mode)</p>
<p>WIN+C: Show Charms Bar</p>
<p>WIN+R: Run programs</p>
<p>WIN+E: Start Windows Explorer</p>
<p>WIN+F: Search file</p>
<p>Alt+Tab: Switch between Metro apps and desktop apps</p>
<p>Alt+F4: Close an app</p>
<h3>Shut down Windows 8</h3>
<p>The last combination (Alt+F4) might be the most important one in your first 8 minutes with Windows 8. After you start your first Metro app, you will most certainly wonder how to get rid of it because Metro apps have no close button. You can also close a Metro app by dragging the app from the top of the screen to the bottom (see <a href="http://4sysops.com/archives/your-first-8-minutes-with-windows-8-please-dont-start-whining/#comment-243512">Jack&#8217;s comment</a>).  Again, reports that you can&#8217;t shut down Metro apps were exaggerated.</p>
<p>I also read that Windows 8 can&#8217;t be shut down. Don&#8217;t think that Microsoft steals every so-called innovation from Apple. They just hid the shutdown button to prevent you from stopping to use of Windows 8. You are lucky that you are reading a Windows 8 guide from a PC veteran with 30 years of experience. So <em>I know</em> the fastest way to shut down a PC: Press Ctrl+Alt+Del and then click the power button. If you are testing with VirtualBox, you have to press Right-Ctrl+Del instead of Ctrl+Alt-Del.</p>
<p>&nbsp;</p>
<p align="center"><a href="http://4sysops.com/wp-content/uploads/2012/03/Shut-down-Windows-8.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Shut-down-Windows-8.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Shut down Windows 8" src="http://4sysops.com/wp-content/uploads/2012/03/Shut-down-Windows-8_thumb.png" alt="Shut down Windows 8" width="393" height="284" border="0" /></a><a href="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Settings-Shutdown.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Settings-Shutdown.png','',event,300,75)"><img style="background-image: none; margin: 0px 6px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="Windows 8 Settings Shutdown" src="http://4sysops.com/wp-content/uploads/2012/03/Windows-8-Settings-Shutdown_thumb.png" alt="Windows 8 Settings Shutdown" width="136" height="284" border="0" /></a></p>
<p align="center"><em>Shut down Windows 8</em></p>
<p>The official way appears to be to open the Charms Bar (WIN+C), click &#8220;Settings,&#8221; and then click the power button. It makes sense somehow. Turning off a computer is just changing the &#8220;On&#8221; <em>setting</em> to &#8220;Off,&#8221; right? Well, okay, I’m just trying my best to give you a good &#8220;user experience&#8221; during your first 8 minutes with Windows 8.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/how-to-install-windows-to-go/" title="How to install Windows To Go (May 22, 2012)">How to install Windows To Go</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-to-go-introduction/" title="Windows To Go introduction (May 21, 2012)">Windows To Go introduction</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-new-features-the-complete-list/" title="Windows 8 new features &#8211; The complete list (May 17, 2012)">Windows 8 new features &#8211; The complete list</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-hyper-v/" title="Windows 8 Hyper-V (May 15, 2012)">Windows 8 Hyper-V</a> (0)</li>
	<li><a href="http://4sysops.com/archives/windows-8-metro-disable-in-windows-server-2012/" title="Windows 8 Metro &#8211; Disable in Windows Server 2012? (April 23, 2012)">Windows 8 Metro &#8211; Disable in Windows Server 2012?</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/your-first-8-minutes-with-windows-8-please-dont-start-whining/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Query free disk space details of remote computers using PowerShell</title>
		<link>http://4sysops.com/archives/query-free-disk-space-details-of-remote-computers-using-powershell/</link>
		<comments>http://4sysops.com/archives/query-free-disk-space-details-of-remote-computers-using-powershell/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 19:30:40 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[remote management]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=8138</guid>
		<description><![CDATA[The PowerShell script introduced in this post is for getting disk space details of multiple remote computers. It also retrieves the space details of mount points.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The PowerShell script introduced in this post is for getting disk space details of multiple remote computers. It also retrieves the space details of mount points.</i></strong></p>
<p>Disk space monitoring is an important system administration task because disk space shortage can impact system stability and application functionality.</p>
<p>I wrote a PowerShell script that allows you to query the disk space details of any drive connected to a remote Windows computer. Moreover, the script can get the disk space details of multiple computers in a single shot. You can also use it with other cmdlets, such as Get-QADComputer and Get-ADComputer, and pass the output of these commands to the script.</p>
<p>Using the parameters <strong>ValueFromPipelineByPropertyName</strong> and <strong>ValueFromPipeline</strong>, the script reads the inputs from the pipeline (output of the previous command). You can learn more details about these parameters by executing the command below in a PowerShell console.</p>
<pre>Get-help about_functions_advanced_parameters</pre>
<p>The <strong>-ComputerName</strong> parameter accepts a single computer name or a list of computers. The script then verifies the reachability of each computer before executing a WMI query. If the computer is not reachable, it proceeds to the next computer account.</p>
<p>I used the <strong>Win32_Volume </strong>WMI class to fetch the disk space details. A computer can have different drive types, such as local disks, removable disks, CD drives, or network drives. I am only interested in knowing the disk space details of local disks and removable disks, so I am tuning the command to return only the drive types 2 and 3. The PowerShell code below shows the WMI query and filtering I used in the script.</p>
<pre>Get-WmiObject -ComputerName $Computer -Class Win32_Volume | ? {$_.DriveType -eq 2 
  -or $_.DriveType -eq 3 }</pre>
<p>Once I get the list of drives, I go through each volume and read the total capacity and free space attributes. These attributes provide the disk information in bytes. I then divide the value by 1GB (PowerShell supports this) to convert the bytes to GBs. The <strong>Round </strong>method in the <strong>System.Math</strong> class adjusts the value to two decimals. Based on these two values, I then calculate the total percentage free space.</p>
<pre>$Capacity = [System.Math]::Round(($Volume.Capacity/1GB),2)

$FreeSpace = [System.Math]::Round(($Volume.FreeSpace/1GB),2)

$PctFreeSpace = [System.Math]::Round(($Volume.FreeSpace/$Volume.Capacity)
 *100,2)</pre>
<p>The next step is to format the output in a way that it can be passed to other scripts as input and can be used in filters to get the data we need. For this purpose, I am using <strong>PSObject</strong> to output the values.</p>
<pre>$OutputObj = New-Object -TypeName PSobject

$OutputObj | Add-Member -MemberType NoteProperty -Name ComputerName 
 -Value $Computer

$OutputObj | Add-Member -MemberType NoteProperty -Name DriveName 
 -Value $Volume.Caption

$OutputObj | Add-Member -MemberType NoteProperty -Name DriveType 
 -Value $Volume.DriveType

$OutputObj | Add-Member -MemberType NoteProperty -Name "Capacity `(GB`)" 
 -Value $Capacity

$OutputObj | Add-Member -MemberType NoteProperty -Name "FreeSpace `(GB`)" 
 -Value $FreeSpace

$OutputObj | Add-Member -MemberType NoteProperty -Name "`%FreeSpace `(GB`)" 
 -Value $PctFreeSpace

$OutputObj# | Select ComputerName, DriveName, DriveType, Capacity, FreeSpace, 
 PctFreespace | ft -auto</pre>
<p><strong>A few tips for using the script:</strong></p>
<ul>
<li>Use “Get-Help .\Get-DiskSpaceDetails.ps1” if you want to display usage information.</li>
<li>Use “Get-Content c:\comps.txt | .\Get-DiskSpaceDetails.ps1” to get the disk space details of computers listed in comps.txt.</li>
<li>Use the “-Verbose” switch if the output is not displayed for a computer.</li>
<li>Use “Get-DiskSpaceDetails.ps1 -ComputerName Comp1, Comp2, Comp3” if you want to pass the computer names as parameters.</li>
<li>Execute the script without any parameters (.\Get-DiskSpaceDetails.ps1) to return the disk space details of the local computer.</li>
<li>Use “Get-DiskspaceDetails.ps1 -ComputerName Comp1 | ? {$_.”`%FreeSpace `(GB`)” -lt 5}” if you want to get a list of drives that have less than 5% free space.</li>
</ul>
<p>You can download the script <a href="http://4sysops.com/wp-content/uploads/2012/03/Get-DiskSpaceDetails.ps1">here</a>. Feel free to adjust it to your liking.</p>
Author: Sitaram Pamarthi
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/raffle-solarwinds-dameware-nt-utilities-remote-administration-tools/" title="Raffle: SolarWinds DameWare NT Utilities &#8211; Remote administration tools (April 18, 2012)">Raffle: SolarWinds DameWare NT Utilities &#8211; Remote administration tools</a> (3)</li>
	<li><a href="http://4sysops.com/archives/windows-to-mac-remote-management-with-vnc-and-ssh/" title="Windows-to-Mac remote management with VNC and SSH (March 22, 2012)">Windows-to-Mac remote management with VNC and SSH</a> (1)</li>
	<li><a href="http://4sysops.com/archives/free-paexec-run-programs-on-remote-windows-servers/" title="FREE: PAExec &#8211; Run programs on remote Windows servers (March 12, 2012)">FREE: PAExec &#8211; Run programs on remote Windows servers</a> (0)</li>
	<li><a href="http://4sysops.com/archives/change-the-local-administrator-password-on-multiple-computers-with-powershell/" title="Change the local administrator password on multiple computers with PowerShell (January 13, 2012)">Change the local administrator password on multiple computers with PowerShell</a> (4)</li>
	<li><a href="http://4sysops.com/archives/query-and-kill-a-process-on-a-remote-computer-using-powershell-and-wmi/" title="Query and kill a process on a remote computer using PowerShell and WMI (December 9, 2011)">Query and kill a process on a remote computer using PowerShell and WMI</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/query-free-disk-space-details-of-remote-computers-using-powershell/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

