<?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>Innovative Technology Weblog</title>
	<atom:link href="http://www.buit.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.buit.org</link>
	<description>Innovative Technology presented by Innovative People</description>
	<lastBuildDate>Thu, 19 Aug 2010 14:08:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>HOWTO: Bitlocker Status Reporting in SCCM 2007</title>
		<link>http://www.buit.org/2010/08/18/howto-bitlocker-status-reporting-in-sccm-2007/</link>
		<comments>http://www.buit.org/2010/08/18/howto-bitlocker-status-reporting-in-sccm-2007/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 12:27:53 +0000</pubDate>
		<dc:creator>dvanderuit</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Bitlocker]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=659</guid>
		<description><![CDATA[I recently had to come up with a solution that will enable administrators to build reports for client&#8217;s bitlocker status. To do so i found a few articles on the web that pointed me in the right direction, however i didn&#8217;t found a complete howto for it so that&#8217;s a good reason for me to post a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://picasaweb.google.com/lh/photo/Ne4UKlVEWV4hPb8NvV6X1Q?feat=directlink"></a>I recently had to come up with a solution that will enable administrators to build reports for client&#8217;s bitlocker status. To do so i found a few articles on the web that pointed me in the right direction, however i didn&#8217;t found a complete howto for it so that&#8217;s a good reason for me to post a complete one.</p>
<p>To enable bitlocker status reporting in a centralised management environment with SCCM you need to follow some steps because bitlocker is not integrated that far (yet??) in the Windows OS. First, let&#8217;s first take a look at the status information that bitlocker provides:</p>
<ul>
<li>Volume name, example: <strong>C: [OSDisk]</strong></li>
<li>Disk size, example: <strong>148,75 GB</strong></li>
<li>BitLocker Version, example: <strong>Windows 7</strong></li>
<li>Conversion Status, example: <strong>Fully Encrypted</strong></li>
<li>Percentage Encrypted, example: <strong>100%</strong></li>
<li>Encryption Method, example: <strong>AES 128 with Diffuser</strong></li>
<li>Protection Status, example: <strong>Protection On</strong></li>
<li>Lock Status, example: <strong>Unlocked</strong></li>
<li>Identification Field, example: <strong>None</strong></li>
<li>Key Protectors (Note: multivalue), example: <strong>TPM, Numerical Password</strong></li>
</ul>
<p>You can check the above on clients using the commandline tool <em>manage-bde.exe -status</em> on Windows 7 clients. For Vista clients use <em>cscript manage-bde.wsf -status. </em></p>
<p><strong>Step 1. Modify and deploy SMS_DEF.MOF</strong></p>
<p>We want bitlocker status information to be inventoried to SCCM. A proper way of doing that would be to add the bitlocker class to the <em>SMS_DEF.MOF </em>file on the management point (found in %SCCMinstallpath%\inboxes\clifiles.src\hinv). Make a copy of this file and edit with your favorite app. Add the following lines at the end of the file:</p>
<p><em>#pragma namespace (&#8220;</em><a><em>\\\\.\\root\\cimv2\\SMS</em></a><em>&#8220;)<br />
#pragma deleteclass(&#8220;SCCM_BitLocker&#8221;,NOFAIL)</em></p>
<p><em>[ SMS_Report     (TRUE),<br />
  SMS_Group_Name ("SCCM_BitLocker"),<br />
  SMS_Class_ID   ("CUSTOM|SCCM_BitLocker|1.0") ]<br />
class SCCM_BitLocker : SMS_Class_Template<br />
{<br />
  [SMS_Report (TRUE), key ] string Drive;<br />
  [SMS_Report (TRUE)] string DriveLabel;<br />
  [SMS_Report (TRUE)] string Size;<br />
  [SMS_Report (TRUE)] string BitLocker_Version;<br />
  [SMS_Report (TRUE)] string Conversion_Status;<br />
  [SMS_Report (TRUE)] string Percentage_Encrypted;<br />
  [SMS_Report (TRUE)] string Encryption_Method;<br />
  [SMS_Report (TRUE)] string Protection_Status;<br />
  [SMS_Report (TRUE)] string Lock_Status;<br />
  [SMS_Report (TRUE)] string Identification_Field;<br />
  [SMS_Report (TRUE)] string Key_Protectors;<br />
  [SMS_Report (TRUE)] string Automatic_Unlock;<br />
  [SMS_Report (TRUE)] string ScriptLastRan;<br />
};</em></p>
<p>You should check the file for errors with <em>mofcomp.exe -check SMS_DEF.MOF.</em> To enable the MOF file on a single client run the following command on the client <em>mofcomp -class:forceupdate %pathtofile%\SMS_DEF.MOF. </em>Copy the edited file back to enable it on your ConfigMgr site. </p>
<p><strong>Step 2. Install Bitlocker</strong></p>
<p>Create and link a GPO to apply on the bitlocker clients that contain the following settings (or similair based on your own requirements):</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td colspan="2" width="100%" valign="top">Machine | Administrative Templates | System | Trusted Platform Module Services</td>
</tr>
<tr>
<td width="79%" valign="top">Turn on TPM backup to Active Directory Domain Services</td>
<td width="21%" valign="top">Enabled</td>
</tr>
<tr>
<td colspan="2" width="100%" valign="top">Machine | Administrative Templates | Windows Components | BitLocker Drive Encryption | Operating Sytem Drives</td>
</tr>
<tr>
<td width="79%" valign="top">Choose how BitLocker-protected operating system drives can be recovered</td>
<td width="21%" valign="top">Enabled</td>
</tr>
<tr>
<td width="79%" valign="top">Allow data recovery agent</td>
<td width="21%" valign="top">Disabled</td>
</tr>
<tr>
<td width="79%" valign="top">Configure user storage of BitLocker recovery information:</td>
<td width="21%" valign="top">Require 48-digit recovery passwordAllow 256-bit recovery key</td>
</tr>
<tr>
<td width="79%" valign="top">Omit recovery options from the BitLocker setup wizard</td>
<td width="21%" valign="top">Enabled</td>
</tr>
<tr>
<td width="79%" valign="top">Save BitLocker recovery information to AD DS for operating system drives</td>
<td width="21%" valign="top">Enabled</td>
</tr>
<tr>
<td width="79%" valign="top">Configure storage of BitLocker recovery information to AD DS:</td>
<td width="21%" valign="top">Store recovery passwords and key packages</td>
</tr>
<tr>
<td width="79%" valign="top">Do not enable BitLocker until recovery information is stored to AD DS for operating system drives</td>
<td width="21%" valign="top">Disabled</td>
</tr>
</tbody>
</table>
<p>Enter the BIOS on your client or use tools like the Dell client configuration utility to turn on TPM, clear the TPM and activate it. After doing this enable bitlocker encryption on the machine. You can use any method to achive this.</p>
<p><strong>Step 3. Add Bitlocker status to WMI &amp; run hw inventory</strong> </p>
<p>Although there are multiple ways of manipulating bitlocker through WMI you still need a script to read, update and store bitlocker status information in the WMI repository (see <a href="http://msdn.microsoft.com/en-us/library/aa376409.aspx">http://msdn.microsoft.com/en-us/library/aa376409.aspx</a>). This is because Managed Object Format (MOF) files are not installed as part of the Windows SDK and therefore the included classes are not added to the WMI repository automatically by Windows itself.</p>
<p>The script:</p>
<ul>
<li><a href="http://www.buit.org/wp-content/uploads/2010/08/UpdateBitlockerStatus.zip">UpdateBitlockerStatus.vbs</a></li>
</ul>
<p>Run the script and after that initiate a hardware inventory on the client. After a while you will find 2 new tables and 1 new view in the SCCM site database:</p>
<p> <a href="http://lh3.ggpht.com/_lWnCoC2_6_I/TGvOcQjeLdI/AAAAAAAAHRk/VppR7vyxT3o/%5C%5CFile0011%5CBestusr2%24%5CRuitD%5CMijn%20Documenten%5CMijn%20Afbeeldingen%5Cbitlocker.jpg" rel="lightbox[659]"><img src="http://lh3.ggpht.com/_lWnCoC2_6_I/TGvOcQjeLdI/AAAAAAAAHRk/VppR7vyxT3o/%5C%5CFile0011%5CBestusr2%24%5CRuitD%5CMijn%20Documenten%5CMijn%20Afbeeldingen%5Cbitlocker.jpg" alt="" width="741" height="234" /></a></p>
<p><a href="http://lh3.ggpht.com/_lWnCoC2_6_I/TGvOcQjeLdI/AAAAAAAAHRk/VppR7vyxT3o/%5C%5CFile0011%5CBestusr2%24%5CRuitD%5CMijn%20Documenten%5CMijn%20Afbeeldingen%5Cbitlocker.jpg" rel="lightbox[659]"></a></p>
<p><strong>Step 4. Create the Report</strong></p>
<p>The most simple report would be a report of the table containing the bitlocker inventory data. By joining other tables/views with SQL queries the possibilities are endless, however i placed that out of scope of this howto <img src='http://www.buit.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . The following tables and views are provided for this:</p>
<ul>
<li><em>dbo.SCCM_BitLocker_DATA</em></li>
<li><em>dbo.SCCM_BitLocker_HIST</em></li>
<li><em>dbo.v_GS_SCCM_BitLocker0</em></li>
</ul>
<p>I created a report in SCCM with the following query using the SQL view:</p>
<ul>
<li><em>select * from v_GS_SCCM_BitLocker0</em></li>
</ul>
<p>And there it is, the Bitlocker report:</p>
<p><a href="http://lh4.ggpht.com/_lWnCoC2_6_I/TGvOcY8LS-I/AAAAAAAAHRo/NURzqji2SAM/%5C%5CFile0011%5CBestusr2%24%5CRuitD%5CMijn%20Documenten%5CMijn%20Afbeeldingen%5Cbitlocker_report.jpg" rel="lightbox[659]"><img class="alignnone" src="http://lh4.ggpht.com/_lWnCoC2_6_I/TGvOcY8LS-I/AAAAAAAAHRo/NURzqji2SAM/%5C%5CFile0011%5CBestusr2%24%5CRuitD%5CMijn%20Documenten%5CMijn%20Afbeeldingen%5Cbitlocker_report.jpg" alt="" width="700" height="184" /></a></p>
<p><em>Tested on SCCM R2 with a Windows 7 Enterprise bitlocker client. </em></p>
<p>Feel free to comment on this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2010/08/18/howto-bitlocker-status-reporting-in-sccm-2007/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>do more with less in System Center Configuration Manager.Next (Beta 1)</title>
		<link>http://www.buit.org/2010/05/28/do-more-with-less-in-system-center-configuration-manager-next-beta-1/</link>
		<comments>http://www.buit.org/2010/05/28/do-more-with-less-in-system-center-configuration-manager-next-beta-1/#comments</comments>
		<pubDate>Fri, 28 May 2010 08:51:39 +0000</pubDate>
		<dc:creator>dvanderuit</dc:creator>
				<category><![CDATA[Configuration Manager]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[v.Next]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=629</guid>
		<description><![CDATA[Hi i’m Douwe van de Ruit, a new blogger at buit.org and right now i have some nice things to share about the upcoming System Center Configuration Manager.next. Microsoft released Beta 1 last Tuesday so i downloaded it from the Microsoft connect site and kicked it in a virtual testlab to dig through the new [...]]]></description>
			<content:encoded><![CDATA[<p>Hi i’m Douwe van de Ruit, a new blogger at buit.org and right now i have some nice things to share about the upcoming System Center Configuration Manager.next. Microsoft released Beta 1 last Tuesday so i downloaded it from the Microsoft connect site and kicked it in a virtual testlab to dig through the new features and changes. I will show some new features from which i have great expectations. I will stick to the headlines only because covering all newly or changed features will be to much for a blogpost.</p>
<p><a href="http://www.buit.org/wp-content/uploads/2010/05/vnext-instalscreen3.png" rel="lightbox[629]"><img class="aligncenter size-medium wp-image-648" src="http://www.buit.org/wp-content/uploads/2010/05/vnext-instalscreen3-300x216.png" alt="" width="300" height="216" /></a></p>
<p>While installing SCCM.next i found out that the procedure was very similar to the way SCCM 2007 is installed. But when i started the Admin console i finally saw the “Outlook-styled” console for SCCM that is inline with consoles used for OpsMgr and VmMgr!</p>
<p><a href="http://www.buit.org/wp-content/uploads/2010/05/vnext-admin-console4.png" rel="lightbox[629]"><img class="aligncenter size-medium wp-image-649" src="http://www.buit.org/wp-content/uploads/2010/05/vnext-admin-console4-300x249.png" alt="" width="300" height="249" /></a></p>
<p>A good example of &#8220;do more with less&#8221; will be client settings, all settings are simplified by consolidating them in just one, simple and faste editable setting-interface:</p>
<p><a href="http://www.buit.org/wp-content/uploads/2010/05/vnext-client-settings1.png" rel="lightbox[629]"><img class="aligncenter size-medium wp-image-650" src="http://www.buit.org/wp-content/uploads/2010/05/vnext-client-settings1-300x190.png" alt="" width="300" height="190" /></a></p>
<p>So the interfacelifted GUI is a big change included in SCCM.next. But what about functionality and features? Well, Googling on vNext will return 3 main focus areas where Microsoft would deliver changed functionalities:</p>
<ol>
<li><em>User centric application management  – Empowering Administrators to define intent, and end users flexible access to the right application at the right time</em></li>
<li><em>Infrastructure simplification – Simplify management infrastructure, processes and administrative overhead</em></li>
<li><em>Simplify Client Management – Daily tasks, model based configuration management and improvements over existing capabilities</em></li>
</ol>
<p>User centric comes with so called user device affinity rules as you like, which can be used to define user’s devices and priorize them in a way that some deployments can depend on these affinity rules. Additionally, it will allow admins to create definitions of the relationship between the users and their applications in a way that the admins don’t have to worry about where that user is and what device it&#8217;s using .  They can trust the system that the user will have the right application at the right time in the right place suitable for the device they are on. Just a screenshot that relates to the user centric management functionality:</p>
<p><a href="http://www.buit.org/wp-content/uploads/2010/05/vnext-affinity-rules1.png" rel="lightbox[629]"><img class="aligncenter size-medium wp-image-651" src="http://www.buit.org/wp-content/uploads/2010/05/vnext-affinity-rules1-300x246.png" alt="" width="300" height="246" /></a></p>
<p>Just looking at the interface already shows that all administrative tasks just got easier and smarter and will achieve better overall performance in using ConfigMgr for all tasks. Infrastructure and Client Management simplifications will take more investigation to find out significant improvements as opposed to SCCM 2007. However, i do know that distribution points in SCCM.next will support scheduling and throttling. Imagining a branch office with a considerable amount of clients, you normally would create a secondary site if there was a concern about content distribution bandwidth consumption during office hours. With SCCM.next now you&#8217;re not bound to secondary sites because you can use distribution points with scheduling and throttling capabilities using the newly added &#8221;Rate Limits&#8221; tab in distribution point settings.</p>
<p>By simplified client management Microsoft introduces the &#8220;Custom Client Setting&#8221;. With this feature you can create custom client agent settings which you can apply to collections containing devices, users or both. On top of the custom client settings you will still be able to configure the top-level client agent settings. The need for an extra Primary site will become unneccesary if the only reason would be driven out of other Client settings. Very nice.</p>
<p><a href="http://www.buit.org/wp-content/uploads/2010/05/vnext-custom-client-settings.png" rel="lightbox[629]"><img class="aligncenter size-medium wp-image-653" src="http://www.buit.org/wp-content/uploads/2010/05/vnext-custom-client-settings-300x228.png" alt="" width="300" height="228" /></a></p>
<p>To summarize some more new stuff i (quickly) found:</p>
<ul>
<li>added distribution groups for administrative purpose</li>
<li>SCCM.next is 64 bit only</li>
<li>SQL 2008 required</li>
<li>added more than 300 extra SQL tables in the site database</li>
<li>changed the term “Advertisements” into “Deployments”</li>
<li>added Global Conditions settings which can be used to divide device types based on various parameters</li>
<li>SQL Reporting service replaces standard reporting</li>
<li>the “inboxes” system is still in use (and not transformed into SQL based communication as introduced before as a “wanna have”)</li>
<li>&#8220;Create Report&#8221; function crashes in my test lab <img src='http://www.buit.org/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </li>
<li>Help function returns white pixels <img src='http://www.buit.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
<li>SCCM 2007 DCM and Assett Intelligence nodes are integrated into a &#8220;Assets and Compliance&#8221; tab</li>
<li>New System roles: Software Catalog Web Service Point, Software Catalog Web Site Point, Mobile device enrollment proxy point, Mobile device enrollment point</li>
</ul>
<p>Nice stuff so far :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2010/05/28/do-more-with-less-in-system-center-configuration-manager-next-beta-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to perform remote assistance?</title>
		<link>http://www.buit.org/2010/05/01/how-to-perform-remote-assistance/</link>
		<comments>http://www.buit.org/2010/05/01/how-to-perform-remote-assistance/#comments</comments>
		<pubDate>Sat, 01 May 2010 19:00:30 +0000</pubDate>
		<dc:creator>PSlijkhuis</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows remote support teamview]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=623</guid>
		<description><![CDATA[Recently I noticed a change in remote support through Microsoft Windows. This is a feature I use a lot when helping family with their issues. Now I have an issue. I cannot get through anymore. Somehow remote support is blocked. I noticed a change. Before, the receiving party had to enter a session password. Now, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I noticed a change in remote support through Microsoft Windows. This is a feature I use a lot when helping family with their issues. Now I have an issue. I cannot get through anymore. Somehow remote support is blocked. I noticed a change. Before, the receiving party had to enter a session password. Now, a 12 digit security code is presented which the helping party needs to enter flawless. I have tried is at least three times with totally different machines and at differert times. Every time a connection was not established.</p>
<p>This time, I did not have endless time to troubleshoot. So I decided to make a quick escape through an internet service. I found TeamViewer 5 to be an easy to use replacable. For home use it&#8217;s free. It uses two simple codes to identify the session. For now, I stick with this. Because there is nothing more frustrating for a helpdesk like me than not seeing what happens on the other side, I guess&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2010/05/01/how-to-perform-remote-assistance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BUIT @ TechED 2009</title>
		<link>http://www.buit.org/2009/11/11/buit-teched-2009/</link>
		<comments>http://www.buit.org/2009/11/11/buit-teched-2009/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 14:18:21 +0000</pubDate>
		<dc:creator>Erik Luppes</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=617</guid>
		<description><![CDATA[Last Tuesday at the Microsoft Tech•Ed Europe 2009 conference in Germany, Microsoft Business Division President Stephen Elop announced that Microsoft Exchange Server 2010 is now available worldwide to help businesses reduce costs, protect communications and delight e-mail users. Along with Windows 7 and Windows Server 2008 R2, Exchange Server 2010 is part of a generation [...]]]></description>
			<content:encoded><![CDATA[<p>Last Tuesday at the Microsoft Tech•Ed Europe 2009 conference in Germany, Microsoft Business Division President Stephen Elop announced that Microsoft Exchange Server 2010 is now available worldwide to help businesses reduce costs, protect communications and delight e-mail users. Along with Windows 7 and Windows Server 2008 R2, Exchange Server 2010 is part of a generation of solutions designed for increased business productivity and cost savings.</p>
<p> In today’s challenging economic environment, innovative use of new information technologies can result in improved operational efficiency and reduced costs. The combination of cost savings coupled with improved productivity and innovation is defined as “the New Efficiency.”</p>
<p> Elop also announced the release of Forefront Protection 2010 for Exchange Server, which helps Exchange Server customers further safeguard business information.</p>
<p> “Exchange Server 2010 customers are already reporting cost savings of up to 70 percent thanks to a simplified high-availability model and support for lower-cost storage. Customers are also seeing productivity gains of more than 20 percent with a universal inbox that delivers e-mail, voice mail, instant messaging and text messaging consistently across virtually any device,” Elop said. “Together with Windows 7 and Windows Server 2008 R2, the combined cost savings and improved productivity helps customers generate long-term business success.”</p>
<p> According to a commissioned study of technology early adopters conducted by Forrester Consulting on behalf of Microsoft Corp., a customer can see a payback period of less than six months when upgrading to either Exchange Server 2010* or Windows Server 2008 R2.**</p>
<p> Customers such as Bank of America Corp., Carnival Cruise Line, Global Crossing, Lifetime Products, Morgan Keegan &amp; Co. Inc., NEC Philips, Subaru Canada Inc. and Telekom Austria Group are deploying Exchange Server 2010 and report impressive results with the new server.</p>
<p> “We have increased storage eightfold at 25 percent of the cost with Exchange Server 2010 and our employees are seeing a reduction of unwanted e-mail by more than 70 percent, freeing us up to focus on more important client issues,” said Steve Derbyshire, operations director, NEC Philips.</p>
<p> Organizations including Automatic Data Processing Inc., BMW, Baker Tilly, the City of Miami, Energizer, Getronics and Pella Corp. are deploying Windows 7 and report gains in efficiency for both business users and IT. Customers report improved user productivity and easier information access, reduced costs with streamlined management, and reduced risk through better security and increased desktop control. Supporting detail is available in recent total cost of ownership studies and analyst survey reports at http://www.microsoft.com/windows/enterprise/products/windows-7/default.aspx.</p>
<p> Businesses are seeing equally significant results from Windows Server 2008 R2, with customers including Continental Airlines Inc. (U.S.), Chester Zoo (U.K.), Combell Group NV (Belgium), FinPro (Finland), Wacom Europe GmbH (Germany) and Wortell (Netherlands) noting cost savings through server consolidation, reduced power consumption and improved service levels.</p>
<p> “With Windows Server 2008 R2, we’ve been able to dramatically reduce costs in our IT infrastructure while simplifying management,” said Phil Morris, IT manager, North England Zoological Society/Chester Zoo. “By virtualizing our environment with Windows Server 2008 R2 Hyper-V, we have reduced the number of servers in our environment by 80 percent while maintaining the high availability our retail staff, researchers and management team need.”</p>
<p> “Windows Server 2008 R2 brings many efficiencies to our customers, including enabling new virtualization scenarios,” said Bill Laing, corporate vice president for the Windows Server and Solutions Division at Microsoft. “We’ve added the next generation of hypervisor and the new ability to perform Live Migration of virtual machines. Many customers are already seeing tangible results since deploying Windows Server 2008 R2 with Hyper-V.”</p>
<p> Elop said more than 45,000 partners are trained on Windows Server 2008 R2 and Exchange Server 2010, with several partners announcing new services and solutions today, including Advanced Micro Devices Inc., Avanade, Dell Inc., EMC Corp., Kaspersky Lab, Symantec Corp. and Unisys Corp.</p>
<p> Exchange Server 2010 and Forefront Protection 2010 for Exchange are available now for trial at <a href="http://www.thenewefficiency.com" target="_blank">http://www.thenewefficiency.com</a>, along with more information about Windows 7, Windows Server 2008 R2 and partner solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2009/11/11/buit-teched-2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Howto deploy a Federated Search Connector in Windows 7</title>
		<link>http://www.buit.org/2009/08/07/howto-deploy-a-federated-search-connector-in-windows-7/</link>
		<comments>http://www.buit.org/2009/08/07/howto-deploy-a-federated-search-connector-in-windows-7/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 22:42:18 +0000</pubDate>
		<dc:creator>Erik Luppes</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Connector]]></category>
		<category><![CDATA[Federated]]></category>
		<category><![CDATA[Group]]></category>
		<category><![CDATA[Policy]]></category>
		<category><![CDATA[Preferences]]></category>
		<category><![CDATA[Search]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=608</guid>
		<description><![CDATA[Howto deploy a Federated Search Connector in Windows 7 Yesterday we had a kickoff for an Early Adopter Windows 7 Community @ Microsoft in the Netherlands. One of the presentations was about Federated Search and how this nice option will make our work much easier. Some people were wondering howto deploy a Federated Search Connector [...]]]></description>
			<content:encoded><![CDATA[<p>Howto deploy a Federated Search Connector in Windows 7</p>
<p>Yesterday we had a kickoff for an Early Adopter Windows 7 Community @ Microsoft in the Netherlands.<br />
One of the presentations was about Federated Search and how this nice option will make our work much easier.</p>
<p>Some people were wondering howto deploy a Federated Search Connector in an Enterprise Environment, but nobody seems to know the answer. Reason for me to find out how to do this.</p>
<p>As for most solutions, it is not the only or the best solution, but because I like Group Policy Preferences (GPP) so much I developed a way to deploy a search connector using GPP.</p>
<p>In this example I will deploy the <a href="http://www.sevenforums.com/sfp/youtube.osdx" target="_blank">Youtube connector.</a><br />
(Look for more connectors on : <a href="http://www.sevenforums.com/tutorials/742-windows-7-search-federation-providers.html">http://www.sevenforums.com/tutorials/742-windows-7-search-federation-providers.html</a>)</p>
<p>On an admin PC just doubleclick on the downloade file, this will install the Search Connector on your PC, in fact it will install it in your user profile.</p>
<p>Now we need 2 files from your profile, first look up C:\USERS\&lt;YOUR USERNAME&gt;\LINKS\YOUTUBE.LNK<br />
Before you copy this file right click it, choose properties and change the targetlocation to : C:\Users\%USERNAME%\Searches\Youtube.searchConnector-ms</p>
<p>Now copy this file to for example your NETLOGON share.</p>
<p>After that copy the file C:\USERS\&lt;YOUR USERNAME&gt;\SEARCHES\Youtube.searchConnector-ms to the NETLOGON share.</p>
<p>We&#8217;ve got the files that we need to deploy it to our users.</p>
<p>Logon to your domain controller (or the machine that you use to manage Group Policy) and open the Group Policy Management Console.<br />
N.B. To manage Group Policy Preferences you need a Windows Server 2008 (R2), Windows Vista or Windows 7 machine.</p>
<p>Open your User policy and expand the User Configuration node.<br />
Now go to Preferences -&gt; Windows Settings -&gt; Files.</p>
<p>Add these 2 files :</p>
<p><a href="http://www.buit.org/wp-content/uploads/2009/08/searches.png" rel="lightbox[608]"><img class="alignnone size-medium wp-image-609" title="link" src="http://www.buit.org/wp-content/uploads/2009/08/link-271x300.png" alt="link" width="271" height="300" /><img class="alignnone size-medium wp-image-611" title="searches" src="http://www.buit.org/wp-content/uploads/2009/08/searches-271x300.png" alt="searches" width="271" height="300" /></a></p>
<p>If you close the file screens, the preference screen will look like this (except for my domain name <img src='http://www.buit.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<p><a href="http://www.buit.org/wp-content/uploads/2009/08/preference.png" rel="lightbox[608]"><img class="alignnone size-medium wp-image-610" title="preference" src="http://www.buit.org/wp-content/uploads/2009/08/preference-300x70.png" alt="preference" width="300" height="70" /></a></p>
<p>Now the only thing you have to do is wait until the user policy is refreshed ( a user does not have to take any action and will see the search provider automaticly)<br />
And if you cant wait, just use the good old GPUPDATE.</p>
<p>Thats it for now, please enjoy.</p>
<p>Regards,</p>
<p>Erik</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2009/08/07/howto-deploy-a-federated-search-connector-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Quota&#8217;s based on Group Membership</title>
		<link>http://www.buit.org/2009/07/16/windows-quotas-based-on-group-membership/</link>
		<comments>http://www.buit.org/2009/07/16/windows-quotas-based-on-group-membership/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 17:20:31 +0000</pubDate>
		<dc:creator>Benno Zelders</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[FSRM]]></category>
		<category><![CDATA[Quota]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=588</guid>
		<description><![CDATA[I noticed that is currently is impossible or at least difficult to apply Disk Quota&#8217;s based on Security Groups instead on Folder location / users. In this article I will try to explain a solution for this problem.   To successfully apply quota&#8217;s to groups, you need the following things: Windows 2008 Domain Controllers for Group [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">I noticed that is currently is impossible or at least difficult to apply Disk Quota&#8217;s based on Security Groups instead on Folder location / users. In this article I will try to explain a solution for this problem.</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">To successfully apply quota&#8217;s to groups, you need the following things:</span></span></span></p>
<ul>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Windows 2008 Domain Controllers for Group Policy Preferences</span></span></span></div>
</li>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">File Server Resource Manager (available on Windows Server 2003 R2 and Server 2008)</span></span></span></div>
</li>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">A single file server</span></span></span></div>
</li>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Security Groups</span></span></span></div>
</li>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Vb Scripts</span></span></span></div>
</li>
<li>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-family: Calibri; font-size: small;">Event triggered tasks</span></span></p>
</li>
</ul>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">In this situation, there are 3 quota templates defined in the File Server Resource Manager:</span></span></span></p>
<ul>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Bronze (100 MB), applied to the share \\SERVER1\HOME$\BRONZE</span></span></span></div>
</li>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Silver (200 MB), applied to the share \\SERVER1\HOME$\SILVER</span></span></span></div>
</li>
<li>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Gold (500 MB), applied to the <span style="color: #000000;">share \\SERVER1\HOME$\GOLD</span></span></span></span></div>
</li>
</ul>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt">  </p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Ok here we go! This how-to is pretty straight forward, so if I am going to fast plz let me know!</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">1: Create the required QUOTA templates in FSRM (BRONZE, SILVER, GOLD)</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">2: Create a HOME$ share on a fileserver (in this example SERVER1)</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">3: For every QUOTA template, create a separate subfolder with the Quota name (BRONZE, SILVER and GOLD).</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">4: Apply the QUOTA templates on the in step 3 created folders (BRONZE -&gt; BRONZE. SILVER -&gt; SILVER etc)</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">5: Create three security Groups (in this example BRONZE, SILVER and GOLD)</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">6: Create a folder redirection policy for Desktop and Documents and configure it as show in the pictures below:</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">(pictures only show the BRONZE part, also add the SILVER and GOLD Groups\locations)<br />
</span></span></span></p>
<div><a rel="WLPP;url=https://axa6ma.bay.livefilestore.com/y1mcSBJcu9NLMLERUyI7qxqin3x0mDpw6wn-9lYU97YjVr4NHgZBjjugXwclvuqpAEV3B6xK02AAIUT4FWI2ZYERwPwTQFqwsk67OJDNVdNOHPvHnpAfRfRlw3qtjksPeOQo4M2Msx_UhVUGqSs8bOd-A/Capture.PNG" href="https://axa6ma.bay.livefilestore.com/y1mcSBJcu9NLMLERUyI7qxqin3x0mDpw6wn-9lYU97YjVr4NHgZBjjugXwclvuqpAEV3B6xK02AAIUT4FWI2ZYERwPwTQFqwsk67OJDNVdNOHPvHnpAfRfRlw3qtjksPeOQo4M2Msx_UhVUGqSs8bOd-A/Capture.PNG" target="_blank" rel="lightbox[588]"><img style="width: 230px; height: 312px;" src="https://axa6ma.bay.livefilestore.com/y1mcSBJcu9NLMLERUyI7qxqin3x0mDpw6wn-9lYU97YjVr4NHgZBjjugXwclvuqpAEV3B6xK02AAIUT4FWI2ZYERwPwTQFqwsk67OJDNVdNOHPvHnpAfRfRlw3qtjksPeOQo4M2Msx_UhVUGqSs8bOd-A/Capture.PNG" alt="" width="216" height="324" /></a><a rel="WLPP;url=https://axa6ma.bay.livefilestore.com/y1m-OJEYNoRKHB-2wGxPRZO3zcNtnT1pv0Gv4sog4MSCbeZ0FkeDyiJuG5hye8269zQThDfvcWJUi4pvcAtKtLl1OsaHkvqavjX0hCx31Ix_RhBCifUzYhUyoUvlGIPHJxSGfrId0swOsl5HAQzRpQK-g/Capture2.PNG" href="https://axa6ma.bay.livefilestore.com/y1m-OJEYNoRKHB-2wGxPRZO3zcNtnT1pv0Gv4sog4MSCbeZ0FkeDyiJuG5hye8269zQThDfvcWJUi4pvcAtKtLl1OsaHkvqavjX0hCx31Ix_RhBCifUzYhUyoUvlGIPHJxSGfrId0swOsl5HAQzRpQK-g/Capture2.PNG" target="_blank" rel="lightbox[588]"><img style="width: 281px; height: 312px;" src="https://axa6ma.bay.livefilestore.com/y1m-OJEYNoRKHB-2wGxPRZO3zcNtnT1pv0Gv4sog4MSCbeZ0FkeDyiJuG5hye8269zQThDfvcWJUi4pvcAtKtLl1OsaHkvqavjX0hCx31Ix_RhBCifUzYhUyoUvlGIPHJxSGfrId0swOsl5HAQzRpQK-g/Capture2.PNG" alt="" width="383" height="420" /></a></div>
<div>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">(configure redirection based on Security Groups and make sure the &#8220;Move the contents of &#8230;.. to the new location&#8221; is not checked!)</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">7: <span style="text-decoration: underline;">Create a VBS for every QUOTA </span>as shown below and place them on a centrally accessible share (\\DOMAINNAME.LOCAL\NETLOGON\SCRIPTS for example):</span></span></span></p>
</div>
<div> </div>
<div><a rel="WLPP;url=https://axa6ma.bay.livefilestore.com/y1m_WXsCvFmLpAa7JKL3wHFcyqJhhJJ4qFO-5AWt8dM0xtNYOExc05vUK5mmbLkPlNrVz0CCuHDccM7HdMHYy683U_fsbqhssUi4k90NqWgK9Vg-ueOgLQvcxmbov-fZJS4gjbfzhnBL-mBN8-eOJhEIg/Capture3.PNG" href="https://axa6ma.bay.livefilestore.com/y1m_WXsCvFmLpAa7JKL3wHFcyqJhhJJ4qFO-5AWt8dM0xtNYOExc05vUK5mmbLkPlNrVz0CCuHDccM7HdMHYy683U_fsbqhssUi4k90NqWgK9Vg-ueOgLQvcxmbov-fZJS4gjbfzhnBL-mBN8-eOJhEIg/Capture3.PNG" target="_blank" rel="lightbox[588]"><img style="width: 331px; height: 195px;" src="https://axa6ma.bay.livefilestore.com/y1m_WXsCvFmLpAa7JKL3wHFcyqJhhJJ4qFO-5AWt8dM0xtNYOExc05vUK5mmbLkPlNrVz0CCuHDccM7HdMHYy683U_fsbqhssUi4k90NqWgK9Vg-ueOgLQvcxmbov-fZJS4gjbfzhnBL-mBN8-eOJhEIg/Capture3.PNG" alt="" width="387" height="244" /></a></div>
<div>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">The script moves the user files to the correct &#8216;quota&#8217; location. If the user is member of the group &#8220;BRONZE&#8221;, all the files are moved from the \\SERVER1\HOME$\SILVER and \\SERVER1\HOME$\GOLD share to the BRONZE location.</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">8: <span style="text-decoration: underline;">For every QUOTA</span>, create shortcuts using Group Policy Preferences (User Configurarion\Preferences\Windows Settings\Shortcuts) and target them as shown in the third picture (example is for the BRONZE quota, they also have to be created for SILVER and GOLD):</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">!!IT IS VERY IMPORTANT TO USE IDENTICAL NAMES FOR THE SHORTCUTS!!!</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"> </p>
</div>
<div>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">The reason is that the appropriate shortcut is created based on group membership. If the user is added to a different group, the shortcut is overwritten.</span></span></span></p>
</div>
<div> </div>
<div><a rel="WLPP;url=https://axa6ma.bay.livefilestore.com/y1mts42JL_N77hSxSTfHyfx6YgtYjjiW6ZNAVilwopOqrGuqGPUfQXTS5V7yfc-YPn8ab7spXvVmTWMU-Ikp-IYySE3E6w4B_Y0MDBWAHw_YtDTAmdQkWh2KEo_WqDGMuVJSAVtfJ6HuFIl8uzG3IuzpA/Capture4.PNG" href="https://axa6ma.bay.livefilestore.com/y1mts42JL_N77hSxSTfHyfx6YgtYjjiW6ZNAVilwopOqrGuqGPUfQXTS5V7yfc-YPn8ab7spXvVmTWMU-Ikp-IYySE3E6w4B_Y0MDBWAHw_YtDTAmdQkWh2KEo_WqDGMuVJSAVtfJ6HuFIl8uzG3IuzpA/Capture4.PNG" target="_blank" rel="lightbox[588]"><img src="https://axa6ma.bay.livefilestore.com/y1mts42JL_N77hSxSTfHyfx6YgtYjjiW6ZNAVilwopOqrGuqGPUfQXTS5V7yfc-YPn8ab7spXvVmTWMU-Ikp-IYySE3E6w4B_Y0MDBWAHw_YtDTAmdQkWh2KEo_WqDGMuVJSAVtfJ6HuFIl8uzG3IuzpA/Capture4.PNG" alt="" width="251" height="272" /></a> <a rel="WLPP;url=https://axa6ma.bay.livefilestore.com/y1mVDC1CxIKzil8aPrk3AcHCZlAhlZiUey4n9f0gZQdtNJ5WLTlOvThSGJirl1NUS6Yv5113Cqp83bYh1hA0EoEAEr_a7ldgigzY9qxq9SFk-DkGNgZVMTbufoAEGvWPdU_yLCCse5bqqs4HtTM0PieKA/Capture6.PNG" href="https://axa6ma.bay.livefilestore.com/y1mVDC1CxIKzil8aPrk3AcHCZlAhlZiUey4n9f0gZQdtNJ5WLTlOvThSGJirl1NUS6Yv5113Cqp83bYh1hA0EoEAEr_a7ldgigzY9qxq9SFk-DkGNgZVMTbufoAEGvWPdU_yLCCse5bqqs4HtTM0PieKA/Capture6.PNG" target="_blank" rel="lightbox[588]"><img style="width: 277px; height: 270px;" src="https://axa6ma.bay.livefilestore.com/y1mVDC1CxIKzil8aPrk3AcHCZlAhlZiUey4n9f0gZQdtNJ5WLTlOvThSGJirl1NUS6Yv5113Cqp83bYh1hA0EoEAEr_a7ldgigzY9qxq9SFk-DkGNgZVMTbufoAEGvWPdU_yLCCse5bqqs4HtTM0PieKA/Capture6.PNG" alt="" width="389" height="435" /></a></div>
<div>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span>Target path is the location of the VBS files. In this example it is <span style="COLOR: #0066cc; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US">\\DOMAINNAME\NETLOGON\SCRIPTS\BRONZE.VBS</span></span></span></span></p>
</div>
<div> </div>
<div><a rel="WLPP;url=https://axa6ma.bay.livefilestore.com/y1mUDmogTm556au8RtG2yRzausAJh5X7R65L9VIZdciAcNs4vRWoUb3y0Khk6urFOP05FEbTPVQDoebFj8TeLnC31d4cbv38FZWiOWL94I5gcwZ5ms8gh79SfCbOaUKUf5vT3LGd5q19QUh_ROdyWdNAA/Capture5.PNG" href="https://axa6ma.bay.livefilestore.com/y1mUDmogTm556au8RtG2yRzausAJh5X7R65L9VIZdciAcNs4vRWoUb3y0Khk6urFOP05FEbTPVQDoebFj8TeLnC31d4cbv38FZWiOWL94I5gcwZ5ms8gh79SfCbOaUKUf5vT3LGd5q19QUh_ROdyWdNAA/Capture5.PNG" target="_blank" rel="lightbox[588]"><img src="https://axa6ma.bay.livefilestore.com/y1mUDmogTm556au8RtG2yRzausAJh5X7R65L9VIZdciAcNs4vRWoUb3y0Khk6urFOP05FEbTPVQDoebFj8TeLnC31d4cbv38FZWiOWL94I5gcwZ5ms8gh79SfCbOaUKUf5vT3LGd5q19QUh_ROdyWdNAA/Capture5.PNG" alt="" /></a></div>
<div>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">As you can see, this shortcut is only updated for users that are member of the BRONZE group. If they are also member of the SILVER / GOLD group, nothing will be changed.</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>Now the final part (optional, but highly recommended)</strong></span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<div class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Create a event triggered tasks to:</span></span></span></div>
<ul>
<li><span style="color: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin;" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Remove the user from the groups SILVER and GOLD if added to BRONZE</span></span></span></li>
<li><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Remove the user from the groups BRONZE and GOLD if added to SILVER</span></span></span></li>
<li><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Remove the user from the groups BRONZE and SILVER if added to GOLD</span></span></span></li>
</ul>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US">How to do this can be found in the following blogpost </span><span style="COLOR: black; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"><a href="http://www.buit.org/2009/07/16/event-based-triggered-tasks/"><span style="mso-ansi-language: EN-US" lang="EN-US">http://www.buit.org/2009/07/16/event-based-triggered-tasks/</span></a></span><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US">.</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-ansi-language: EN-US; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Et Voila! Quota&#8217;s can be applied to Groups instead of users <img src='http://www.buit.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
</span></span></span></p>
</div>
<div>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt">
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"> </p>
<p><span style="COLOR: black; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"><span style="font-size: small;"><span style="font-family: Calibri;">Regards,</span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"><span style="font-size: small;"><span style="font-family: Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="LINE-HEIGHT: 14.25pt; MARGIN: 0cm 0cm 0pt"><span style="COLOR: black; mso-bidi-font-family: Calibri; mso-bidi-theme-font: minor-latin"><span style="font-size: small;"><span style="font-family: Calibri;">Benno Zelders</span></span></span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2009/07/16/windows-quotas-based-on-group-membership/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Event-based Triggered tasks</title>
		<link>http://www.buit.org/2009/07/16/event-based-triggered-tasks/</link>
		<comments>http://www.buit.org/2009/07/16/event-based-triggered-tasks/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:58:57 +0000</pubDate>
		<dc:creator>Benno Zelders</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[scheduled task]]></category>
		<category><![CDATA[variable]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=571</guid>
		<description><![CDATA[A while ago Otto Helweg wrote how to use the Task Scheduler shipped with Vista and Windows Server 2008 to create triggers based on certain events logged in the eventlogs. This post explains how to use event specific data in a triggered action to automate almost everything you can think of.   For example: In [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-bidi-font-size: 10.0pt"><span style="font-family: Calibri; font-size: small;">A while ago Otto Helweg </span><a href="http://blogs.technet.com/otto/archive/2007/11/09/find-the-event-that-triggered-your-task.aspx"><span style="font-family: Calibri; font-size: small;">wrote</span></a><span style="font-family: Calibri; font-size: small;"> how to use the Task Scheduler shipped with Vista and Windows Server 2008 to create triggers based on certain events logged in the eventlogs. This post explains how to use event specific data in a triggered action to automate almost everything you can think of</span></span><span style="font-family: Calibri; font-size: small;">.</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-bidi-font-size: 10.0pt"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-bidi-font-size: 10.0pt"><span style="font-size: small;"><span style="font-family: Calibri;">For example:</span></span></span></p>
<blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">In company X, a drive mapping to a certain UNC share is based upon Group Membership. </span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">There are 2 Groups that map the letter P. If the user is member of the Group Sales, he gets the mapping \\server1\sales. If the user is member of the Group Reception, he gets the mapping \\server1\reception.</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">What happens if the user is member of these 2 groups? Well that depends on the scripting capabilities of the IT department (or the way Group Policy Preferences is used). </span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">I can tell you that something is not right&#8230;</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">What would you do?</span></p>
</blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">At the moment, you depend on the user to report this so an administrator can remove the user from the other group.</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> </p>
<div class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;">My suggestion would be to automatically let the user be removed from the other group!  (user is added to sales -&gt; remove user from reception and vice versa).</span></span></div>
<div class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-ansi-language: EN-US" lang="EN-US">This is all possible by using the task scheduler! I’ll try to explain how you can accomplish this in 6 steps. </span></span></span></div>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><strong><span style="font-size: small;"><span style="font-family: Calibri;">1: Create the Task</span></span></strong></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-ansi-language: EN-US" lang="EN-US">Open the Event viewer on the Windows 2008 Domain Controller, and look for the event &#8220;4732&#8243;. </span>(this is the event generated when a user is added to a domain local group).<br />
<span style="mso-ansi-language: EN-US" lang="EN-US">This event can be found in the Security container. Right click the event and select &#8220;Attach Task To This Event&#8230;&#8221;</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> <span style="mso-bidi-font-size: 10.0pt"><span style="font-family: Calibri; font-size: small;"><img class="alignnone size-medium wp-image-583" src="http://www.buit.org/wp-content/uploads/2009/07/attach-task-300x174.png" alt="attach-task" width="300" height="174" /></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">You are prompted to fill in a wizard. The only part of the wizard that requires some kind of input is the “Action” part. It doesn’t really matter what you do here, because we will change it later. </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">After the wizard is complete, open the task scheduler (start, type in task and press enter).<br />
You can see the following is added:</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> <img class="alignnone size-full wp-image-584" src="http://www.buit.org/wp-content/uploads/2009/07/created-task1.png" alt="created-task1" width="609" height="113" /></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><strong><span style="font-size: small;"><span style="font-family: Calibri;">2: Export the Task</span></span></strong></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">From within Task Scheduler, export the task (as an XML file).</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"><span style="mso-bidi-font-size: 10.0pt"><span style="font-family: Calibri; font-size: small;"><img class="alignnone size-medium wp-image-568" src="http://www.buit.org/wp-content/uploads/2009/07/071609-1556-eventbasedt31-300x156.png" alt="071609-1556-eventbasedt3.png" width="300" height="156" /></span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><strong><span style="font-family: Calibri; font-size: small;"> </span></strong></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><strong><span style="mso-ansi-language: EN-US" lang="EN-US">3: Modify the Task so it only reacts on specific 4732 events.</span></strong></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-ansi-language: EN-US" lang="EN-US">Currently the trigger is activated with every &#8220;Local Group membership change&#8221;.<br />
</span>We don&#8217;t need that!!! To fix this, we need to edit the exported XML with notepad and change the following text: </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<blockquote>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;Triggers&gt;</span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">    </span>&lt;EventTrigger&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">      </span>&lt;Enabled&gt;true&lt;/Enabled&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">      </span>&lt;Subscription&gt;&amp;lt;QueryList&amp;gt;&amp;lt;Query Id=&#8221;0&#8243; Path=&#8221;Security&#8221;&amp;gt;&amp;lt;Select Path=&#8221;Security&#8221;&amp;gt;*[System[Provider[@Name='Microsoft-Windows-Security-Auditing'] and EventID=4732]]&amp;lt;/Select&amp;gt;&amp;lt;/Query&amp;gt;&amp;lt;/QueryList&amp;gt;&lt;/Subscription&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">    </span>&lt;/EventTrigger&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">  </span>&lt;/Triggers&gt;</span></span></p>
</blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;">to:<span style="mso-spacerun: yes">  </span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> </p>
<blockquote>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;Triggers&gt;</span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">    </span>&lt;EventTrigger&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">      </span>&lt;Enabled&gt;true&lt;/Enabled&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes">      </span>&lt;Subscription&gt;&amp;lt;QueryList&amp;gt;&amp;lt;Query Id=&#8221;0&#8243; Path=&#8221;Security&#8221;&amp;gt;&amp;lt;Select Path=&#8221;Security&#8221;&amp;gt;*[System[Provider[@Name='Microsoft-Windows-Security-Auditing'] and EventID=4732]] <span style="BACKGROUND: lime; mso-highlight: lime">and *[EventData[Data[@Name="TargetUserName"]=&#8221;SALES&#8221;]]</span>&amp;lt;/Select&amp;gt;&amp;lt;/Query&amp;gt;&amp;lt;/QueryList&amp;gt;&lt;/Subscription&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;/EventTrigger&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> <span style="mso-spacerun: yes">  </span>&lt;/Triggers&gt; </span></p>
</blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">By adding this line, the scheduled task is only responding to event 4732 if the value TargetUserName equals SALES (in this case this is the Local Security Group Name).</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">*[EventData[Data[@Name="TargetUserName"]=&#8221;SALES&#8221;]]</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">For example: If you would like to filter on certain users, you can use “MemberName” instead of “TargetUserName”).</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"> If you look at the XML view of an event, you will see how the filter works (open an event -&gt; details -&gt; XML view).</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><strong><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">4: Modify the Task so we can use certain data from the event</span></span></span></strong></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> <span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-ansi-language: EN-US" lang="EN-US">Now we can add some lines to use the data from the event to pass along to the action we will configure later. </span>First we have to determine which information we want to use.<br />
This is the Event in XML view (for me the only interesting part is the EventData section):</span></span></p>
<blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;Eventxmlns=&#8221;http://schemas.microsoft.com/win/2004/08/events/event&#8221;&gt;<br />
&lt;System&gt;<br />
<span style="mso-spacerun: yes"> </span>&lt;EventData&gt;</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;MemberName&#8221;&gt;CN=Benno Zelders,DC=TEST,DC=lan&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;MemberSid&#8221;&gt;S-1-5-21-4012033790-4084158397-284283626-1332&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;TargetUserName&#8221;&gt;SALES&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;TargetDomainName&#8221;&gt;TEST&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;TargetSid&#8221;&gt;S-1-5-21-4012033790-4084158397-284283626-1333&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;SubjectUserSid&#8221;&gt;S-1-5-21-4012033790-4084158397-284283626-1206&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;SubjectUserName&#8221;&gt;administrator&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;SubjectDomainName&#8221;&gt;TEST&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;SubjectLogonId&#8221;&gt;0&#215;55193&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-tab-count: 1">                </span>&lt;Data Name=&#8221;PrivilegeList&#8221;&gt;-&lt;/Data&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-spacerun: yes"> </span>&lt;/EventData&gt; </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;/Event&gt;</span></p>
</blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">I personally find it very useful to use &lt;Data Name=&#8221;MemberName&#8221;&gt;, because it shows which user is added to the group. To allow the eventdata parameter to pass along to the action, we need to add the following lines to the XML just before the &lt;/EventTrigger&gt; line:</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;ValueQueries&gt;<br />
&lt;Value name=&#8221;MemberName&#8221;&gt;Event/EventData/Data[@Name='MemberName']&lt;/Value&gt;<br />
&lt;/ValueQueries&gt;</span></p></blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"> The end result of the &lt;Triggers&gt; part of the XML is:</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-family: Calibri; font-size: small;"> </span></span></p>
<blockquote>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;Triggers&gt;</span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;EventTrigger&gt;</span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;">&lt;Enabled&gt;true&lt;/Enabled&gt;<span style="mso-spacerun: yes">   </span></span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;Subscription&gt;&amp;lt;QueryList&amp;gt;&amp;lt;Query Id=&#8221;0&#8243; Path=&#8221;Security&#8221;&amp;gt;&amp;lt;Select Path=&#8221;Security&#8221;&amp;gt;*[System[Provider[@Name='Microsoft-Windows-Security-Auditing'] and EventID=4732]] and *[EventData[Data[@Name="TargetUserName"]=&#8221;SALES&#8221;]]&amp;lt;/Select&amp;gt;&amp;lt;/Query&amp;gt;&amp;lt;/QueryList&amp;gt;&lt;/Subscription&gt;</span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="mso-spacerun: yes"><span style="font-family: Calibri; font-size: small;"> </span></span><span style="BACKGROUND: lime; mso-highlight: lime"><span style="font-family: Calibri; font-size: small;">&lt;ValueQueries&gt;<br />
<span style="mso-spacerun: yes"> </span>&lt;Value name=&#8221;MemberName&#8221;&gt;Event/EventData/Data[@Name='MemberName']&lt;/Value&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="BACKGROUND: lime; mso-highlight: lime">&lt;/ValueQueries&gt;</span><br />
&lt;/EventTrigger&gt;</span></span></p>
<p class="MsoNoSpacing" style="TEXT-ALIGN: left; MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">&lt;/Triggers&gt;</span></p>
</blockquote>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">Now we can use the $(MemberName) variable in an action!.</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"> </span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><strong><span style="font-size: small;"><span style="font-family: Calibri;">5: Import the “Modified XML” in task scheduler</span></span></strong></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><strong><span style="font-family: Calibri; font-size: small;"> </span></strong></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;">First we have to delete the original task from the task scheduler. </span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">After this is done, we can import the modified XML by right clicking folder “Event Viewer Tasks” and select “Import Task” </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> <img class="alignnone size-full wp-image-585" src="http://www.buit.org/wp-content/uploads/2009/07/import-task1.png" alt="import-task1" width="195" height="207" /><span style="mso-bidi-font-size: 10.0pt"></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><strong><span style="font-size: small;"><span style="font-family: Calibri;">6: Create the action using the variable</span></span></strong></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-ansi-language: EN-US" lang="EN-US">First remove the action created in the wizard (open the task, go to “Actions” and remove the existing action.  Now we can create the action to automatically remove the user from the “RECEPTION” group after he is added to the “SALES” group.<span style="mso-spacerun: yes">  </span></span>(Click New and select “Start a program”). This can be accomplished running a command by using the Active Directory extensions for powershell from QUEST (to automatically load the Quest snap-in, see </span></span><a href="http://www.eggheadcafe.com/conversation.aspx?messageid=32693228&amp;threadid=32693212"><span style="font-family: Calibri; color: #0000ff; font-size: small;">this</span></a><span style="font-family: Calibri; font-size: small;"> page).</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="mso-ansi-language: EN-US" lang="EN-US"><span style="font-size: small;"><span style="font-family: Calibri;"> <img class="alignnone size-full wp-image-586" src="http://www.buit.org/wp-content/uploads/2009/07/create-action1.png" alt="create-action1" width="257" height="240" /><span style="mso-bidi-font-size: 10.0pt"></span><br />
Program/script:    Powershell.exe<br />
Add arguments:<span style="mso-tab-count: 1">    </span>-command Remove-QADGroupMember –identity RECEPTION –member ‘$(MemberName)’</span></span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">And click ok twice.</span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-ansi-language: EN-US" lang="EN-US">Now the user is automatically removed from the group RECEPTION after it is added to the SALES group. (if it doesn’t work, check the “Run with highest privileges” option in the tab “General”. </span>UAC can block this action).</span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-size: small;"><span style="font-family: Calibri;"><span style="mso-ansi-language: EN-US" lang="EN-US">Of course this can be fine-tuned, but you get the idea right? </span>Now it is possible to create all sort of tasks that use data passed through from an event! </span></span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNoSpacing" style="MARGIN: 0cm 0cm 0pt"><span style="font-family: Calibri; font-size: small;">Regards,<br />
Benno Zelders</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2009/07/16/event-based-triggered-tasks/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VMWare ThinApp now able to virtualize MS Groove</title>
		<link>http://www.buit.org/2009/07/05/vmware-thinapp-now-able-to-virtualize-ms-groove/</link>
		<comments>http://www.buit.org/2009/07/05/vmware-thinapp-now-able-to-virtualize-ms-groove/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 09:34:08 +0000</pubDate>
		<dc:creator>Elger van der Avoird</dc:creator>
				<category><![CDATA[Groove]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=524</guid>
		<description><![CDATA[In an experiment in cooperation with some collegues @ VMWare and CAPGemini we developed a virtualized, portable MS Groove environment that can be started from a USB device. We had to call in support from VMWare because ThinApp wouldn&#8217;t start Groove. After making a bug report VMWare took it up seriously and supplied me with a version that does [...]]]></description>
			<content:encoded><![CDATA[<p>In an experiment in cooperation with some collegues @ VMWare and CAPGemini we developed a virtualized, portable MS Groove environment that can be started from a USB device. We had to call in support from VMWare because ThinApp wouldn&#8217;t start Groove. After making a bug report VMWare took it up seriously and supplied me with a version that does work! We are definately moving forward here; Groove without any additional infrastructural needs or traditional installation, running without administrative credentials and from a portable device is now very real. (will it work on Windows 7? More work to be done&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2009/07/05/vmware-thinapp-now-able-to-virtualize-ms-groove/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Passed the Windows 7 exam</title>
		<link>http://www.buit.org/2009/06/26/passed-the-windows-7-exam/</link>
		<comments>http://www.buit.org/2009/06/26/passed-the-windows-7-exam/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 09:25:09 +0000</pubDate>
		<dc:creator>Erik Luppes</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.buit.org/2009/06/26/passed-the-windows-7-exam/</guid>
		<description><![CDATA[2 months ago I did the Windows 7 beta exam. http://www.buit.org/2009/05/05/windows-7-beta-exam-071-680/ Today I noticed on my transcript that I&#8217;ve passed the exam. Nice timing from Microsoft, cause last 2 weeks I&#8217;ve passed every Server 2008 exam for my MCITP Admin and MCITP Enterprise Admin.]]></description>
			<content:encoded><![CDATA[<p>2 months ago I did the Windows 7 beta exam.<br />
<a title="My article on the Windows 7 beta exam." href="http://www.buit.org/2009/05/05/windows-7-beta-exam-071-680/" target="_self">http://www.buit.org/2009/05/05/windows-7-beta-exam-071-680/</a></p>
<p>Today I noticed on my transcript that I&#8217;ve passed the exam. Nice timing from Microsoft, cause last 2 weeks I&#8217;ve passed every Server 2008 exam for my MCITP Admin and MCITP Enterprise Admin. <img src='http://www.buit.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2009/06/26/passed-the-windows-7-exam/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Citrix iForum Benelux &#8211; An Impression</title>
		<link>http://www.buit.org/2009/06/12/citrix-iforum-benelux-an-impression/</link>
		<comments>http://www.buit.org/2009/06/12/citrix-iforum-benelux-an-impression/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 09:41:13 +0000</pubDate>
		<dc:creator>Elger van der Avoird</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[iForum]]></category>
		<category><![CDATA[SBC]]></category>

		<guid isPermaLink="false">http://www.buit.org/?p=511</guid>
		<description><![CDATA[  On the 9th and 10th of june 2009, I visited the Citrix iForum Benelux 2009: iForum is the event where virtualisation, networking and application delivery meet. The 9th of june offered two workshops of which I attend the one hosted by CDG: &#8216;Optimizing your datacenter with Citrix and Novell Platespin&#8217;. Products covered where Novell Platespin [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-515 alignright" src="http://www.buit.org/wp-content/uploads/2009/06/citrix_iforum.bmp" alt="citrix_iforum" /></p>
<p> </p>
<p>On the 9th and 10th of june 2009, I visited the Citrix iForum Benelux 2009:</p>
<p><span>iForum is the event where </span><strong>virtualisation<span>, </span>networking<span> </span></strong><span>and </span><strong>application delivery</strong><span> meet.</span></p>
<p><span><strong>The 9th of june</strong> offered two workshops of which I attend the one hosted by CDG: <em>&#8216;Optimizing your datacenter with Citrix and Novell Platespin&#8217;.</em><strong> </strong>Products covered where Novell Platespin Recon and Migrate, CItrix XenApp, XenServer, XenDesktop and Provisioning Server. The workshop featured a nice package of demo&#8217;s on screen. I think a Provisioning Server brings some very nice features to the Citrix productline. The main worry of every Citrix admin (how do I keep my XenApp servers identical? ) isn&#8217;t much of a challenge anymore with provisioning server, which streams a single read-only vDisk to every XenApp server via PXE. A major downside is obviously the load on the network at boot time.</span></p>
<p><span>After the workshop I checked into my hotel and prepared for an interesing evening programm fully loaded with &#8220;networkiwork related consumptions&#8230; Accompanied by a live performance of the greatest rock band The Netherlands have ever produced: Golden Earring (still going strong despite of being in their sixties). </span> </p>
<p><span><img class="alignleft size-full wp-image-513" src="http://www.buit.org/wp-content/uploads/2009/06/ge.jpg" alt="Golden Earring" width="541" height="130" /></span></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><span><span><strong></strong></span></span> </p>
<p><span><span><strong>The 10th of june</strong> was the &#8220;real&#8221; conference day; lots of workshops to choose from. With a very interesing opening keynote by Mark Templeton (CEO Citrix), introduced (in Double Dutch, quite understandable for native dutch speakers) by Rob van der Hoeven (Area Vice President Benelux). Mark Templeton presented his vision on tomorrows workspace and the direction Citrix is heading to provide solutions to the challenges of the (near) future.  Introducing <a title="Citrix Dazzle" href="http://www.citrix.com/English/ps2/products/feature.asp?contentID=1690066" target="_blank">Dazzle as an iTunes-like portal </a>where enduser can &#8220;shop&#8221; their own applicationset which can also incorporate 3rd party webapplications etc. <a title="Citrix Reciever" href="http://community.citrix.com/display/xa/Citrix+Receiver+for+iPhone" target="_blank">Citrix Reciever for iPhone </a>(windows mobile coming soon) bringing the amount of citrix clients down to (the power of) 1. Futhermore, introducing<a title="XenClient" href="http://www.citrix.com/English/ps2/products/feature.asp?contentID=1685500" target="_blank"> XenClient</a>: a hypervisor solution for the desktop allowing endusers to switch easily between their own private OS and the controlled environment of the corporate desktop also availble for MAC. This promises to be a very interesting product indeed, especially because of its pricing: <strong>FREE </strong>Also free of charge is the use of XenServer, which is now the preferred platform for hosting XenApp and incorporated some interesting features like XenMotion (vMotion) at no additional costs&#8230; Since results of virualized XenApp environments on other (vmware) products varied, XenServer is definately the way to go!</span></span></p>
<p> My workshop program for the day:</p>
<ol>
<li>
<div class="programma_text_seminar">Keynote: Mark Templeton, CEO &amp; President of Citrix Systems Inc. &amp; Rob van der Hoeven, Area Vice President Citrix Systems Benelux</div>
</li>
<li>
<div class="programma_text_seminar"><a href="http://www.citrixiforumbenelux.com/Program/ViewSeminar/215/">Virtualize your XenApp: how to maximize XenApp server potential</a> by Martijn Bosschaart</div>
</li>
<li>
<div class="programma_text_seminar"><a href="http://www.citrixiforumbenelux.com/Program/ViewSeminar/223/">Meet the Experts &#8211; Ask the hard questions!</a> by Thomas Zell, Derek Thorslund, Simon Frost, Rob Sanders and Jan-Frans Lemmens</div>
</li>
<li>
<div class="programma_text_seminar">LUNCH</div>
</li>
<li>
<div class="programma_text_seminar"><a href="http://www.citrixiforumbenelux.com/Program/ViewSeminar/232/">Citrix Receiver: the new framework to manage your Citrix clients</a> by Simon Frost</div>
</li>
<li>
<div class="programma_text_seminar"><a href="http://www.citrixiforumbenelux.com/Program/ViewSeminar/244/">Best Practices XenApp</a> by Rob Sanders</div>
</li>
<li>
<div class="programma_text_seminar"><a href="http://www.citrixiforumbenelux.com/Program/ViewSeminar/254/">XenServer 5 &#8211; what the other virtualisation guys don&#8217;t want you to know</a> by Peter Bats</div>
</li>
<li>
<div class="programma_text_seminar">Closing keynote</div>
</li>
</ol>
<div class="programma_text_seminar">All in all is has been a very interesting two days with lots to think about.</div>
<div class="programma_text_seminar">Mark Templeton announced Citrix Synergy is going to be extended to Europe and split into Synergy Autumn and Spring. So please all pre-register for <a title="Citrix Synergy" href="http://www.citrix.nl/English/NE/events/event.asp?eventID=1854419" target="_blank">Synergy Autumn 2010 </a>and keep an eye on the <a title="iForum" href="http://www.citrixiforumbenelux.com/" target="_blank">Citrix iForum site</a> and I&#8217;ll meet you there!  </div>
]]></content:encoded>
			<wfw:commentRss>http://www.buit.org/2009/06/12/citrix-iforum-benelux-an-impression/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
