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

<channel>
	<title>Windows Server HQ by Train Signal.com &#187; Microsoft</title>
	<atom:link href="http://windowsserver.trainsignal.com/tag/microsoft/feed" rel="self" type="application/rss+xml" />
	<link>http://windowsserver.trainsignal.com</link>
	<description>We are here to help you learn Windows Server!</description>
	<lastBuildDate>Fri, 20 Aug 2010 16:23:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Active Directory PowerShell Scripts Management Tool For Admins</title>
		<link>http://windowsserver.trainsignal.com/ad-powershell-scripts-management-tool</link>
		<comments>http://windowsserver.trainsignal.com/ad-powershell-scripts-management-tool#comments</comments>
		<pubDate>Wed, 21 Jul 2010 14:00:36 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Server 2008 R2]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Active Directory Module]]></category>
		<category><![CDATA[Command Shell]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell 2.0]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=7531</guid>
		<description><![CDATA[Microsoft Active Directory is at the heart of the company&#8217;s server systems. From Windows Server to Exchange Server and beyond, the power of configuring Active Directory policies and objects allows IT to manage a vast empire of resources, users, and workstations in the Enterprise computing environment. Unfortunately, all of that scalability and flexibility can quickly [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/powershell-2-0-server-2008-r2' rel='bookmark' title='Permanent Link: PowerShell 2.0: Server 2008 R2 Top New Management Feature'>PowerShell 2.0: Server 2008 R2 Top New Management Feature</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 1'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 1</a></li>
<li><a href='http://windowsserver.trainsignal.com/dont-be-afraid-of-windowspowershell' rel='bookmark' title='Permanent Link: Don’t be Afraid of PowerShell'>Don’t be Afraid of PowerShell</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p>Microsoft Active Directory is at the heart of the company&#8217;s server systems. From Windows Server to Exchange Server and beyond, the power of configuring Active Directory policies and objects allows IT to manage a vast empire of resources, users, and workstations in the Enterprise computing environment. Unfortunately, all of that scalability and flexibility can quickly add up to a high amount of complexity.</p>
<p>Simply finding the right objects and then updating their properties or implementing changes can be a cumbersome process. Many Microsoft systems engineers have developed their own shortcuts and conventions over the years for dealing with the administration of complex Active Directory structures. One tool that has been lacking, however, is the ability to write powerful scripts to manage Active Directory.</p>
<p>The good news is that the <a href="http://windowsserver.trainsignal.com/windows-2008-server-r2-update-review">arrival of Windows Server 2008 R2</a> with PowerShell 2.0 and the Active Directory Module changes all of that for the better.</p>
<h2>Powershell 2.0 and Active Directory Module</h2>
<p>Of the many <a href="http://windowsserver.trainsignal.com/server-2008-r2-sp1-dynamic-memory-remotefx">new features in Windows Server 2008 R2</a>, PowerShell 2.0 is one that may finally be coming into its own. One of the key new features in PowerShell 2.0 is the addition of modules. Modules differ from PowerShell 1.0 snap-ins in that they are self-contained and do not require registration or installation. Rather, modules are imported into the shell via the Import-Module command. Modules can also be offloaded when they are no longer needed.</p>
<p><span id="more-7531"></span><br />
To use the Active Directory Module, there needs to be at least on Windows Server 2008 R2 Domain Controller running Active Directory Web Services (ADWS) in the domain. As an alternative, the Active Directory Management Gateway Service can be installed on Windows Server 2003 SP2 servers and Windows Server 2008 (non-R2) servers with or without SP2 installed.</p>
<p>For the most powerful configuration of PowerShell 2.0 with the Active Directory Module, you will want to be able to do your scripting remotely from your own computer, or other workstation. This does require Windows 7 in order to install the Remote Server Administration Tools (RSAT).</p>
<p>The Active Directory Module provides a powerful way to manage AD structures even across domains. Part of the AD Module is the PSDrive Provider which allows you to map to an Active Directory domain using whatever credentials are required via the New-PSDrive cmdlet. Users are connected to their current domain by default. The mapped rights persist for the entire shell session, even if it requires using different login credentials for several different AD domains.</p>
<h2>Active Directory Scripts In PowerShell 2.0</h2>
<p>There are many different commands included in the Active Directory Module. One count places the total number of new commands at 82. The most commonly used commands, however, are those that match up with the most common Windows Server Administrator tasks. The naming convention for Active Directory cmdlets dictates that each cmdlet start with &#8220;AD&#8221; in order to help separate the Active Directory versions from similar PowerShell cmdlets available in the base PowerShell.</p>
<p>Thanks to this naming convention, obtaining a list of all the Active Directory Module cmdlets can be done by running the Help *-AD* command.</p>
<p>The most difficult part of getting up to speed with Active Directory management via PowerShell 2.0 is mastering all of the parameters available for each cmdlet. In an effort to allow virtually any function that can be performed manually to be scripted, Microsoft had to provide a working parameter for pretty much every setting, checkbox, and field that there is in the GUI. That means that some commands have a mind boggling array of available options. Fortunately, only a small subset of any cmdlet&#8217;s parameters are mandatory in order to run the desired command.</p>
<p>As with any new programming language, the key is to focus in the beginning on the basics and most frequently used options and build mastery as you go along. While it may seem daunting at first, one will quickly find that using built-in cmdlets specifically designed for their purpose ends up being much easier to both code and manage than mastering all of the work-arounds and band-aids currently required to perform the same tasks.</p>
<h2>Common Active Directory Cmdlets for PowerShell</h2>
<p>The most common administrative tasks within Active Directory are those that relate to creating, finding, and changing objects and users. Not surprisingly, these cmdlets make a great place to start learning and using PowerShell 2.0 to manage Active Directory.</p>
<p><strong>Commonly used PowerShell AD cmdlets include:</strong></p>
<ul>
<li>New-ADUser</li>
<p></p>
<li>New-ADGroup</li>
<p></p>
<li>New-ADComputer</li>
<p></p>
<li>New-ADOrganization</li>
<p></p>
<li>New-ADServiceAccount</li>
<p></p>
<li>Unlock-ADAccount</li>
<p></p>
<li>Enable-ADAccount</li>
<p></p>
<li>Disable-ADAccount</li>
<p></p>
<li>Get-ADUser</li>
<p></p>
<li>Add-ADGroupMember</li>
<p></p>
<li>Get-ADGroupMember</li>
<p></p>
<li>Get-ADForest</li>
<p></p>
<li>Get-ADDomain</li>
<p></p>
<li>Get-ADDomainController</li>
</ul>
<p>Of course, the real power from scripting comes not from typing in a bunch of esoteric computer commands instead of clicking mouse buttons, but from the ability to save useful scripts and use them over and over again. To this end, Active Directory cmdlets support piping information into the cmdlets. For example, to create a couple dozen new users, the administrator could take the Excel Spreadsheet supplied from Human Resources, export it as a CSV file and then pipe the resulting data to the New-ADUser command: <em>Import-CSV c:\neweuserdata\april-new-employees.csv | New-ADUser</em> and let the script take care of all the basic data entry.</p>
<p>Using parts of the same file, the admin can go back through and using the appropriate cmdlets add users to their respective groups and domains and even apply additional group policies to the new users.</p>
<p>Of course, easy, but highly repetitive tasks can be automated as well. Imagine picking up the phone with a call from a panicked user who has locked himself out of his account (again). A tiny shortcut launched directly with minimal typing and clicking requiring nothing more than the user&#8217;s login name quickly firing off and unlocking or even re-enabling the account, all without ever having to leave the screen you were already working on when the phone rang.</p>
<h2>PowerShell Resources</h2>
<p>Even though the Active Directory Module is new with PowerShell 2.0 there are already some great references available for Microsoft server administrators. Check out Jonathan Medd&#8217;s <a href="http://www.jonathanmedd.net/wp-content/uploads/2009/10/ADPowerShell_QuickReference.pdf">Active Directory PowerShell Quick Reference Guide</a> for help getting up to speed and remembering lesser used commands. Microsoft has a general <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=DF8ED469-9007-401C-85E7-46649A32D0E0&amp;displaylang=en">PowerShell Quick Reference guide</a> as well. For those of you lamenting the hours spent mastering VBScripting, check out the <a href="http://technet.microsoft.com/en-us/library/ee221101.aspx">VBScript to Windows PowerShell Conversion Guide</a>.</p>
<p>Learning new technology and skills is never easy, but the truth &#8212; if we are willing to admit it &#8212; is that as high-tech computer administrators, we quickly grow bored with doing the same things over and over again. Not only does PowerShell 2.0 and the Active Directory Module provide some new material for the skills menu, it also provides a way to eliminate far more tedious, repetitive tasks than ever before.</p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/powershell-2-0-server-2008-r2' rel='bookmark' title='Permanent Link: PowerShell 2.0: Server 2008 R2 Top New Management Feature'>PowerShell 2.0: Server 2008 R2 Top New Management Feature</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 1'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 1</a></li>
<li><a href='http://windowsserver.trainsignal.com/dont-be-afraid-of-windowspowershell' rel='bookmark' title='Permanent Link: Don’t be Afraid of PowerShell'>Don’t be Afraid of PowerShell</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/ad-powershell-scripts-management-tool/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell 2.0: Server 2008 R2 Top New Management Feature</title>
		<link>http://windowsserver.trainsignal.com/powershell-2-0-server-2008-r2</link>
		<comments>http://windowsserver.trainsignal.com/powershell-2-0-server-2008-r2#comments</comments>
		<pubDate>Wed, 12 May 2010 14:00:10 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Server 2008 R2]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell 2.0]]></category>
		<category><![CDATA[PowerShell Scripting]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=7496</guid>
		<description><![CDATA[PowerShell Scripting on Windows Server 2008 R2
 PowerShell 1.0 gave systems administrators around the world a new administration tool when it was introduced with Windows Server 2003. 
For years, Microsoft has worked to develop a graphical user interface, or GUI, that would make system administration and user administration easier and more user friendly. 
In many [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/ad-powershell-scripts-management-tool' rel='bookmark' title='Permanent Link: Active Directory PowerShell Scripts Management Tool For Admins'>Active Directory PowerShell Scripts Management Tool For Admins</a></li>
<li><a href='http://windowsserver.trainsignal.com/dont-be-afraid-of-windowspowershell' rel='bookmark' title='Permanent Link: Don’t be Afraid of PowerShell'>Don’t be Afraid of PowerShell</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 1'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 1</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<h2>PowerShell Scripting on Windows Server 2008 R2</h2>
<p><img src="http://windowsserver.trainsignal.com/wp-content/uploads/2010/05/powershell1.jpg" alt="" title="PowerShell 2.0" width="200" height="155" class="float" class="alignleft size-full wp-image-7521" /> <a href="http://windowsserver.trainsignal.com/windows-server-2008-powershell">PowerShell 1.0</a> gave systems administrators around the world a new administration tool when it was introduced with Windows Server 2003. </p>
<p>For years, Microsoft has worked to develop a graphical user interface, or GUI, that would make system administration and user administration easier and more user friendly. </p>
<p>In many ways, the company succeeded admirably. </p>
<p>Most admins know at least one or two people who have managed to create a user in a very small Windows Server environment through User Manager and think that they should become a Windows Administrator because they already understand &#8220;how to do it.&#8221;</p>
<p>However, for administrators in environments where users exceed the number of people it takes to field a couple softball teams, things  are more complicated. In fact, one of the difficulties of properly administering a networked operating system and its servers is keeping all the &#8220;little things&#8221; consistent across the enterprise. Forgetting a check-box here, and a radio button there, can add up to a security nightmare waiting to happen, or perhaps, a very angry Vice President unable to remotely connect at a critical time.</p>
<p>The solution to some of these problems has been scripting. By writing scripts, Windows system engineers could ensure that repetitive tasks happened correctly and with far less effort than doing them manually. Everything from creating new user accounts, to installing software and upgrades, to basic login scripts has been coded somewhere along the way by a savvy systems admin looking to avoid headaches and spend a little less time on repetitive tasks.</p>
<p><span id="more-7496"></span><br />
Eventually, new Windows Server features and enhancements began to outstrip the capabilities of the DOS-based scripting that server administrators had been cobbling together. Fortunately, new tools and utilities were also developed that helped reduce some of the reliance on login scripts. For example, User and Group profiles have long since made mapping drive letters via login script obsolete. However, administrators still needed a more powerful scripting environment.</p>
<h2>PowerShell 2.0 Upgrades Features and Capabilities</h2>
<p>PowerShell has been slightly underrated within the administrator community. One reason is that in order for PowerShell to really perform throughout the enterprise, it needs to be usable on the servers and all the desktops. </p>
<p>Fortunately, Windows 7 comes ready to execute PowerShell scripts. Windows 7 SP1 is set to ship in the near future, which sounds the bell for many long-time IT professionals who live by the rule to always wait for SP1 before upgrading, and Server 2008 R2 comes with PowerShell 2.0 installed by default. As <a href="http://www.trainsignaltraining.com/deploy-windows-7-enterprise/2009-08-19/">Windows 7 is installed in the enterprise</a>, PowerShell 2.0 will grow even more useful.</p>
<p>Another reason PowerShell has not gotten its fair share of affection from systems administrators is that there were a few nagging things about how PowerShell worked conspiring to make it seem less powerful than it actually was. However, Microsoft has addressed many of these issues and thrown in a few new features as well.</p>
<p>Let&#8217;s take a look at some of these new features now.</p>
<h3>Remoting</h3>
<p>Nothing has been a bigger thorn in the side of PowerShell than Remoting. Remoting is the ability to run commands via PowerShell on remote computers. Technically, some remoting was possible in PowerShell one, but it was limited to the Get-WMIObject cmdlet within Windows Management Instrumentation (WMI). Even worse, WMI required RPC connections which meant having to go to the networking guys to get ports opened and firewall exceptions allowed. Not fun.</p>
<p>PowerShell 2.0 allows administrators to run commands on remote computers using the WS-Man (WS-Management) protocols which establish secure connections to remote computers using ports 80 and 443 by default. In many environments these ports will already be open, and in those that they are not, they’ll be a much easier sell to the networking team.</p>
<p>There is one little catch to remoting in PowerShell 2.0. In order to use remoting, it must be enabled on both machines. However, this only needs to be done once. Once enabled, remoting can be used on multiple machines at the same time allowing the administrator to execute the same commands on several computers at once. The applications for this ability are limited only by the admin’s ability (and the availability of the right cmdlet).</p>
<h3>New cmdlets</h3>
<p>Speaking of cmdlets, PowerShell 2.0 comes with over 100 built-in cmdlets. While this covers a lot of ground, there is no doubt that Microsoft Server administrators will quickly find functions and tasks that require other commands. Fortunately, Microsoft has implemented a way to handle this eventuality as well. </p>
<p>Modules are also new to PowerShell 2.0 and allow script developers to organize code into self-contained reusable units. This functionality has already been used to create a PowerShell 2.0 Active Directory Module which brings more possibilities to managing Active Directory via PowerShell.</p>
<h3>Run Background Jobs in PowerShell</h3>
<p>Another big addition to the PowerShell feature set is the ability to run background jobs. This means that those PowerShell scripts that take a long time to run can continue to perform in the background while the command prompt returns control immediately to the console. </p>
<p>An admin performing numerous tasks late at night can get them all running right away instead of having to wait until 2:00 AM to run that last command. This is especially useful while remoting multiple machines, especially when those machines are separated by various network connection speeds.</p>
<p><img src="http://windowsserver.trainsignal.com/wp-content/uploads/2010/05/powershell2.jpg" alt="" title="PowerShell 2.0" width="520" height="478" class="alignleft size-full wp-image-7522" /></p>
<h3>System Events Integration</h3>
<p>PowerShell 2.0 now offers the ability to monitor and act on system events which can allow for more proactive scripting.</p>
<h3> PowerShell ISE GUI</h3>
<p>The most curious edition to PowerShell 2.0 is the PowerShell GUI, which, on the surface, appears to defeat the whole point of PowerShell. However, the GUI is really more of a basic script editor complete with color coded syntax, partial execution, stepping, and graphic debugging. The GUI also includes context sensitive help which can save admins from scanning through the verbose output of some help commands.</p>
<p>With Windows 7 coming to many businesses in the near future and the upcoming release of Windows Server 2008 R2 SP1, PowerShell 2.0 will be already waiting to go for enterprise-wide control and administration. The time is now for Microsoft systems engineers and administrators to learn how to take advantage of PowerShell 2.0.</p>
<p>&nbsp;</p>
<h2>PowerShell 2.0 Demonstration</h2>
<p>Take a look at the video below to see a short demo of PowerShell 2.0.</p>
<p>&nbsp;<br />
<script src="http://technet.microsoft.com/objectforward/default.aspx?type=VideoPlayer&#038;video=http%3A%2F%2Fdownload.microsoft.com%2Fdownload%2FC%2FB%2F7%2FCB7BD324-E9B6-4D3F-854D-8AD4FDBE5CA4%2Fpowershell.wmv&#038;thumb=http%3A%2F%2Fi.technet.microsoft.com%2Fdd320288.WindowsPowerShell2L(en-us%252cMSDN.10).jpg&#038;title=&#038;width=400&#038;height=400" type="text/javascript"></script></p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/ad-powershell-scripts-management-tool' rel='bookmark' title='Permanent Link: Active Directory PowerShell Scripts Management Tool For Admins'>Active Directory PowerShell Scripts Management Tool For Admins</a></li>
<li><a href='http://windowsserver.trainsignal.com/dont-be-afraid-of-windowspowershell' rel='bookmark' title='Permanent Link: Don’t be Afraid of PowerShell'>Don’t be Afraid of PowerShell</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 1'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 1</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/powershell-2-0-server-2008-r2/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 R2 SP1 New Features: Dynamic Memory and RemoteFX</title>
		<link>http://windowsserver.trainsignal.com/server-2008-r2-sp1-dynamic-memory-remotefx</link>
		<comments>http://windowsserver.trainsignal.com/server-2008-r2-sp1-dynamic-memory-remotefx#comments</comments>
		<pubDate>Tue, 04 May 2010 14:00:18 +0000</pubDate>
		<dc:creator>Brian Nelson</dc:creator>
				<category><![CDATA[Server 2008 R2]]></category>
		<category><![CDATA[Dynamic Memory]]></category>
		<category><![CDATA[Memory Overcommit]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[RemoteFX]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Service Pack]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=7500</guid>
		<description><![CDATA[Microsoft has confirmed that the industry required gold standard of Microsoft stability, Service Pack 1, is in the works for Windows 7 and Windows Server 2008 R2. (Both Windows 7 and Server 2008 R2 are built on the same code base which allows for better integration, and also means that large updates like Service Packs [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/hyper-v-vmware-vsphere-features' rel='bookmark' title='Permanent Link: Hyper-V and VMware &#8212; Part 2: Features'>Hyper-V and VMware &#8212; Part 2: Features</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-7-and-server-2008-r2' rel='bookmark' title='Permanent Link: Windows 7 Features That Require Server 2008 R2'>Windows 7 Features That Require Server 2008 R2</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-r2-green-features' rel='bookmark' title='Permanent Link: Windows Server 2008 R2 Green Features'>Windows Server 2008 R2 Green Features</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p><img src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/11/4.jpg" alt="Windows 2008 Server R2 Update Review" title="Server 2008 R2" class="float" height="120" width="320">Microsoft has confirmed that the industry required gold standard of Microsoft stability, Service Pack 1, is in the works for Windows 7 and Windows Server 2008 R2. (Both Windows 7 and Server 2008 R2 are built on the same code base which allows for better integration, and also means that large updates like Service Packs are typically released together.) </p>
<p>As always, Windows Server 2008 R2 SP1 will include a rollup of patches and fixes developed since the original release shipped. Microsoft has also started banging the drum about two new features that are slated to be a part of the first Service Pack for Server 2008 and Windows 7.</p>
<h2>New Features in Server 2008 R2 SP1 Update</h2>
<p>The two new features mentioned in various statements and internal Microsoft blogs, such as <a href="http://blogs.technet.com/WindowsServer/" target="_blank">Windows Server Division WebLog</a> (no word on the appropriateness of the capitalized &#8220;L&#8221; in weblog) are <strong>Dynamic Memory</strong> and <strong>RemoteFX</strong>, both of which are functions for Microsoft virtualization.</p>
<p><span id="more-7500"></span></p>
<h2>Dynamic Memory in Server 2008 R2 SP1</h2>
<p>Dynamic Memory is a new feature to Hyper-V which allows administrators to allocate all the memory available on a physical host and then have it dynamically distributed among the virtual machines that run on that host. They say that the best laid plans of mice and men often go awry. Plans for projecting how much memory a given VM may not have been the inspiration for that saying, but they certainly fit. Dynamic memory is a way to try and nudge the plans of Windows Server systems engineers back on track.</p>
<p>Dynamic Memory is similar to the Memory Overcommit feature in VMware that allows for greater VM density on a given set of hardware, but with a different twist. Memory Overcommit works by essentially over-promising how much RAM each VM can have. The theory is that most machines do not use their full allotment of RAM all of the time. Thus, when one virtual machine goes over its &#8220;real&#8221; memory limit, the virtual manager lets it use some of the memory that a different VM is not currently utilizing. As long as all VMs aren’t trying to use all of their allocation at the same time, there is no problem.</p>
<p>Microsoft has long claimed that Memory Overcommit is a dangerous solution and advocated against using it. While Dynamic Memory is very similar, the twist is that instead of fooling a VM into thinking it has more RAM than it really does, the Hyper-V manager monitors the percentage of memory being used on all the VMs and then changes the maximum amount of RAM the OS has to work with based on those percentages. The net effect is the same; more VMs can be installed on the same hardware.</p>
<p>The whole point of virtualization is to be able to create numerous virtual servers on a single set of hardware, or host, without having to have big reserves of hardware resources, &#8220;just in case.&#8221; By virtually allocating all hardware resources to virtual machines, IT professionals are able to maximize how costly hardware is used. </p>
<p>But, what happens when a formerly sleepy virtual machine suddenly becomes mission critical?</p>
<p>For example, consider a hypothetical cable TV channel that is typically lost somewhere &#8220;in the middle&#8221; of the channel numbers. Let’s assume that like many of its competitors this particular channel has some reality TV show starring a not-so-famous famous person when news breaks that the channel’s reality TV star backed over the Pope with his car. </p>
<p>The virtual machine that houses the application used to route incoming phone calls, that annoying, &#8220;Press 1 for this. Press 2 for that,&#8221; system doesn’t usually require much in the way of resources. On this day, however, it’s running full-speed when some &#8220;helpful&#8221; person reconfigures the phone lines to allow a lot more incoming call lines. </p>
<p>Now the VM is swamped and bogging down. If it were a submarine, the captain would be ordering Engineering to go to 105% on the reactor, but since it’s a virtual machine, it is paging everyone in IT with monitoring errors.</p>
<p>For even the most foolhardy server administrators, manually reallocating memory among virtual machines isn’t the kind of thing you want to do during business hours while systems are live and users are counting on those critical business systems. Without Dynamic Memory, our heroes are in a jam, having to rush through an emergency change control ticket and notifying users that some of their server-based software is about to reboot. </p>
<p>However, with Dynamic memory, memory is reallocated on the fly without any service interruptions, leaving our poor sys admin to deal with the sudden flood of incoming email and website traffic, instead.</p>
<h2> RemoteFX for Windows Server 2008 R2 SP1</h2>
<p>The other major update coming in Service Pack 1 is called RemoteFX. RemoteFX is an improvement that should help iron out some of the unpleasantness of using Microsoft Remote Desktop Services on thin clients. Essentially what RemoteFX does is handle all the heavy lifting for graphics. Rendering is done server-side and then displayed on clients without using their resources. This means that intensive effects like Microsoft Aero should start being a lot more usable on thin clients configured without a lot of hardware power.</p>
<p>This technology comes from Calista Technologies which Microsoft bought two years ago. Microsoft has integrated it into the session virtualization environment (Terminal Services to those of you who don&#8217;t update your lingo with every press release). Using a standard RDP connection, resource hogging multimedia presentations, full-motion video, and Silverlight animations can all be viewed seamlessly even on clients that don&#8217;t have powerful enough hardware to handle them on their own.</p>
<p>RemoteFX has also been licensed out to Citrix for its XenDesktop VDI, so those enterprises running these systems will be able to take advantage of this new capability as well. Citrix has been promoting HDX as a similar feature, but both companies have said that the technologies are complimentary and not competitive. Time will tell how (or if) the two will integrate.</p>
<p>While Microsoft hasn&#8217;t provided any details yet, they have also said that Windows 7 will get an updated RDP client as part of the Windows 7 SP1, which would allow those systems to use the feature as well. While traditional workstations wouldn&#8217;t require the feature for standard use, something like high-resolution 3-D rendering could potentially benefit from RemoteFX.</p>
<p>These new features show Microsoft&#8217;s willingness to roll out new technologies without a full product release or add-on pack like in the past. However, neither technology is a game changer, and just as important to those enterprises with tight change control and testing procedures, neither function makes core changes to the OS and can be disabled at install. </p>
<p>In the end, SP1 is what it should be, a boring accumulation of patches and a handful of improvements without any major surprises.</p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/hyper-v-vmware-vsphere-features' rel='bookmark' title='Permanent Link: Hyper-V and VMware &#8212; Part 2: Features'>Hyper-V and VMware &#8212; Part 2: Features</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-7-and-server-2008-r2' rel='bookmark' title='Permanent Link: Windows 7 Features That Require Server 2008 R2'>Windows 7 Features That Require Server 2008 R2</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-r2-green-features' rel='bookmark' title='Permanent Link: Windows Server 2008 R2 Green Features'>Windows Server 2008 R2 Green Features</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/server-2008-r2-sp1-dynamic-memory-remotefx/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Redirect Your Documents Folder in Windows 7</title>
		<link>http://windowsserver.trainsignal.com/windows-7-redirecting-documents-folder</link>
		<comments>http://windowsserver.trainsignal.com/windows-7-redirecting-documents-folder#comments</comments>
		<pubDate>Tue, 22 Sep 2009 15:35:54 +0000</pubDate>
		<dc:creator>Gosia Grabowska</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=7056</guid>
		<description><![CDATA[This could be my last post for a while as I am about to go on maternity leave (my due date is tomorrow so cross your fingers for me!) but before I do so, I want to share something with you.
I Love Train Signal!
My wonderful Train Signal just got a brand new laptop for me with &#8230; Windows [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/windows-7-custom-install-boot-from-usb' rel='bookmark' title='Permanent Link: My Journey from Windows XP to Windows 7'>My Journey from Windows XP to Windows 7</a></li>
<li><a href='http://windowsserver.trainsignal.com/creating-new-vm-in-hyper-v' rel='bookmark' title='Permanent Link: How to Create a New Virtual Machine with Hyper-V'>How to Create a New Virtual Machine with Hyper-V</a></li>
<li><a href='http://windowsserver.trainsignal.com/how-to-setup-a-remote-desktop-on-windows-vista' rel='bookmark' title='Permanent Link: Server 2008: How to Setup a Remote Desktop on Windows Vista'>Server 2008: How to Setup a Remote Desktop on Windows Vista</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p>This could be my last post for a while as I am about to go on maternity leave (my due date is tomorrow so cross your fingers for me!) but before I do so, I want to share something with you.</p>
<h2>I Love Train Signal!</h2>
<p><img class="float size-full wp-image-7075" title="Win7" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/Win7.jpg" alt="Win7" width="261" height="60" />My wonderful Train Signal just got a brand new laptop for me with &#8230; <em><strong>Windows 7!</strong></em>  </p>
<p>Remember how I gave my boss a little hint in my <a title="Upgrade from XP to Windows 7" href="http://windowsserver.trainsignal.com/upgrade-from-xp-to-windows-7" target="_blank">upgrading from XP to Windows 7 article</a>?  I guess he reads my posts after all, because first thing yesterday morning I get a package with a brand spanking new laptop!  I was so happy I was in tears! (Quite hormonal, yes &#8212; but there&#8217;s not much you can do when you are about to have a baby AND you get a new laptop you&#8217;ve been wanting for months).</p>
<h2>Bragging About My New Windows 7 Laptop</h2>
<p>Most of the day yesterday I spent setting up my Windows 7, copying files and programs, configuring my preferences, etc., and I must say, Windows 7 makes all of this really easy.  I am not a Windows 7 pro and I haven&#8217;t done much training on it either but I was able to figure out almost everything on my own &#8212; it&#8217;s so easy to use. </p>
<p>I love the new look and feel and the speed is amazing &#8212; I really think I can get used to it quickly.  Now, just so you know, I haven&#8217;t used Windows Vista that much.  I know Windows 7 is supposed to be just like Vista and all, but I made the jump to 7 from Windows XP.  </p>
<p>I still love XP and will miss it dearly, but it&#8217;s time for me to move on and &#8220;go with the flow&#8221;.  So, if any of you are still on Windows XP and are afraid of installing Windows 7 &#8212; don&#8217;t be.  It&#8217;s easy and you will have no problem getting used to it.</p>
<h2>Redirecting Your Documents Folder in Windows 7</h2>
<p>Ok, enough bragging about my new laptop and the awesome Windows 7. </p>
<p>What I want to show you today is how to redirect your Documents folder to a different location on you Windows 7 PC. </p>
<p>I like to keep my Documents folder on my D drive and as of now the default is <strong>C:\Users\Public</strong>. So, how do I change the default?  Here are the steps.</p>
<p><span id="more-7056"></span><br />
<strong>1.</strong> To start, click on the start orb, point to <strong>Documents</strong> and right click. You will get a pop-up menu.  Point and select <strong>Properties</strong>.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/11.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7059" title="How to Redirect Your Documents Folder in Windows 7" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/11.jpg" alt="How to Redirect Your Documents Folder in Windows 7"  /></a></p>
<p><strong>2.</strong> In the Documents Properties window, select the Library location you want to remove (in my case it is the <strong>C:\Users\Public folder</strong>) and click <strong>Remove</strong>.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/21.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7060" title="2" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/21.jpg" alt="2" width="436" height="628" /></a></p>
<p><strong>3.</strong> You can remove them all or you may leave the ones you would like to keep.  I am going to leave the &#8220;My Documents&#8221; location that is in my profile, in case I want to save files in that location someday.  To add a new location, click on the <strong>Include a Folder</strong> button.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/2b.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7061" title="2b" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/2b.jpg" alt="2b" width="436" height="628" /></a></p>
<p><strong>4.</strong> Select the folder you want to include for your Documents and then click <strong>Include folder</strong>.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/32.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7062" title="3" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/32.jpg" alt="3" /></a></p>
<p><strong>5.</strong> That folder now shows in your library locations.  To set it as your default save location, select it and then click on <strong>Set save location</strong>.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/41.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7063" title="4" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/41.jpg" alt="4" width="437" height="628" /></a></p>
<p><strong>6.</strong> Make sure to click <strong>Apply</strong> and <strong>OK</strong> before you close that window.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/51.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7064" title="5" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/51.jpg" alt="5" width="438" height="629" /></a></p>
<p><strong>7.</strong> That&#8217;s it!  You can see now that I have two locations for my library.  One is on my C drive and the other &#8212; the default one, is on my D drive.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/61.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7065" title="6" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/61.jpg" alt="6" width="597" height="471" /></a></p>
<p><strong>8.</strong> I think we should test it.  I created a word document and I am going to click on <strong>Save As</strong>.  Let&#8217;s see where it is going to take me.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/71.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7066" title="7" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/71.jpg" alt="7" /></a></p>
<p><strong>9.</strong> I&#8217;m not going to select anything, just type in the name and click <strong>Save</strong>.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/81.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7067" title="8" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/81.jpg" alt="8" /></a></p>
<p><strong>10.</strong> Now I&#8217;m going to open up my Documents library and see where the document was saved.</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/9.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7068" title="9" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/9.jpg" alt="9" /></a></p>
<p>Woo Hoo!  It worked!  The document is on my D drive!</p>
<p>&nbsp;<br />
<a href="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/10.jpg" rel="lightbox[7056]"><img class="aligncenter size-full wp-image-7069" title="10" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/10.jpg" alt="10" /></a></p>
<p>Just like the folder redirection, everything seems to be super easy and common sense in Windows 7.  Is there anything you want to know how to do?  </p>
<p>Let us know and we&#8217;ll try to help out!</p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/windows-7-custom-install-boot-from-usb' rel='bookmark' title='Permanent Link: My Journey from Windows XP to Windows 7'>My Journey from Windows XP to Windows 7</a></li>
<li><a href='http://windowsserver.trainsignal.com/creating-new-vm-in-hyper-v' rel='bookmark' title='Permanent Link: How to Create a New Virtual Machine with Hyper-V'>How to Create a New Virtual Machine with Hyper-V</a></li>
<li><a href='http://windowsserver.trainsignal.com/how-to-setup-a-remote-desktop-on-windows-vista' rel='bookmark' title='Permanent Link: Server 2008: How to Setup a Remote Desktop on Windows Vista'>Server 2008: How to Setup a Remote Desktop on Windows Vista</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/windows-7-redirecting-documents-folder/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Upgrading to Server 2008 R2 in 8 Easy Steps</title>
		<link>http://windowsserver.trainsignal.com/windows-server-2008-r2-install</link>
		<comments>http://windowsserver.trainsignal.com/windows-server-2008-r2-install#comments</comments>
		<pubDate>Wed, 16 Sep 2009 18:10:29 +0000</pubDate>
		<dc:creator>Gosia Grabowska</dc:creator>
				<category><![CDATA[Server 2008 R2]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=7006</guid>
		<description><![CDATA[Windows Server 2008 R2 was released just a couple of days ago on September 14th &#8212; so now it&#8217;s time for you to start thinking about installing or upgrading your Server 2008.
Here are couple things to keep in mind.
First, the new Windows Server 2008 R2 can only be installed (or upgraded) on 64-bit servers.  If [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/upgrading-to-server-2008-from-server-2003' rel='bookmark' title='Permanent Link: Upgrading to Server 2008 from Server 2003'>Upgrading to Server 2008 from Server 2003</a></li>
<li><a href='http://windowsserver.trainsignal.com/a-guide-to-upgrading-to-sccm-2007-r2' rel='bookmark' title='Permanent Link: A Guide to Upgrading to SCCM 2007 R2'>A Guide to Upgrading to SCCM 2007 R2</a></li>
<li><a href='http://windowsserver.trainsignal.com/hyper-v-installation' rel='bookmark' title='Permanent Link: Installing Hyper-V Server Role in 7 Easy Steps'>Installing Hyper-V Server Role in 7 Easy Steps</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p><img class="float size-full wp-image-7019" title="R2" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/R2.jpg" alt="R2" width="274" height="84" />Windows Server 2008 R2 was released just a couple of days ago on September 14th &#8212; so now it&#8217;s time for you to start thinking about installing or upgrading your Server 2008.</p>
<p>Here are couple things to keep in mind.</p>
<p>First, the new Windows Server 2008 R2 can only be installed (or upgraded) on 64-bit servers.  If you have  Server 2008 installed on a 32-bit server, you will first need to upgrade your hardware to 64-bit before upgrading to Server 2008 R2.</p>
<p>Another thing to think about is whether you want to install R2 from scratch or run an upgrade. Both options are available so it is up to you to decide.  When it comes to a clean install, it is quite easy and almost exactly the same as <a title="Installing Windows Server 2008" href="http://windowsserver.trainsignal.com/install-windows-server-2008">installing Server 2008</a>.</p>
<h2>Is the Upgrade Free?</h2>
<p>Well, it depends. </p>
<p><span id="more-7006"></span><br />
According to Microsoft, if you purchased Windows Server 2008 together with Software Assurance (SA), your upgrade to Server 2008 R2 is free.  If you did not purchase SA, then unfortunately you will need to purchase R2 before upgrading.  </p>
<p>How much will R2 cost without Software Assurance?  Microsoft did not publish the pricing just yet but you can contact your reseller and ask him/her what would be the cost for your upgrade.</p>
<p>To verify that the upgrade is in fact free for people who purchased SA, I contacted Microsoft via live chat.  Here is our quick conversation:</p>
<ul>
<li><strong>Jodi:</strong> How may I assist you today?</li>
<li><strong>Gosia: </strong>Hi Jodi, I just have a quick question about Windows Server 2008 R2. If I already have Windows Server 2008 &#8211; will the upgrade be free or is there a price tag for upgrading?</li>
<li><strong>Jodi: </strong>Do you know if you purchased Software Assurance when you bought Windows Server 2008?</li>
<li><strong>Gosia: </strong>No&#8230; I did not purchase Software Assurance&#8230;</li>
<li><strong>Jodi: </strong>Ok, It is my understanding that you will have to purchase the Windows Server 2008 R2 if you did not purchase Software Assurance with the Windows Server 2008.  You will not have to re-purchase CALs, just the server software.</li>
<li><strong>Gosia: </strong>I see. But if I had purchased software assurance then it would have been a free upgrade, right?</li>
<li><strong>Jodi: </strong>Correct.  And, customers that had purchased Software Assurance are eligible for Windows Server 2008 R2 before new customers.</li>
<li><strong>Gosia: </strong>That will teach me a lesson for next time. Thank you for your time. That&#8217;s all I needed.</li>
<li><strong>Jodi: </strong> Sure.</li>
</ul>
<p>So as you can see, purchasing SA is always a good idea and it saves you money in a long run.</p>
<h2>Improvements in Server 2008 R2</h2>
<p>Why should you upgrade to Server 2008 R2?  Are you going to benefit from the upgrade?</p>
<p>Lisa and I have mentioned a couple of our favorite new features in R2 like the <a href="http://windowsserver.trainsignal.com/ad-administrative-center-global-search">Global Search bar in Active Directory Administrative Center</a> or the <a href="http://windowsserver.trainsignal.com/server-2008-r2-active-directory-recycle-bin">Recycle Bin in Active Directory</a>.  </p>
<p>But besides the cool toys you&#8217;re going to get, here are few reasons for upgrading to R2:</p>
<ul>
<li>Better performance on more powerful hardware (Windows Server 2008 R2 can be only installed on 64-bit server)</li>
<li>&#8220;Balanced&#8221; power policy for processors</li>
<li>Enhanced Virtual Desktop Integration (VDI) technology</li>
<li>Efficient Server Management</li>
<li>Enhancements to Hyper-V</li>
<li>File Classification Infrastructure (FCI) Feature for data management</li>
<li>DirectAccess for remote users</li>
<li>BranchCache for remote offices</li>
<li>Improved and Simplified Management for SMBs</li>
<li>Internet Information Services 7.5 (IIS 7.5)</li>
</ul>
<p>To read more about these features check out the <a title="Top 10 Reasons to Upgrade to R2" href="http://www.microsoft.com/windowsserver2008/en/us/top-reasons.aspx" target="_blank">Top 10 Reasons to Upgrade to R2 from Microsoft</a>.</p>
<h2>Upgrading to Server 2008 R2 in 8 Easy Steps</h2>
<p>Once you&#8217;re ready to upgrade your Server 2008 to R2 follow these simple 8 steps.</p>
<p>&nbsp;<br />
<strong>1. </strong> Start the installation by clicking <strong>Install Now</strong>.</p>
<p><img class="center size-full wp-image-7007 aligncenter" title="1" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/1.jpg" alt="1" width="485" height="359" /></p>
<p>&nbsp;<br />
<strong>2.</strong>  Select the option to get the latest updates for installation by click on the option.</p>
<p><img class="aligncenter size-full wp-image-7010" title="2" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/2.jpg" alt="2" width="502" height="376" /></p>
<p>&nbsp;<br />
<strong>3.</strong> Next, select the appropriate version &#8212; I have Server 2008 Enterprise installed on my system so that&#8217;s the one I&#8217;m choosing. Once you make your selection, click Next.</p>
<p><img class="aligncenter size-full wp-image-7011" title="3" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/31.jpg" alt="3" width="502" height="377" /></p>
<p>&nbsp;<br />
<strong>4.</strong>  Accept the License terms and click Next.<br />
<img class="aligncenter size-full wp-image-7012" title="4" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/4.jpg" alt="4" width="503" height="378" /></p>
<p>&nbsp;<br />
<strong>5.</strong>  Now we are ready to select the Upgrade option &#8212; go ahead and click on the selection.</p>
<p><img class="aligncenter size-full wp-image-7013" title="5" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/5.jpg" alt="5" width="502" height="377" /></p>
<p>&nbsp;<br />
<strong>6.</strong>  R2 is now going to run a compatibility checker.  If you get a report that some things need to be improved or corrected, you must do that before continuing with the upgrade.</p>
<p><img class="aligncenter size-full wp-image-7014" title="6" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/6.jpg" alt="6" width="501" height="375" /></p>
<p>&nbsp;<br />
<strong>7.</strong> My compatibility checker gave me a couple of warnings but nothing major, so I&#8217;m going to continue. Once you&#8217;re ready, click the Next button.<br />
<img class="aligncenter size-full wp-image-7015" title="7" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/7.jpg" alt="7" width="501" height="374" /></p>
<p>&nbsp;<br />
<strong>8.</strong> Now we wait for the Upgrade to complete.</p>
<p><img class="aligncenter size-full wp-image-7016" title="8" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/8.jpg" alt="8" width="501" height="376" /></p>
<p>As you can see it is a very easy upgrade and as long as your compatibility checker turns out ok, you are good to go with your new Windows Server 2008 R2 in no time!</p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/upgrading-to-server-2008-from-server-2003' rel='bookmark' title='Permanent Link: Upgrading to Server 2008 from Server 2003'>Upgrading to Server 2008 from Server 2003</a></li>
<li><a href='http://windowsserver.trainsignal.com/a-guide-to-upgrading-to-sccm-2007-r2' rel='bookmark' title='Permanent Link: A Guide to Upgrading to SCCM 2007 R2'>A Guide to Upgrading to SCCM 2007 R2</a></li>
<li><a href='http://windowsserver.trainsignal.com/hyper-v-installation' rel='bookmark' title='Permanent Link: Installing Hyper-V Server Role in 7 Easy Steps'>Installing Hyper-V Server Role in 7 Easy Steps</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/windows-server-2008-r2-install/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hyper-V Certification &#8211; MCTS: Windows Server Virtualization, Configuration (Exam 70-652)</title>
		<link>http://windowsserver.trainsignal.com/hyper-v-certification-exam-70-652</link>
		<comments>http://windowsserver.trainsignal.com/hyper-v-certification-exam-70-652#comments</comments>
		<pubDate>Wed, 09 Sep 2009 21:07:15 +0000</pubDate>
		<dc:creator>Gosia Grabowska</dc:creator>
				<category><![CDATA[Certification]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Certifications]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=6939</guid>
		<description><![CDATA[
Hyper-V is becoming more and more popular in the virtual world and so is the Hyper-V certification &#8212; MCTS: Windows Server Virtualization, Configuration.
I&#8217;m not sure if many of you were aware that this certification even exists, since it&#8217;s not as popular as the other Windows Server certifications.  In fact, only a little bit over [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/applications-infrastructure-exam-70-643-certification' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification'>MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-network-infrastructure-exam-70-642' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification'>MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-active-directory-configuring-exam-70-640-certification' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Active Directory (Exam 70-640) Certification'>MCTS Demystified: What you need to know about the Server 2008 Active Directory (Exam 70-640) Certification</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-6944" title="Hyper-V Certification" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/image_2.png" alt="Hyper-V Certification" width="382" height="125" /></p>
<p>Hyper-V is becoming more and more popular in the virtual world and so is the Hyper-V certification &#8212; MCTS: Windows Server Virtualization, Configuration.</p>
<p>I&#8217;m not sure if many of you were aware that this certification even exists, since it&#8217;s not as popular as the other Windows Server certifications.  In fact, only a little bit over 2 thousand people hold the Hyper-V cert, compared to over 37, 35 and 28 thousand for <a href="http://windowsserver.trainsignal.com/server-2008-active-directory-configuring-exam-70-640-certification">Active Directory</a>, <a href="http://windowsserver.trainsignal.com/server-2008-network-infrastructure-exam-70-642">Network Infrastructure</a>, and <a href="http://windowsserver.trainsignal.com/applications-infrastructure-exam-70-643-certification">Applications Infrastructure</a> certifications, respectively.</p>
<p><img class="aligncenter size-full wp-image-6949" title="Windows Server 2008 Certs" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/09/3.jpg" alt="Windows Server 2008 Certs" width="500" height="146" /><br />
<strong>Note:</strong> The above stats are from 9/9/09; to see more current stats <a href="http://www.microsoft.com/learning/en/us/certification/cert-overview.aspx#tab5">go here</a>.</p>
<p>Well, now that you&#8217;re aware of the Hyper-V cert let me give you all the info on what you need to do to get it.</p>
<p><span id="more-6939"></span></p>
<h3>Hyper-V Exam 70-652 Details</h3>
<p>From what I heard, the number of exam questions is around 50 with approximately 90-120 minutes to complete them all. The passing score was reported to be the usual 700.</p>
<p>I hear that it has a lot more lab questions that any other MCTS exam.  Overall, however, this exam is not too difficult and with solid preparation and lots of practice you are guaranteed to ace it.</p>
<p>As always, I strongly suggest going through all the questions and answering the ones you know how to answer first.  While doing so, mark the ones that will take longer for you to answer as well as the ones you have no clue about. Once you go through all the questions and reach the final one on your first &#8220;round&#8221; go back and review the marked questions for the rest of the allotted time.</p>
<p>By using this method you will have a chance to answer all the questions you know and then spend the rest of your time on the ones that you might not be sure about. Be aware of changing your answers on the second run, though. Chances are your &#8220;gut feeling&#8221; was right and the answer you picked the first time is correct.</p>
<p>Trust me on this one, I learned the hard way <img src='http://windowsserver.trainsignal.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Hyper-V Exam 70-652 Topics</h3>
<p>There are 4 main topics on the Windows Server Virtualization, Configuring exam:</p>
<ul>
<li>Installing Hyper-V (14%)</li>
<li>Configuring and Optimizing Hyper-V (20%)</li>
<li>Deploying Virtual Machines (30%)</li>
<li>Managing and Monitoring Virtual Machines (36%)</li>
</ul>
<p>Make sure you know how to deploy, configure and manage Hyper-V machines since it accounts for nearly 2/3 of the exam questions.</p>
<p>I also found out through lots of forums and the nice people who shared their exam experiences that you need to be familiar with SCVMM08 (Systems Center, Virtual Machine Manager), clustering/quick migration requirements, how to use snapshots withing Hyper-V, Authorization Manager, iSCSI configuration for failover clustering, and versioning information for both VMs and Host Servers.</p>
<p>More details about the topics covered are included on this <a title="Windows Server Virtualization Exam" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-652&amp;locale=en-us#tab2" target="_blank">Microsoft page.</a></p>
<h3>Where to Start</h3>
<p>You need to start with a good source of information for learning the theory behind virtualization. You can either buy a book or get a training video for this.</p>
<p>Next you need to get yourself a testing environment and put the theory into practice. This should be quite easy since all you need is one decent machine on which you can run multiple virtual machines, or should I say, Hyper-V machines.</p>
<p>As far as hardware is concerned, I would suggest getting at least 4GB of RAM and at least 200GB of hard disk space. You want to be able to run a couple VMs at the same time and still have decent speed.</p>
<p>If you decide to prepare with our <a href="http://www.trainsignal.com/Hyper-V-Training-P73.aspx">Hyper-V training</a>, <a href="http://windowsserver.trainsignal.com/author/coach-culbertson">Coach</a> will show you step-by-step how to create multiple virtual machines to use for practice plus lots of other cool stuff.</p>
<h3>Don&#8217;t I Need Experience?</h3>
<p><a title="Windows Server Virtualization Exam" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-652&amp;locale=en-us#tab1" target="_blank">Microsoft</a> suggests that you have &#8220;at least one and a half years of experience working in Windows Server 2003 and/or Windows 2008 Server environments as system administrators.&#8221;  In addition it states that you should be familiar with virtualization products and technologies.&#8221;</p>
<p>This is a pretty typical suggestion from Microsoft, they want to make sure that you get enough experience with the technology before you start preparing for the exam.</p>
<p>I would like to add to that and say that if you don&#8217;t have the 1.5 years of experience you can make up some of the lost time by practicing.</p>
<p>Start by building your own virtual environment and practice, practice, practice. Break your virtual machines, fix them, and learn as much as you can. Remember that re-creating your VMs is a quick and easy fix, but that&#8217;s not the true fix; you should be able to fix them without re-creating them. Find out what went wrong so you can be a real professional in a production environment and on the job.</p>
<p>Practice is also the best way to learn the material for the exam, so make sure you&#8217;re getting enough of it.</p>
<h3>Why Do I Want to Get Hyper-V Certified?</h3>
<p>Virtualization is becoming more and more popular, which means Virtualization experts are becoming more and more in demand.</p>
<p>The Hyper-V certification will give you an edge over your competitors in job searching. As I mentioned in the beginning, there aren&#8217;t a lot of Hyper-V experts out there and this cert will give you a chance to become one.</p>
<p>By preparing for and passing the 70-652 exam you will be able to show prospective employers that you&#8217;re proficient in setting up, configuring and managing Hyper-V, which should also make you eligible for that promotion or raise you&#8217;ve been looking to score.</p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/applications-infrastructure-exam-70-643-certification' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification'>MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-network-infrastructure-exam-70-642' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification'>MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-active-directory-configuring-exam-70-640-certification' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Active Directory (Exam 70-640) Certification'>MCTS Demystified: What you need to know about the Server 2008 Active Directory (Exam 70-640) Certification</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/hyper-v-certification-exam-70-652/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MCSE vs MCITP: Is the MCSE Still Worth It?</title>
		<link>http://windowsserver.trainsignal.com/mcse-mcsa-mcitp-mcts</link>
		<comments>http://windowsserver.trainsignal.com/mcse-mcsa-mcitp-mcts#comments</comments>
		<pubDate>Wed, 26 Aug 2009 14:00:26 +0000</pubDate>
		<dc:creator>Gosia Grabowska</dc:creator>
				<category><![CDATA[Certification]]></category>
		<category><![CDATA[Enterprise Admin]]></category>
		<category><![CDATA[MCITP]]></category>
		<category><![CDATA[MCSA]]></category>
		<category><![CDATA[MCSE]]></category>
		<category><![CDATA[MCTS]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Certifications]]></category>
		<category><![CDATA[Server 2008 Training]]></category>
		<category><![CDATA[Server Admin]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=6805</guid>
		<description><![CDATA[
A lot of IT professionals as well as entry level  IT guys and gals are still confused about which Windows Server certification they should work on. 
Which one is more valuable?  Which one is going to get you a better job?  Should you get your MCSE certification or go for the new MCITP?
These are all valid [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/certification-options-for-mcse' rel='bookmark' title='Permanent Link: Dust Off Your MCSE: The New MCTS &amp; MCITP Certifications Are The Future'>Dust Off Your MCSE: The New MCTS &amp; MCITP Certifications Are The Future</a></li>
<li><a href='http://windowsserver.trainsignal.com/mcitp-server-administrator-vs-mcitp-enterprise-administrator' rel='bookmark' title='Permanent Link: What’s the difference between MCITP Certified Server Admin and Enterprise Admin?'>What’s the difference between MCITP Certified Server Admin and Enterprise Admin?</a></li>
<li><a href='http://windowsserver.trainsignal.com/why-getting-your-mcse-now-is-still-a-good-idea' rel='bookmark' title='Permanent Link: Why Getting Your MCSE Now Is Still A Good Idea'>Why Getting Your MCSE Now Is Still A Good Idea</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p><img src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/12.jpg" alt="MCSE vs MCITP" title="MCSE vs MCITP" width="500" height="220" class="aligncenter size-full wp-image-6849" /><br />
A lot of IT professionals as well as entry level  IT guys and gals are still confused about which Windows Server certification they should work on. </p>
<p>Which one is more valuable?  Which one is going to get you a better job?  Should you get your MCSE certification or go for the new MCITP?</p>
<p>These are all valid questions and they are not easy to answer. You have to keep in mind that one certification may work great for one person, and it may not work out so well for another. </p>
<p>To make the right decision, you really need to take some time, evaluate your situation and your current position, and come up with a solution that will work for you. To help you get started I would suggest to take into consideration your current job situation and ask yourself these questions:</p>
<ul>
<li> Is my company still using Server 2003?  If so, for how long?</li>
<li> Am I going to be involved with Server 2008 migration?</li>
<li> How long do I plan on staying with my current company?</li>
<li> Do I plan on getting a new job?</li>
<li> Do I want a promotion?</li>
<li> Do I want to completely change my career?</li>
</ul>
<p>All these questions (and few more that you might come up with) will help you determine which certification path to go with. But here, let me clarify some info for you guys; let’s start with Windows Server 2003.</p>
<p><span id="more-6805"></span></p>
<h2>Windows Server 2003 MCSA/MCSE</h2>
<p>The MCSA and MCSE certifications are very similar. In fact, 4 specific exams required for your MCSE will get you your MCSA in the progress. Then once you pass 3 additional exams you become MCSE certified.</p>
<p>So there are 4 exams required for the MCSA and 7 exams for the MCSE. As you can see the MCSE certification is a little more desirable than the MCSA because it&#8217;s more advanced and you&#8217;re required to know more (plus you need to pass 3 additional exams).</p>
<h3>MCSA Exam Requirements</h3>
<p>To become MCSA certified you are required to pass the following exams:</p>
<ul>
<li> <strong>Exam 70-290</strong> &#8211; Managing and Maintaining a Windows Server 2003 Environment</li>
<li> <strong>Exam 70-291</strong> &#8211; Implementing, Managing, and Maintaining a Windows Server 2003 Network Infrastructure</li>
</ul>
<p>And one of these two elective exams:</p>
<ul>
<li> <strong>Exam 70-620</strong> &#8211; TS: Configuring Microsoft Windows Vista Client</li>
<li> <strong>Exam 70-270</strong> &#8211; Installing, Configuring, and Administering Windows XP Professional</li>
</ul>
<p>Plus one additional exam, which is also an elective exam, from a list of about 20 exams to choose from. <a title="MCSA Certification" href="http://www.microsoft.com/learning/en/us/certification/mcsa.aspx#tab2" target="_blank">Here is the complete list</a> &#8212; just make sure you&#8217;re looking at the Elective Exams under MCSA on Windows Server 2003.</p>
<p>This makes it a total of 4 exams &#8212; two required and two electives &#8212; to obtain your MCSA on Windows Server 2003.</p>
<h3>MCSE Exam Requirements</h3>
<p>Once you get your MCSA you will only need to pass the following 3 exams to become MCSE Certified:</p>
<ul>
<li> <strong>Exam 70-293</strong> &#8211; Planning and Maintaining a Windows Server 2003 Network Infrastructure</li>
<li> <strong>Exam 70-294</strong> &#8211; Planning, Implementing, and Maintaining a Windows Server 2003 Active Directory Infrastructure</li>
</ul>
<p>And one of these two:</p>
<ul>
<li> <strong>Exam 70-297</strong> &#8211; Designing a Windows Server 2003 Active Directory and Network Infrastructure</li>
<li> <strong>Exam 70-298</strong> &#8211; Designing Security for a Windows Server 2003 Network</li>
</ul>
<p>For more information on the MCSE requirements, exams and their objectives, check out <a title="MCSE Certification" href="http://www.microsoft.com/learning/en/us/certification/mcse.aspx#tab2" target="_blank">this page</a>.</p>
<h2>Windows Server 2008 MCTS/MCITP</h2>
<p>Just like with MCSA and MCSE, the MCTS and MCITP certifications are also closely connected. You get one certification on your way to another, except that you earn your MCTS title after passing only a single exam. <a title="MCTS Exams" href="http://www.microsoft.com/learning/en/us/certification/mcts.aspx#tab2" target="_blank">This is the complete list</a> of the Microsoft exams that you can take to earn your MCTS credential.</p>
<p>It&#8217;s also good to know that by passing two of the MCTS exams, you get two MCTS certifications with two  specific titles. For example, if you pass the <em>Windows Vista &#8211; Configuration (70-620) Exam</em> and the <em>Windows Server 2008 Active Directory Configuration (70-640) Exam</em> you have two MCTS certifications:</p>
<ol>
<li>MCTS: Windows Vista, Configuration</li>
<li>MCTS: Windows Server 2008 Active Directory, Configuration</li>
</ol>
<p>And you can continue to earn your MCTS certifications as you pass additional MCTS exams.</p>
<p>So &#8230; how do you earn your MCITP? </p>
<h3>MCITP Exam Requirements</h3>
<p>Well first let me mention that there are two MCITP certifications for Windows Server 2008: <strong>MCITP: Server Administrator</strong> and <strong>MCITP: Enterprise  Administrator</strong>. </p>
<p>For the MCITP Server Administrator Certification you will need to pass:</p>
<ul>
<li><strong>Exam 70-640</strong> &#8211; TS: Windows Server 2008 Active Directory, Configuring</li>
<li><strong>Exam 70-642</strong> &#8211; TS: Windows Server 2008 Network Infrastructure, Configuring</li>
<li><strong>Exam 70-646</strong> &#8211; Pro: Windows Server 2008, Server Administrator</li>
</ul>
<p>For the MCITP Enterprise Administrator Certification you will need to pass:</p>
<ul>
<li><strong>Exam 70-640</strong> &#8211; TS: Windows Server 2008 Active Directory, Configuring</li>
<li><strong>Exam 70-642</strong> &#8211; TS: Windows Server 2008 Network Infrastructure, Configuring</li>
<li><strong>Exam 70-643</strong> &#8211; TS: Windows Server 2008 Applications Infrastructure, Configuring</li>
</ul>
<p>Plus one of these:</p>
<ul>
<li><strong>Exam 70-620</strong> &#8211; TS: Configuring Microsoft Windows Vista Client</li>
<li><strong>Exam 70-624</strong> &#8211; TS: Deploying and Maintaining Windows Vista Client and 2007 Microsoft Office System Desktops</li>
</ul>
<p>And the final exam:</p>
<ul>
<li><strong>Exam 70-647</strong> &#8211; Pro: Windows Server 2008, Enterprise Administrator</li>
</ul>
<p>Notice that exams 70-640 and 70-642 are required for both the Server Admin and Enterprise Admin certs (so it&#8217;s probably wise to start with those two exams). The MCITP Enterprise Administrator, like the MCSE, is a bit more advanced and as you can tell, it requires more knowledge and more testing.</p>
<p>If you&#8217;re interested in learning more about the two Server 2008 MCITP Certs check out:</p>
<ul>
<li><a href="http://windowsserver.trainsignal.com/server-2008-mcitp-certifications">Video on Server 2008 MCITP Certifications</a></li>
<li><a href="http://windowsserver.trainsignal.com/mcitp-server-administrator-vs-mcitp-enterprise-administrator">What’s the difference between MCITP Certified Server Admin and Enterprise Admin?</a></li>
<li><a href="http://www.trainsignaltraining.com/how-to-become-a-microsoft-certified-it-professional-mcitp/2009-02-03/">How To Become a Microsoft Certified IT Professional (MCITP) Server Administrator</a></li>
</ul>
<h3>The &#8220;Other&#8221; MCITP Certifications</h3>
<p>I know this is a little off topic, since we are talking about Windows Server certification paths &#8230; but I thought I&#8217;d mention it anyway. </p>
<p>You can get MCITP certified in SQL Server, Exchange, Windows Client and Microsoft Office Project Server &#8212; not just Windows Server. There are several options when it comes to earning your MCITP and it really depends on your personal interests and what you would like to do in the future. </p>
<p>Do you like doing support work and see yourself working at a Help Desk? (I worked at a Help Desk and really enjoyed helping people, it was also a really good experience for me.) If so, then the MCITP: Enterprise Support Technician might be the right choice for you. </p>
<p>If you enjoy working with databases then consider one of the SQL Server MCITP&#8217;s &#8212; there are 6 to choose from!</p>
<p>There are even two choices for your Server 2008 MCITP cert, that I mentioned above, so it&#8217;s a good idea to learn as much as you can about the different MCITP certifications before you decide which one is right for you.</p>
<p>Check out the <a href="http://www.microsoft.com/learning/en/us/certification/mcitp.aspx#tab2" target="_blank">MCITP list from Microsoft</a> to learn more about your choices when it comes to earning your MCITP certification. </p>
<h2>The Final Question: MCSE or MCITP?</h2>
<h3>Option 1: MCITP</h3>
<p>To make the right decision, first consider your situation.</p>
<p>If you only passed one of the required MCSE exams and you don&#8217;t currently work with Server 2003 (or plan on working with it in the near future) then it might be more advantageous for you to switch over to Server 2008 and start working on your MCITP.</p>
<h3>Option 2: MCSE</h3>
<p>However, there are many people that already started working towards their MCSE but, for whatever reason didn&#8217;t complete it. Should they just abandon their MCSE path and switch to the new MCITP?  Well, it depends.</p>
<p>Think about the questions I posed at the beginning of this article and consider how many exams you still need to complete to earn your MCSE. </p>
<p>At this point it becomes a no brainer &#8212; if you already passed 5 of the exams and have only 2 left then you might as well finish your MCSE, since you have already invested a lot of time and effort (not to mention money) on this certification path.</p>
<h3>Option 3: MCSE &amp; MCITP</h3>
<p>There are advantages to going this route &#8212; you earn your MCSE on Server 2003 and then take the additional upgrade exams to earn your MCITP on Server 2008.</p>
<p>The upgrade paths are an awesome shortcut. With an MCSE on Server 2003 (sorry Server 2000 doesn&#8217;t qualify for this upgrade) you can earn 3 MCTS certifications by passing a single upgrade exam: </p>
<ul>
<li><strong>Exam 70-649</strong> &#8211; TS: Upgrading Your MCSE on Windows Server 2003 to Windows Server 2008, Technology Specialist.</li>
</ul>
<p>After that you need only one exam to earn your MCITP Server Admin:</p>
<ul>
<li><strong>Exam 70-646</strong> &#8211; PRO: Windows Server 2008, Server Administrator</li>
</ul>
<p>Or two exams to earn your MCITP Enterprise Admin:</p>
<ul>
<li><strong>Exam 70-620</strong> &#8211; TS: Configuring Windows Vista Client</li>
<p>or</p>
<li><strong>Exam 70-624</strong> &#8211; TS: Deploying and Maintaining Windows Vista Client and 2007 Microsoft Office System Desktops</li>
<p>and</p>
<li><strong>Exam 70-647</strong> &#8211;  PRO: Windows Server 2008, Enterprise Administrator</li>
</ul>
<p><a href="http://www.microsoft.com/learning/en/us/certification/mcse.aspx#tab4" target="_blank">Here&#8217;s some additional information</a> on upgrading your MCSE to MCITP on Server 2008.</p>
<h2>Where to Find MCSE and MCITP Training?</h2>
<p>Whatever your decision is going to be &#8212; whether you want to finish up your MCSE or go for your MCITP &#8212; we got you covered! </p>
<p>We have training videos that will help you earn both your MCSE and MCITP certifications. We also have training for those of you who are interested in the upgrade path from MCSA/MCSE on Server 2003. </p>
<p>I took the 70-640 and 70-620 exams after watching our videos, just to test our instructors (I know, I&#8217;m evil <img src='http://windowsserver.trainsignal.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) and I passed on first try &#8212; and so can you!</p>
<p>Here are links to all of our Windows Server 2003 and 2008 training videos:</p>
<p><strong>MCSA/MCSE Server 2003 Training:</strong></p>
<ul>
<li><a href="http://www.trainsignal.com/Windows-Server-2003-Active-Directory-Training-P15.aspx">Windows Server 2003 Active Directory Training</a></li>
<li><a href="http://www.trainsignal.com/Windows-Server-2003-Network-Infrastructure-Training-P16.aspx">Windows Server 2003 Network Infrastructure Training</a></li>
<li><a href="http://www.trainsignal.com/Windows-Server-2003-Security-Training-P17.aspx">Windows Server 2003 Security Training</a></li>
</ul>
<p><strong>MCTS/MCITP Server 2008 Training:</strong></p>
<ul>
<li><a href="http://www.trainsignal.com/Windows-Server-2008-MCITP-Server-Administrator-Training-Package-P59.aspx">Windows Server 2008 MCITP Server Administrator Training Package</a></li>
<li><a href="http://www.trainsignal.com/Windows-Server-2008-MCITP-Enterprise-Administrator-Training-Package-P66.aspx">Windows Server 2008 MCITP Enterprise Administrator Training Package</a></li>
<li><a href="http://www.trainsignal.com/Upgrading-Your-MCSE-on-Windows-Server-2003-to-Windows-Server-2008-MCTS-P60.aspx">Upgrading Your MCSE on Server 2003 to Server 2008 MCTS</a></li>
</ul>
<h2>Time to Decide and Get Windows Server Certified!</h2>
<p><em><strong>No more excuses! No more procrastinating! No more wasting time!</strong></em> </p>
<p>The new MCITP&#8217;s have been out for over a year now and it&#8217;s time for you to take action &#8212; either finish up what you already started on your MCSE path (then take the upgrade exams to earn your MCITP) or, if you think that completing your MCSE is a waste of time then start working toward your MCITP.  Either way, it&#8217;s time to make a decision and get certified.</p>
<p>I hope that my article will be able to help you make the right decision and remember, you can always post your specific situation in the comments below and I will try to help you as best as I can! Good luck!</p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/certification-options-for-mcse' rel='bookmark' title='Permanent Link: Dust Off Your MCSE: The New MCTS &amp; MCITP Certifications Are The Future'>Dust Off Your MCSE: The New MCTS &amp; MCITP Certifications Are The Future</a></li>
<li><a href='http://windowsserver.trainsignal.com/mcitp-server-administrator-vs-mcitp-enterprise-administrator' rel='bookmark' title='Permanent Link: What’s the difference between MCITP Certified Server Admin and Enterprise Admin?'>What’s the difference between MCITP Certified Server Admin and Enterprise Admin?</a></li>
<li><a href='http://windowsserver.trainsignal.com/why-getting-your-mcse-now-is-still-a-good-idea' rel='bookmark' title='Permanent Link: Why Getting Your MCSE Now Is Still A Good Idea'>Why Getting Your MCSE Now Is Still A Good Idea</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/mcse-mcsa-mcitp-mcts/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>My Journey from Windows XP to Windows 7</title>
		<link>http://windowsserver.trainsignal.com/windows-7-custom-install-boot-from-usb</link>
		<comments>http://windowsserver.trainsignal.com/windows-7-custom-install-boot-from-usb#comments</comments>
		<pubDate>Mon, 10 Aug 2009 22:09:55 +0000</pubDate>
		<dc:creator>Lisa Szpunar</dc:creator>
				<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Custom Install]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=6682</guid>
		<description><![CDATA[How many computers does it take for Lisa to install Windows 7 on her one XP laptop? Find out! It was an unnecessarily long journey and I even survived to tell the tale.
Windows 7 Minimum Hardware Requirements

1 GHz or faster 32-bit (x86) or 64-bit (x64) processor
1 GB of RAM (32-bit)/2 GB of RAM (64-bit)
16 GB [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/upgrade-from-xp-to-windows-7' rel='bookmark' title='Permanent Link: Windows 7 &#8212; Downgradable But Not Upgradable'>Windows 7 &#8212; Downgradable But Not Upgradable</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-7-redirecting-documents-folder' rel='bookmark' title='Permanent Link: How to Redirect Your Documents Folder in Windows 7'>How to Redirect Your Documents Folder in Windows 7</a></li>
<li><a href='http://windowsserver.trainsignal.com/window-7-server-2008-r2-rtm' rel='bookmark' title='Permanent Link: W00T! Window 7 and Server 2008 R2 RTM'>W00T! Window 7 and Server 2008 R2 RTM</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p>How many computers does it take for Lisa to install Windows 7 on her one XP laptop? Find out! It was an unnecessarily long journey and I even survived to tell the tale.</p>
<h2>Windows 7 Minimum Hardware Requirements</h2>
<ul>
<li>1 GHz or faster 32-bit (x86) or 64-bit (x64) processor</li>
<li>1 GB of RAM (32-bit)/2 GB of RAM (64-bit)</li>
<li>16 GB of available disk space (32-bit)/20 GB (64-bit)</li>
<li>DirectX 9 graphics device with Windows Display Driver Model 1.0  or higher driver</li>
</ul>
<p>These are the big 4 requirements but Microsoft has a <a title="Windows 7 System Requirements" href="http://windows.microsoft.com/systemrequirements" target="_blank">list of additional feature based requirements</a> also.  </p>
<p>Looking at this screenshot of my Toshiba Tecra M3 laptop’s hardware specifications you can see that I am in pretty good shape for general hardware requirements. There is also a tool called the Windows 7 Upgrade Advisor (only a Beta version is currently available) that will tell me if all my devises will work with Windows 7 as well.</p>
<p><img class="aligncenter size-full wp-image-6685" title="Toshiba XP System Specs" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/OldXPSystem.jpg" alt="Toshiba XP System Specs" width="550" height="471" /><span id="more-6682"></span></p>
<h2>The Windows 7 Upgrade Advisor</h2>
<p>I downloaded and installed the<a title="Windows 7 Upgrade Advisor" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=1b544e90-7659-4bd9-9e51-2497c146af15" target="_blank"> Windows 7 Upgrade Advisor</a>. This tool also requires .NET framework 2.0 or higher. I didn’t have it so I was automatically prompted to download and install it before continuing with the upgrade advisor install. </p>
<p>The upgrade advisor told me to make sure I install all my devices before running the tool so that they can be checked for compatibility. That reminds me. What about my USB adaptor for my Play Station controller? I better still be able to use that.</p>
<p>Success! I am Windows 7 ready! Sort of. While there was no mention of my game controller this message was given for my wireless card:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-6716" style="border: black 1px solid;" title="Upgrade Advisor NIC Warning" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/NetworkCardWarning.jpg" alt="Upgrade Advisor NIC Warning" width="500" height="83" /></p>
<p>I wonder why it wants me to download the driver upgrade first before installing Windows 7. If I download it now I would have to have an external device to save it to (I do have one but that’s not the point).  I decided to just ignore this advice and see it if bites me later.</p>
<p>There are several programs that the upgrade advisor is asking me to uninstall before upgrading to Windows 7. I will not be upgrading to 7 from XP as that is impossible. So I don’t need to bother uninstalling anything – everything will be wiped anyway. Did I mention that this tool is a beta?</p>
<h2>File Backup</h2>
<p>All I need to backup is My Documents, my browser favorites, and my Thunderbird profile. With those all safely copied and pasted onto a USB drive, I am ready to go.</p>
<h2>Install Windows 7</h2>
<p>I waited all morning on Thursday for the RTM downloads to show up on TechNet. Sometime around noon (CDT) I hit refresh and there they were &#8211; the  versions of Windows 7 in all their shining glory. I chose the 32 bit version of 7 Ultimate and started the download. </p>
<p>I also got a key from TechNet and made sure it was saved in a .txt file on my USB drive. What? Did you expect me physically to write it down? How barbaric.</p>
<p>After 3 hours and still no completed download I saw a tweet form <a title="Keith Combs' Blahg" href="http://blogs.technet.com/keithcombs/" target="_blank">Keith Combs</a> with a tip to use the <a title="Top Downloads" href="https://technet.microsoft.com/en-us/subscriptions/securedownloads/dd692862.aspx" target="_blank">Akamai Technologies Download Manager Browser add-on at TechNet’s Top Downloads</a>.  This was much faster!</p>
<p><img class="aligncenter size-full wp-image-6717" title="Akamai Download Manager" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/AkamaiDownload.jpg" alt="Akamai Download Manager" width="500" height="193" /></p>
<p>My second attempt at downloading the ISO file finished in only 42 minutes. However, and this is a huge however – I simultaneously discovered that my DVD/CD-ROM drive on the Toshiba does not work. When was the last time I even tried to use it? I can’t be certain. This puts a damper on things.</p>
<p>Well, if I am going to embark on trying to make a bootable USB drive I might as well make it for my netbook instead and just get the Toshiba&#8217;s DVD/CD-ROM fixed/replaced. Now the focus switches to my Acer Aspire One A150X. This means a quick trip back to TechNet to get Windows 7 Home Premium instead of Ultimate (a new key too).</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-6718" title="Acer Aspire One Netbook" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/AcerNetbook.jpg" alt="Acer Aspire One Netbook" width="400" height="262" /></p>
<h2>Create a Bootable USB to Install Windows 7 From</h2>
<p>After some Googling I found a <a title="How To Make Bootable USB" href="http://www.intowindows.com/bootable-usb/" target="_blank">guide at IntoWindows.com for making a bootable USB drive</a>.  This guide shows the steps for making the drive bootable using Vista so I used a different (yes a third) computer to actually create the bootable drive.</p>
<p>I was using a 400GB external HDD instead of a little USB key. Therefore the line in the instructions that says &#8220;Format process may take few seconds&#8221; was a wee bit of an understatement. After an hour and a half the format was only at 18%. </p>
<p>Instead, I just used the normal Windows GIU method to do a quick format after assigning the drive a letter. This time, after an <em>actual</em> few seconds passed I just went back to the command prompt and continued on to step number 6. This worked for me just fine, but I would suggest sticking to the written directions if possible.</p>
<p><img class="aligncenter size-full wp-image-6719" title="Bootable USB cmd Screenshot" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/cmdScreenshot.jpg" alt="Bootable USB cmd Screenshot" width="500" height="507" /></p>
<p>At this point I was getting impatient. I didn’t bother with the Upgrade Advisor, I just checked to make sure the netbook had the minimum hardware requirements (it does), backed up my needed files, and went for it.</p>
<p>My first trip into the BIOS to change the boot order did not list USB as an option – not all computers can do this. However, after trying it again &#8230; with the USB drive actually plugged in to the computer, the option was available.</p>
<p><img class="aligncenter size-full wp-image-6720" title="Acer BIOS Boot Menu" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/BiosBootMenu.jpg" alt="Acer BIOS Boot Menu" width="500" height="213" /></p>
<h2>Custom Windows 7 Installation</h2>
<p>I then followed the install wizard as it did its business:<br />
A custom install is a clean install.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-6721" title="Windows 7 Custom Install" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/CustomInstall7.jpg" alt="CustomInstall7" width="500" height="296" /></p>
<p>I left the XP restore partition on the netbook (hey you never know), and chose not to further partition the drive. The third drive you see here is actually the bootable USB hard drive.</p>
<p><img class="aligncenter size-full wp-image-6722" title="Partition HDD" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/Partition.jpg" alt="Partition HDD" width="500" height="294" /></p>
<p>Besides asking for a computer name, username, time zone, and other expected configurations &#8212; the custom install asked me for my network information.  You could always skip this step if you want, but why not set it up now.</p>
<p><img class="aligncenter size-full wp-image-6723" title="Join a Network During Install Wizard" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/NetworkJoin.jpg" alt="Join a Network During Install Wizard" width="500" height="414" /></p>
<p>Tada! Windows 7 on my netbook! That was easy.</p>
<p><img class="aligncenter size-full wp-image-6724" title="Window 7 Desktop" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/08/7Desktop.jpg" alt="Window 7 Desktop" width="500" height="288" /></p>
<p>All that is left is to get it configured just how I want. Sliding scale UAC controls here I come! Windows 7 sure has some wacky standard desktop backgrounds available.</p>
<h2>So how many computers does it take for Lisa to install Windows 7?</h2>
<p>The answer is 4. I know you probably only counted 3. In a momentary act of stupidity, I actually tried another ridiculously old machine I have that is running Windows ME. Needless to say it wouldn’t even open the Windows 7 install disk.  So the final tally is:</p>
<ul>
<li>2 broken/obsolete computers that were nothing but distractions from my true quest (you can’t polish a turd)</li>
<li>1 current Vista machine on which to create the bootable USB drive</li>
<li>1 slick little Acer netbook that eventually did run 7</li>
</ul>
<p>Oh and don’t forget the 400GB external hard drive and my trusty Nikon D200 for all the awesome photos of the install.</p>
<p>Well, I hope your upgrade/custom install journey goes significantly better than mine did. I guess it was worth it in the end.</p>
<h3>Share Your Journey: How did your Windows 7 install turn out?</h3>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/upgrade-from-xp-to-windows-7' rel='bookmark' title='Permanent Link: Windows 7 &#8212; Downgradable But Not Upgradable'>Windows 7 &#8212; Downgradable But Not Upgradable</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-7-redirecting-documents-folder' rel='bookmark' title='Permanent Link: How to Redirect Your Documents Folder in Windows 7'>How to Redirect Your Documents Folder in Windows 7</a></li>
<li><a href='http://windowsserver.trainsignal.com/window-7-server-2008-r2-rtm' rel='bookmark' title='Permanent Link: W00T! Window 7 and Server 2008 R2 RTM'>W00T! Window 7 and Server 2008 R2 RTM</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/windows-7-custom-install-boot-from-usb/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Get SQL Certified: What you need to know about the SQL Server 2008 Developer (70-433) Exam</title>
		<link>http://windowsserver.trainsignal.com/sql-server-2008-developer-70-433-exam</link>
		<comments>http://windowsserver.trainsignal.com/sql-server-2008-developer-70-433-exam#comments</comments>
		<pubDate>Tue, 04 Aug 2009 14:00:52 +0000</pubDate>
		<dc:creator>Gosia Grabowska</dc:creator>
				<category><![CDATA[Certification]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Certifications]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=6657</guid>
		<description><![CDATA[
In my last post about SQL Server Certification we talked about the SQL Server 2008 Administrator (70-432) Exam.  
I also told you that there are 3 different types of SQL certifications:

Implementation and Maintenance
Database Development
Business Intelligence Development and Maintenance

Since exam 70-432 focuses on Implementation and Maintenance and we already covered it, now it&#8217;s time to talk [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/microsoft-sql-server-2008-exam-70-432' rel='bookmark' title='Permanent Link: Get SQL Server Certified: What you need to know about the SQL Server 2008 Administrator (70-432) Exam'>Get SQL Server Certified: What you need to know about the SQL Server 2008 Administrator (70-432) Exam</a></li>
<li><a href='http://windowsserver.trainsignal.com/applications-infrastructure-exam-70-643-certification' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification'>MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-network-infrastructure-exam-70-642' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification'>MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<p><center><img title="SQL Server Certification" src="http://windowsserver.trainsignal.com/wp-content/uploads/2009/05/sqlserverlogo.jpg" alt="SQL Server Certification" width="284" height="63" /></center></p>
<p>In my last post about SQL Server Certification we talked about the <a title="SQL Server Administrator Exam" href="http://windowsserver.trainsignal.com/microsoft-sql-server-2008-exam-70-432">SQL Server 2008 <strong>Administrator</strong> (70-432) Exam</a>.  </p>
<p>I also told you that there are 3 different types of SQL certifications:</p>
<ul>
<li>Implementation and Maintenance</li>
<li>Database Development</li>
<li>Business Intelligence Development and Maintenance</li>
</ul>
<p>Since exam 70-432 focuses on Implementation and Maintenance and we already covered it, now it&#8217;s time to talk about the second type of SQL certification: Database Development. </p>
<p>You can obtain the <strong>MCTS: SQL Server 2008, Database Development</strong> certification by passing a single exam: 70-433 Microsoft SQL Server 2008, Database Development.</p>
<p><span id="more-6657"></span></p>
<h3>70-433 Exam Details</h3>
<p>As we all know, Microsoft doesn&#8217;t like to share the details of their exams with anyone. They change their exams periodically to throw people off and keep them on their toes. I was able to get some info about the 70-433 exam but keep in mind that this information might change by the time you read this.</p>
<p>I don&#8217;t think it&#8217;s going to be completely different, but some things like the total number of questions, or the depth of coverage for specific topics might be different. So just keep that in mind when you are preparing for this exam, ok?</p>
<p>I think the best news is &#8212; you do not need any prerequisites to take this exam. This is an entry level exam for a database developer.  You will receive your MCTS status after passing this single exam.</p>
<p>The <a title="MCTS - Database Development" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-433&amp;locale=en-us" target="_blank">Microsoft Learning</a> site states that anyone who wants to take this exam should be an IT professional who &#8220;works in jobs in which database development is their main area of responsibility, or they work in environments in which databases are central to their primary job roles. These job roles include the following:</p>
<ul>
<li>IT generalists who work in environments in which SQL Server 2008 is part of an overall solution</li>
<li>IT professionals who manage systems that run SQL Server 2008</li>
<li>Developers who build applications that use SQL Server 2008</li>
<li>IT professionals who work with third-party applications that are built on SQL Server 2008&#8243;</li>
</ul>
<p>Does that mean you can&#8217;t take this exam if you are just entering the field.  Nope &#8212; nobody is going to ask you where you work of what your title is if you go to take the exam, so don&#8217;t worry. If you have the desire to get the SQL Server Developer cert then go for it!</p>
<p>I heard that there are about 60 questions for this exam with 3 hours to complete it.  This might not be 100% accurate however, as the person who took this exam doesn&#8217;t remember exactly.  (Sorry guys, I guess we need more certified SQL developers out there so I can bother them with my questions. If you do find exact numbers please share them in the comments with everyone.)</p>
<p>The passing score is the usual 700.  I say, &#8220;usual&#8221; because most of Microsoft exams have a passing score of 700 &#8212; so that&#8217;s easy to remember. From what I heard, this exam isn&#8217;t too difficult; you should be able to pass it after adequately preparing for it.</p>
<h3>70-433 Exam Topics</h3>
<p>The following topics are covered in this particular exam:</p>
<ul>
<li> Implementing Tables and Views (14 percent)</li>
<li> Implementing Programming Objects (16 percent)</li>
<li> Working with Query Fundamentals (21 percent)</li>
<li> Applying Additional Query Techniques (15 percent)</li>
<li> Working with Additional SQL Server Components (11 percent)</li>
<li> Working with XML Data (12 percent)</li>
<li> Gathering Performance Information (11 percent)</li>
</ul>
<p>There is also a detailed version of this list at <a title="MCTS - Database Development" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-433&amp;locale=en-us#tab2" target="_blank">Microsoft Learning.</a> It has a list of subtopics and other detailed information for this exam.</p>
<h3>Where to Start?</h3>
<p>Like with any other exam preparation I would start by getting some type of training material: a book, a training video or singing up for an instructor lead class.  You will get a better understanding of SQL databases with some previous database experience.  What you need is basic knowledge of what a database is and how it functions. </p>
<p>If you are a complete n00b to SQL and are interested in learning the basics before studying for the developer exam, check out our <a title="Free SQL 101 Training" href="http://www.trainsignaltraining.com/free-sql-server-training-videos/2009-05-28/">free SQL 101 training videos</a> &#8212; they are really good (I reviewed them all so you can trust me).</p>
<h3>How About Experience?</h3>
<p>Well, sure experience is great.  But how are you supposed to get hands-on experience with SQL when you are trying to get into the field?  </p>
<p>Easy &#8212; you get your own server, install a <a href="http://www.microsoft.com/sqlserver/2008/en/us/try-it.aspx" target="_blank">free trial version of SQL Server 2008</a> and practice, practice, and then practice some more.  </p>
<p>Follow examples from the book or video that you&#8217;re learning from and do them on your server. Make sure to break something and then try to fix it. Don&#8217;t just reinstall SQL, put your troubleshooting skills to the test and see if you can fix &#8216;em.  That will be extremely helpful in your position as a SQL Developer since there is no way you can just re-install the database everyone is working on.</p>
<h3>Do I Need This Certification?</h3>
<p>Certification is not everything; in my opinion, you need the knowledge more than your certification. The cert will however be beneficial if you&#8217;re trying to get a job as a SQL Server developer. So since you are going after the knowledge then why not get the proof that you know your stuff.</p>
<h3>Does Train Signal have SQL Database Developer Training?</h3>
<p>At the moment, we are very close to having the complete SQL Server Developer training available.  </p>
<p>I am currently working with <a href="http://www.trainsignal.com/SQL-Server-2008-Administration-P69.aspx">Mel Haynes, our SQL Server Instructor</a> on all the final videos that are going to be included in this course. We are very close &#8212; cross your fingers so that we can have it released in early September!</p>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/microsoft-sql-server-2008-exam-70-432' rel='bookmark' title='Permanent Link: Get SQL Server Certified: What you need to know about the SQL Server 2008 Administrator (70-432) Exam'>Get SQL Server Certified: What you need to know about the SQL Server 2008 Administrator (70-432) Exam</a></li>
<li><a href='http://windowsserver.trainsignal.com/applications-infrastructure-exam-70-643-certification' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification'>MCTS Demystified: What you need to know about the Server 2008 Applications Infrastructure (exam 70-643) Certification</a></li>
<li><a href='http://windowsserver.trainsignal.com/server-2008-network-infrastructure-exam-70-642' rel='bookmark' title='Permanent Link: MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification'>MCTS Demystified: What you need to know about the Server 2008 Network Infrastructure (exam 70-642) Certification</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/sql-server-2008-developer-70-433-exam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don’t be Afraid of PowerShell</title>
		<link>http://windowsserver.trainsignal.com/dont-be-afraid-of-windowspowershell</link>
		<comments>http://windowsserver.trainsignal.com/dont-be-afraid-of-windowspowershell#comments</comments>
		<pubDate>Sat, 01 Aug 2009 00:00:54 +0000</pubDate>
		<dc:creator>Lisa Szpunar</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Command Shell]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell Scripting]]></category>
		<category><![CDATA[Server Admin]]></category>

		<guid isPermaLink="false">http://windowsserver.trainsignal.com/?p=6626</guid>
		<description><![CDATA[What is PowerShell?
PowerShell is Microsoft’s newish extensible scripting language and corresponding command line shell. PowerShell was specifically made for IT professionals to achieve greater productivity and control system administration more easily. 
What PowerShell Can Help You Do
The thing is, PowerShell can do pretty much anything except walk your dog for you. You can even check the [...]

<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 1'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 1</a></li>
<li><a href='http://windowsserver.trainsignal.com/ad-powershell-scripts-management-tool' rel='bookmark' title='Permanent Link: Active Directory PowerShell Scripts Management Tool For Admins'>Active Directory PowerShell Scripts Management Tool For Admins</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell-2' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 2'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 2</a></li>
</ul></h3>]]></description>
			<content:encoded><![CDATA[<h2>What is PowerShell?</h2>
<p>PowerShell is Microsoft’s newish extensible scripting language and corresponding command line shell. PowerShell was specifically made for IT professionals to achieve greater productivity and control system administration more easily. </p>
<h2>What PowerShell Can Help You Do</h2>
<p>The thing is, PowerShell can do pretty much anything except walk your dog for you. You can even check the date and time if you really wanted to. I guess you could stop using the command line all together and do all your cmd tasks from within the PowerShell shell. </p>
<p>However, the real fun comes in when you can use PowerShell to make your sysadmin life easier. Here are a few random examples:</p>
<ul>
<li>Inventory your servers like what each has, the free memory, what service pack it is running, and so on.</li>
<p></p>
<li>Add multiple users at once to your AD and then give them all a mailbox in Exchange.</li>
<p></p>
<li>Back up and sync certain files then email yourself a corresponding log file&#8230;every night.</li>
<p></p>
<li>Test out those scary commands before committing to them using the <em>Whatif</em> feature.</li>
<p></p>
<li>And maybe the most compelling thing: You know how in Server 2008 R2 you can recover an AD object from the recycle bin after you have – oops – deleted it? Well you won’t find that option anywhere in the GUI. You need PowerShell to do it. If that isn’t a reason to give PowerShell a try then I don’t know what is!</li>
</ul>
<p><span id="more-6626"></span></p>
<h2>For the Newbies</h2>
<p>Good News! You don’t need any prior programming experience to use PowerShell &#8212; it is that intuitive. But, just so we are on the same page here is a short vocab lesson:</p>
<ul>
<li><strong>Shell</strong> – What you the user actually interacts with. Either a command line or a GUI (graphical user interface).</li>
<p></p>
<li><strong>Extensible</strong> – The ability of a system to grow and change as needed.</li>
<p></p>
<li><strong>Scripting Language</strong> – Well, there are numerous debates going on all over creation about the difference between a programming language and a scripting language. You don’t really need to understand the specifics to understand that PowerShell is a language that you use to do administrative tasks. Who cares whether it is interpreted or compiled?</li>
<p></p>
<li><strong>cmdlets</strong> – Pronounced <em>command-lets</em>. Cmdlets are simple tools that can be used separately, but their power is realized when you combine these simple tools to perform complex tasks. Microsoft provides buckets of built-in cmdlets  but you can write your own if you see fit.</li>
</ul>
<h2>For the People with Programming or Unix Experience</h2>
<p>Not surprisingly PowerShell has all the comforts of home: man pages, aliases, wildcards, and pipelines; if statements, recursion, and loops.</p>
<p>If you have worked with VB or WHS then you should be able to make the translation pretty easily. There is even <a title="The VBScript-to-Windows PowerShell Conversion Guide" href="http://www.microsoft.com/technet/scriptcenter/topics/winpsh/convert/default.mspx" target="_blank">help for translating your existing VB scripts to PowerShell</a>.</p>
<h2>PowerShell Resources to Get You Started</h2>
<ol>
<li><a title="Take Command of Server 2008 with Windows PowerShell" href="http://windowsserver.trainsignal.com/windows-server-2008-powershell">Take Command of Server 2008 with PowerShell</a> &#8212; a short series of articles that provide a good introduction to PowerShell</li>
<p></p>
<li><a title="PowerShell FAQ" href="http://www.microsoft.com/windowsserver2008/en/us/powershell-faq.aspx">PowerShell FAQ</a> provided by Microsoft </li>
<p></p>
<li><a title"Professor PowerShell" href="http://mcpmag.com/articles/list/prof-powershell.aspx">Professor PowerShell</a> Jeff Hick&#8217;s educational column on MCPmag.com</a></li>
<p></p>
<li><a title="Windows PowerShell Owners Manual" href="http://www.microsoft.com/technet/scriptcenter/topics/winpsh/manual/default.mspx">Windows PowerShell Owners Manual</a> a free guide to getting started with PowerShell</li>
<p></p>
<li><a title="Scripting with Windows PowerShell" href="http://technet.microsoft.com/en-us/scriptcenter/dd742419.aspx">Scripting with Windows PowerShell</a> a list of resources for sysadmins interested in learning about PowerShell</li>
<p></p>
<li><a title="Windows PowerShell Blog" href="http://blogs.msdn.com/powershell/default.aspx">Windows PowerShell Blog</a> with information about the latest advancements in PowerShell</li>
<p></p>
<li><a title="Windows PowerShell Cookbook" href="http://www.amazon.com/Windows-PowerShell-Cookbook-Scripting-Microsofts/dp/0596801505/ref=sr_1_1?s=books&#038;ie=UTF8&#038;qid=1282320870&#038;sr=1-1">Windows PowerShell Cookbook</a> providing you with recipes to do specific tasks with PowerShell.</li>
<p></p>
<li><a href="http://www.amazon.com/Windows-PowerShell-2-0-Don-Jones/dp/0982131429">Windows PowerShell 2.0</a> will teach you just about everything you ever wanted to know about PowerShell (and more)</li>
</ol>
<h2> Good luck!</h2>


<h3>Related posts:<ul><li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 1'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 1</a></li>
<li><a href='http://windowsserver.trainsignal.com/ad-powershell-scripts-management-tool' rel='bookmark' title='Permanent Link: Active Directory PowerShell Scripts Management Tool For Admins'>Active Directory PowerShell Scripts Management Tool For Admins</a></li>
<li><a href='http://windowsserver.trainsignal.com/windows-server-2008-powershell-2' rel='bookmark' title='Permanent Link: Take Command of Server 2008 with Windows PowerShell &#8211; Part 2'>Take Command of Server 2008 with Windows PowerShell &#8211; Part 2</a></li>
</ul></h3>]]></content:encoded>
			<wfw:commentRss>http://windowsserver.trainsignal.com/dont-be-afraid-of-windowspowershell/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
