<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ITNotes.Net</title>
	
	<link>http://itnotes.net</link>
	<description>Various IT related notes and some blurts by Dan Jakubczak</description>
	<lastBuildDate>Wed, 16 Mar 2011 19:27:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ITNotesNet" /><feedburner:info uri="itnotesnet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>PrimalForms/PowerShell – Event Behavior: Tab Key or Enter Key</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/7qdwwCU3Uuc/</link>
		<comments>http://itnotes.net/2011/03/02/primalformspowershell-event-behavior-tab-key-or-enter-key/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 06:32:26 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Identity Management]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Event Behavior]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PrimalForms 2011]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=293</guid>
		<description><![CDATA[In this article I wanted to expand on the previous post (http://itnotes.net/2011/01/03/primalformspowershell-event-behavior-enter-key-and-active-directory-lookup/) &#8230; Which captured the Event Behavior: KeyPress which was used to trigger an action after the Enter Key was pressed. During a project to allow our admins to change the manager field in our AD LDS Identity Store I was coding a Textbox to [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I wanted to expand on the previous post (<a href="http://itnotes.net/2011/01/03/primalformspowershell-event-behavior-enter-key-and-active-directory-lookup/">http://itnotes.net/2011/01/03/primalformspowershell-event-behavior-enter-key-and-active-directory-lookup/</a>) &#8230;</p>
<p>Which captured the Event Behavior: KeyPress which was used to trigger an action after the Enter Key was pressed.</p>
<p>During a project to allow our admins to change the manager field in our AD LDS Identity Store I was coding a Textbox to be triggered with the tab key, but low and behold they TAB key is not captured by default by the KeyDown, KeyPress or KeyUp Events.</p>
<p>Per the Microsoft Articles:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keydown.aspx">http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keydown.aspx</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keyup.aspx">http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keyup.aspx</a></p>
<p>Certain keys, such as the TAB, RETURN, ESC, and arrow keys are handled by controls automatically. To have these keys raise the KeyDown event, you must override the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.isinputkey.aspx">IsInputKey</a> method in each control on your form. The code for the override of the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.isinputkey.aspx">IsInputKey</a> would need to determine if one of the special keys is pressed and return a value of true. Instead of overriding the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.isinputkey.aspx">IsInputKey</a> method, you can handle the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.previewkeydown.aspx">PreviewKeyDown</a> event and set the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.previewkeydowneventargs.isinputkey.aspx">IsInputKey</a> property to true.</p>
<p>Note the IsInputKey method must be set per control, so there is no need to turn it back off for other controls on the same form.</p>
<p>So in this example I start with a basic form with two labels, two textboxes, and a status bar to show when the TAB or ENTER keys are captured.</p>
<p><a href="http://itnotes.net/wp-content/uploads/2011/03/Capture_Enter.jpg"><img class="alignnone size-full wp-image-294" title="Capture_Enter" src="http://itnotes.net/wp-content/uploads/2011/03/Capture_Enter.jpg" alt="" width="609" height="357" /></a></p>
<p>For the Event Behaivior: PreviewKeyDown for $textbox1 I setup the following code:</p>
<p>$textbox1_PreviewKeyDown=[System.Windows.Forms.PreviewKeyDownEventHandler]{<br />
     #Event Argument: $_ = [System.Windows.Forms.PreviewKeyDownEventArgs]<br />
     $_.IsInputKey = $true<br />
}</p>
<p>For the Event Behaivor: KeyDown for $textbox1 I setup the following code:</p>
<p>$textbox1_KeyDown=[System.Windows.Forms.KeyEventHandler]{<br />
#Event Argument: $_ = [System.Windows.Forms.KeyEventArgs]<br />
      If ($_.KeyValue -eq 9) {<br />
           $statusbar1.Text = &#8220;Tab key was pressed&#8221;<br />
           $textbox2.Focus()<br />
           $textbox2.Clear()<br />
     }<br />
     Else {$statusbar1.Text = $_.KeyValue}<br />
}</p>
<p>Notes:</p>
<p>     1. I used the KeyDown event because the KeyPress event is not raised by noncharacter keys; however, the noncharacter keys do raise the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keydown.aspx">KeyDown</a> and <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keyup.aspx">KeyUp</a> events.</p>
<p>     2. I use $textbox2.Focus() to move to the next control because the TAB key is no longer coded to complete that default action.</p>
<p>Set $textbox1 Events to the previous code sets.</p>
<p><a href="http://itnotes.net/wp-content/uploads/2011/03/textbox1.jpg"><img class="alignnone size-full wp-image-295" title="$textbox1" src="http://itnotes.net/wp-content/uploads/2011/03/textbox1.jpg" alt="" width="366" height="238" /></a></p>
<p>To show the different between the two examples I coded $textbox2 Event Behavior: KeyPress to capture the ENTER key</p>
<p>$textbox2_KeyPress=[System.Windows.Forms.KeyPressEventHandler]{<br />
#Event Argument: $_ = [System.Windows.Forms.KeyPressEventArgs]<br />
      If ($_.KeyChar -eq 13) {<br />
           $statusbar1.Text = &#8220;Enter Key was pressed&#8221;<br />
           $textbox1.Focus()<br />
           $textbox1.Clear()<br />
     }<br />
}</p>
<p>Set $textbox2 to the previous code set.</p>
<p><a href="http://itnotes.net/wp-content/uploads/2011/03/textbox2.jpg"><img class="alignnone size-full wp-image-296" title="$textbox2" src="http://itnotes.net/wp-content/uploads/2011/03/textbox2.jpg" alt="" width="366" height="197" /></a></p>
<p>As you may have noticed in the Event to capture the TAB key we used <strong>KeyValue</strong> and in the Event to capture the ENTER key we used <strong>KeyChar</strong>.</p>
<p>KeyCode, KeyData or KeyValue must be used because KeyChar cannot capture the following Keys</p>
<p>The TAB key.</p>
<p>INSERT and DELETE.</p>
<p>HOME.</p>
<p>END.</p>
<p>PAGE UP and PAGE DOWN.</p>
<p>F1-F2.</p>
<p>ALT.</p>
<p>Arrow keys.</p>
<p>For more details about the differences between KeyCode, KeyData, and KeyValue:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.keycode.aspx">http://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.keycode.aspx</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.keydata.aspx">http://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.keydata.aspx</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.keyvalue.aspx">http://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.keyvalue.aspx</a></p>
<p>In my next post I would like to show examples of how to use KeyChar to to control the field format of a textbox used for items like ZipCode or Telephone Numbers.</p>
<p>~ITNotes</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/7qdwwCU3Uuc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2011/03/02/primalformspowershell-event-behavior-tab-key-or-enter-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://itnotes.net/2011/03/02/primalformspowershell-event-behavior-tab-key-or-enter-key/</feedburner:origLink></item>
		<item>
		<title>PowerShell – Multiple (-and) (-or) within a single If statement</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/qWJa_-nZikw/</link>
		<comments>http://itnotes.net/2011/02/25/powershell-multiple-and-or-within-a-single-if-statement/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 19:30:32 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Functions and Subs]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell 2.0]]></category>
		<category><![CDATA[PowerShell If Statement]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=286</guid>
		<description><![CDATA[I had a hard time finding examples on the web on how or if you could code multiple If&#8217;s into a single If statement, so I thought I would just quick post up an example once I figured out how to do it. Perhaps I wasn&#8217;t looking in the right places but all the examples I [...]]]></description>
			<content:encoded><![CDATA[<p>I had a hard time finding examples on the web on how or if you could code multiple If&#8217;s into a single If statement, so I thought I would just quick post up an example once I figured out how to do it. Perhaps I wasn&#8217;t looking in the right places but all the examples I saw were just a single (-and) or (-or) in the code.</p>
<p><em><strong>So based on being able to code an If statement in either of the following fashions:</strong></em></p>
<p>If ($someAttribute -eq $false -or $someAttribute -eq $Null){</p>
<p>}</p>
<p><em><strong>or the following:</strong></em></p>
<p>If (($someAttribute -eq $false) -or ($someAttribute -eq $Null)){</p>
<p>}</p>
<p><em><strong>Then we should be able to do a combined effort:</strong></em></p>
<p>If (($someAttribute -eq $false -or $someAttribute -eq $Null) -and ($someUser -eq &#8220;UserID123&#8243;)){<br />
       Write-Host &#8220;Switching to True&#8221;<br />
       Set-QADUser $someUser -Service &#8220;MyDomain.org&#8221; -ObjectAttributes @{$someAttribute = $True}<br />
       If (!$?) {Write-Host &#8220;Error: $($error[0])&#8221;}<br />
}</p>
<p>So if $someAttribute is <strong>either</strong> <em>$false</em> <strong>or</strong> <em>$Null</em> <strong>AND</strong> #someUser <strong>equals</strong> &#8220;<em>UserID123&#8243;</em> then do something&#8230; in this case I switch the Attribute someAttribute to $true and do some error checking.</p>
<p>~ITNotes</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/qWJa_-nZikw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2011/02/25/powershell-multiple-and-or-within-a-single-if-statement/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://itnotes.net/2011/02/25/powershell-multiple-and-or-within-a-single-if-statement/</feedburner:origLink></item>
		<item>
		<title>PrimalForms/PowerShell – Event Behavior: Enter Key and Active Directory Lookup</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/XfyfEGifDY0/</link>
		<comments>http://itnotes.net/2011/01/03/primalformspowershell-event-behavior-enter-key-and-active-directory-lookup/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 19:36:09 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell 2.0]]></category>
		<category><![CDATA[PrimalForms]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=262</guid>
		<description><![CDATA[The next event behavior I wanted to cover was hitting a Enter Key within a textbox control and have it trigger another event. In this examble I have three basic controls a textbox,a button and a listbox.  I am using the textbox as a Search Textbox, after entering text to search the end user can either [...]]]></description>
			<content:encoded><![CDATA[<p>The next event behavior I wanted to cover was hitting a Enter Key within a textbox control and have it trigger another event.</p>
<p>In this examble I have three basic controls a textbox,a button and a listbox.  I am using the textbox as a Search Textbox, after entering text to search the end user can either press Enter or the &#8216;find&#8217; button.</p>
<p><a href="http://itnotes.net/wp-content/uploads/2010/12/Basic-Form-w_txb-btn-lst.jpg"><img class="alignnone size-full wp-image-263" title="Basic Form w_txb-btn-lst" src="http://itnotes.net/wp-content/uploads/2010/12/Basic-Form-w_txb-btn-lst.jpg" alt="" width="283" height="319" /></a></p>
<p>First add the Event Handler for the Textbox to response only to the Enterkey.</p>
<p><a href="http://itnotes.net/wp-content/uploads/2010/12/Event_KeyPress.jpg"><img class="alignnone size-full wp-image-264" title="Event_KeyPress" src="http://itnotes.net/wp-content/uploads/2010/12/Event_KeyPress.jpg" alt="" width="646" height="216" /></a></p>
<p>Next add the Event Handler to search Active Directory using the text from the TextBox($txbFind) after the button($btnFind) is single clicked.</p>
<p><a href="http://itnotes.net/wp-content/uploads/2010/12/Event_Click1.jpg"><img class="alignnone size-full wp-image-265" title="Event_Click" src="http://itnotes.net/wp-content/uploads/2010/12/Event_Click1.jpg" alt="" width="305" height="150" /></a></p>
<p>Next the code for handler_button1_Click. First the Event handler clears the listbox ($lstResults) then it searches Active Directory with the text from the Textbox ($txbFind). Then if the results if not null, the handler will list the results in the listbox($lstResults)</p>
<p>$handler_btnFind_Click={<br />
$lstResults.Items.Clear()<br />
$Users = get-qaduser $txbFind.text -service &#8216;MyDomain.edu&#8217; -sizelimit 0 -includedproperties displayName | Sort displayName | select displayName<br />
 if ($Users -ne $Null) {<br />
  foreach ($User in $Users){<br />
   $lstResults.Items.add($User.displayName)<br />
  }<br />
 }<br />
}</p>
<p>Lastly we add code to the Event handler for the textbox to trigger the button($btnFind) when the Enter Key is pressed and give focus to the listbox($lstResults).</p>
<p>$handler_txbFind_KeyPress=[System.Windows.Forms.KeyPressEventHandler]{<br />
If ($_.KeyChar -eq 13){<br />
 $btnFind.PerformClick()<br />
 $lstResults.Focus()<br />
}<br />
}</p>
<p>The results show the matching users in the listbox</p>
<p><a href="http://itnotes.net/wp-content/uploads/2011/01/Search-Results.jpg"><img class="alignnone size-full wp-image-271" title="Search Results" src="http://itnotes.net/wp-content/uploads/2011/01/Search-Results.jpg" alt="" width="278" height="314" /></a></p>
<p>Using this code I created an admin tool that modifys anything from address to exchange administration. Happy Coding!</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/XfyfEGifDY0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2011/01/03/primalformspowershell-event-behavior-enter-key-and-active-directory-lookup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://itnotes.net/2011/01/03/primalformspowershell-event-behavior-enter-key-and-active-directory-lookup/</feedburner:origLink></item>
		<item>
		<title>PrimalForms/PowerShell – Event Behavior: Button Click and Switch Tab</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/eGeGMKSqHo4/</link>
		<comments>http://itnotes.net/2010/12/30/primalformspowershell-event-behavior-button-click-and-switch-tab/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 22:38:07 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Event Handler]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell 2.0]]></category>
		<category><![CDATA[PrimalForms]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=248</guid>
		<description><![CDATA[I decided that I would post how to code a few Event Behaviors that could be coded with PowerShell using PrimalForms. You could just use your basic PowerShell Editor but PrimalForms is just my tool of choice. So I start with a basic form (Two Tabs and a Button) Then on the Events tab of [...]]]></description>
			<content:encoded><![CDATA[<p>I decided that I would post how to code a few Event Behaviors that could be coded with PowerShell using PrimalForms. You could just use your basic PowerShell Editor but PrimalForms is just my tool of choice.</p>
<p>So I start with a basic form (Two Tabs and a Button)</p>
<p><a href="http://itnotes.net/wp-content/uploads/2010/12/Basic-Form2.jpg"><img class="size-full wp-image-251 alignnone" title="Basic Form" src="http://itnotes.net/wp-content/uploads/2010/12/Basic-Form2.jpg" alt="" width="576" height="469" /></a></p>
<p>Then on the Events tab of $button1, double click &#8216;click&#8217;</p>
<p><a href="http://itnotes.net/wp-content/uploads/2010/12/Event_Click.jpg"><img class="size-full wp-image-252 alignnone" title="Event_Click" src="http://itnotes.net/wp-content/uploads/2010/12/Event_Click.jpg" alt="" width="305" height="150" /></a></p>
<p>Add the following code to the Event handler:</p>
<p> $handler_button1_Click={<br />
#TODO: Place custom script here<br />
     If ($tabpage1.Visible -eq $true) {<br />
          $tabcontrol1.SelectTab(&#8216;tabpage2&#8242;)<br />
     }<br />
     ElseIf ($tabpage2.Visible -eq $true) {<br />
           $tabcontrol1.SelectTab(&#8216;tabpage1&#8242;)<br />
     }<br />
}</p>
<p>Clicking the button switches from tab to tab. Way cool!</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/eGeGMKSqHo4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2010/12/30/primalformspowershell-event-behavior-button-click-and-switch-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://itnotes.net/2010/12/30/primalformspowershell-event-behavior-button-click-and-switch-tab/</feedburner:origLink></item>
		<item>
		<title>Glimspe of the PrimalForms 2011 and PrimalScript 2011 Release?</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/p5QKDg-2EtA/</link>
		<comments>http://itnotes.net/2010/11/11/glimspe-of-the-primalforms-2011-and-primalscript-2011-release/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 21:41:52 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell 2.0]]></category>
		<category><![CDATA[PrimalForms]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=235</guid>
		<description><![CDATA[I have been waiting impatiently for the release of PrimalForms 2011, my current project requires multi-form support so the sooner I can get my hands on this the better. Today I found the product pages for PrimalForms 2011 and PrimalScript 2011. Neither product is listed under their current product list. PrimalForms 2011: http://www.primaltools.com/products/primalforms2011.asp PrimalScript 2011 http://www.primaltools.com/products/primalscript2011.asp]]></description>
			<content:encoded><![CDATA[<p>I have been waiting impatiently for the release of PrimalForms 2011, my current project requires multi-form support so the sooner I can get my hands on this the better.</p>
<p>Today I found the product pages for PrimalForms 2011 and PrimalScript 2011. Neither product is listed under their current product list.</p>
<p>PrimalForms 2011: <a href="http://www.primaltools.com/products/primalforms2011.asp">http://www.primaltools.com/products/primalforms2011.asp</a></p>
<p>PrimalScript 2011 <a href="http://www.primaltools.com/products/primalscript2011.asp">http://www.primaltools.com/products/primalscript2011.asp</a></p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/p5QKDg-2EtA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2010/11/11/glimspe-of-the-primalforms-2011-and-primalscript-2011-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://itnotes.net/2010/11/11/glimspe-of-the-primalforms-2011-and-primalscript-2011-release/</feedburner:origLink></item>
		<item>
		<title>Active Directory Federation Services (ADFS) 2.0 RTW Released!</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/bkRbRJ2A5EM/</link>
		<comments>http://itnotes.net/2010/05/05/active-directory-federation-services-adfs-2-0-rtw-released/#comments</comments>
		<pubDate>Wed, 05 May 2010 15:49:10 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Identity Management]]></category>
		<category><![CDATA[Active Directory Federation Services]]></category>
		<category><![CDATA[ADFS 2.0]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=228</guid>
		<description><![CDATA[The rumors that ADFS 2.0 would be released today were true. Microsoft released Active Directory Federation Services (ADFS) 2.0 RTW today. I know RTM is Released To Manufacturing so does RTW mean Released to World? Download ASFS 2.0 http://technet.microsoft.com/en-us/evalcenter/ee476597.aspx OR http://www.microsoft.com/downloads/details.aspx?FamilyID=118c3588-9070-426a-b655-6cec0a92c10b&#38;displayLang=en Additional Resources Active Directory Federation Services (AD FS) 2.0 http://technet.microsoft.com/en-us/library/adfs2(WS.10).aspx AD FS 2.0 Step-by-Step and How [...]]]></description>
			<content:encoded><![CDATA[<p>The rumors that ADFS 2.0 would be released today were true. Microsoft released Active Directory Federation Services (ADFS) 2.0 RTW today. I know RTM is Released To Manufacturing so does RTW mean Released to World?</p>
<p><strong>Download ASFS 2.0<br />
</strong><a title="http://technet.microsoft.com/en-us/evalcenter/ee476597.aspx" href="http://technet.microsoft.com/en-us/evalcenter/ee476597.aspx" target="_blank">http://technet.microsoft.com/en-us/evalcenter/ee476597.aspx</a><br />
<strong>OR</strong><br />
<a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=118c3588-9070-426a-b655-6cec0a92c10b&amp;displayLang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=118c3588-9070-426a-b655-6cec0a92c10b&amp;displayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=118c3588-9070-426a-b655-6cec0a92c10b&amp;displayLang=en</a></p>
<p><strong><span style="text-decoration: underline;">Additional Resources</span></strong></p>
<p><strong>Active Directory Federation Services (AD FS) 2.0<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2(WS.10).aspx</a></p>
<p><strong>AD FS 2.0 Step-by-Step and How To Guides</strong><br />
<a title="http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx</a></p>
<p><strong>Introducing AD FS 2.0</strong><br />
<a title="http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx</a></p>
<p><strong>AD FS 2.0 Terminology<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx</a></p>
<p><strong>Using Windows PowerShell for AD FS 2.0<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx</a></p>
<p><strong>Web Resources for AD FS 2.0<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx</a></p>
<p><strong>How To&#8230;</strong><br />
<a title="http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx</a></p>
<p>~ITNotes</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/bkRbRJ2A5EM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2010/05/05/active-directory-federation-services-adfs-2-0-rtw-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://itnotes.net/2010/05/05/active-directory-federation-services-adfs-2-0-rtw-released/</feedburner:origLink></item>
		<item>
		<title>Active Directory Federation Services (ADFS) 2.0 Release 5.5.2010?</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/0NfEa-oP898/</link>
		<comments>http://itnotes.net/2010/05/05/active-directory-federation-services-adfs-2-0-release-5-5-2010/#comments</comments>
		<pubDate>Wed, 05 May 2010 06:19:48 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Identity Management]]></category>
		<category><![CDATA[Active Directory Federation Services]]></category>
		<category><![CDATA[ADFS 2.0]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=224</guid>
		<description><![CDATA[There have been rumors floating around that ADFS 2.0 would be released today. As I was stumbling around Technet today I ran across the articles that were updated 5-5-2010. Perhaps the rumors are true, we will soon see. Keep you eyes peeled for a update from Team Geneva&#8217;s blog. Active Directory Federation Services (AD FS) 2.0 [...]]]></description>
			<content:encoded><![CDATA[<p>There have been rumors floating around that ADFS 2.0 would be released today. As I was stumbling around Technet today I ran across the articles that were updated 5-5-2010. Perhaps the rumors are true, we will soon see. Keep you eyes peeled for a update from <a title="Team Geneva's Blog" href="http://blogs.msdn.com/card/default.aspx" target="_blank">Team Geneva&#8217;s blog</a>.</p>
<p><strong>Active Directory Federation Services (AD FS) 2.0<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2(WS.10).aspx</a></p>
<p><strong>AD FS 2.0 Step-by-Step and How To Guides</strong><br />
<a title="http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx</a></p>
<p><strong>Introducing AD FS 2.0</strong><br />
<a title="http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx</a></p>
<p><strong>AD FS 2.0 Terminology<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx</a></p>
<p><strong>Using Windows PowerShell for AD FS 2.0<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx</a></p>
<p><strong>Web Resources for AD FS 2.0<br />
</strong><a title="http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx</a></p>
<p><strong>How To&#8230;</strong><br />
<a title="http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx" href="http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx" target="_blank">http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx</a></p>
<p>and many more all dated 5-5-2010</p>
<p>~ITNotes</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/0NfEa-oP898" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2010/05/05/active-directory-federation-services-adfs-2-0-release-5-5-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://itnotes.net/2010/05/05/active-directory-federation-services-adfs-2-0-release-5-5-2010/</feedburner:origLink></item>
		<item>
		<title>TEC 2010 – Advanced Training on Microsoft Active Directory and FIM</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/8K5CI1hac1s/</link>
		<comments>http://itnotes.net/2010/03/10/tec-2010-advanced-training-on-microsoft-active-directory-and-fim/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 16:29:29 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Identity Management]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[TEC 2010]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=210</guid>
		<description><![CDATA[Today I registered for TEC 2010 which will be in Los Angeles this year. I have never attended TEC before but last year I was right down the road at TechED. I am still waiting to hear if I will be attending TechEd 2010 as well. I am excited to see some focus around Active [...]]]></description>
			<content:encoded><![CDATA[<p>Today I registered for TEC 2010 which will be in Los Angeles this year. I have never attended TEC before but last year I was right down the road at TechED. I am still waiting to hear if I will be attending TechEd 2010 as well. </p>
<p>I am excited to see some focus around Active Directory and Forefront Identity Manager at a conference especially since Forefront Identity Manager was just released to manufacturing. One of my fears in attending this conference this year was that FIM would be released after TEC 2010 and covered in greater detail at TechED 2010, now with the release of FIM I hope that is not the case. I have already seen some vendors providing extensions to FIM so this may be the best year to go to TEC so far.</p>
<p>I definitely will be posting some more information and pictures during the event. Feel free to email me with any suggestions around the conference or questions you would like to be asked. ITNotes@gmail.com</p>
<p>~ITNotes</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/8K5CI1hac1s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2010/03/10/tec-2010-advanced-training-on-microsoft-active-directory-and-fim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://itnotes.net/2010/03/10/tec-2010-advanced-training-on-microsoft-active-directory-and-fim/</feedburner:origLink></item>
		<item>
		<title>PowerShell – ProperCase Function</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/Dwj4cvlhbBI/</link>
		<comments>http://itnotes.net/2010/03/01/powershell-propercase-function/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 19:34:32 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Identity Management]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Functions and Subs]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=197</guid>
		<description><![CDATA[Change any case to Proper Case (&#8216;ITNOTES DoT net&#8217; to &#8216;Itnotes Dot Net&#8217;): This is very useful for us during scripted user creations when the usernames and such from the source were in random cases. This script could also be useful with auto user provisioning with ILM/FIM 2010 from another datasource, we were using a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Change any case to Proper Case (&#8216;ITNOTES DoT net&#8217; to &#8216;Itnotes Dot Net&#8217;):</strong><br />
This is very useful for us during scripted user creations when the usernames and such from the source were in random cases. This script could also be useful with auto user provisioning with ILM/FIM 2010 from another datasource, we were using a VBScript that is much longer.</p>
<p>This script basically converts everything to lowercase then capitalizes the first letter of each word.</p>
<p>function ToProperCase ([String]$in)<br />
{<br />
 $in = $in.Tolower()<br />
 $textInfo = [System.Threading.Thread]::CurrentThread.CurrentCulture.TextInfo  <br />
 return $textInfo.ToTitleCase($in)<br />
}</p>
<p><em><strong>Example of use:</strong></em><br />
$Title = &#8220;ITNOTE DOT NET&#8221;<br />
ToProperCase($Title)</p>
<p><em>Returns:</em><br />
Itnotes Dot Net</p>
<p><em><strong>Complete Script</strong></em></p>
<p>function ToProperCase ([String]$in){<br />
 $in = $in.Tolower()<br />
 $textInfo = [System.Threading.Thread]::CurrentThread.CurrentCulture.TextInfo<br />
 return $textInfo.ToTitleCase($in)<br />
}<br />
$Title = &#8220;ITNOTE DOT NET&#8221;<br />
ToProperCase($Title)</p>
<p>As noted by Lee, here is a oneliner contributed by Jonathan Noble at <a href="http://www.jonoble.com/">http://www.jonoble.com/</a>. Thanks Lee.</p>
<p>(Get-Culture).TextInfo.ToTitleCase(&#8220;THIS IS MY STRING&#8221;.ToLower())</p>
<p>I am always in favor of shorter scripts nevertheless I also favor functions, so here is a much shorter function:</p>
<p>function ToProperCase ([String]$in){<br />
    return (Get-Culture).TextInfo.ToTitleCase($in.ToLower())<br />
}</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/Dwj4cvlhbBI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2010/03/01/powershell-propercase-function/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://itnotes.net/2010/03/01/powershell-propercase-function/</feedburner:origLink></item>
		<item>
		<title>New Role – Active Directory / Identity Management Engineer</title>
		<link>http://feedproxy.google.com/~r/ITNotesNet/~3/QViEvkdqzXk/</link>
		<comments>http://itnotes.net/2010/01/20/new-role-active-directory-identity-management-engineer/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:28:15 +0000</pubDate>
		<dc:creator>ITNotes</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Identity Management]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://itnotes.net/?p=183</guid>
		<description><![CDATA[I was recently promoted to our company&#8217;s Security Team as an Active Directory / Identity Management Engineer. So most of my future posts will be aimed towards those technologies and Group Policy. I will also continue to post some hopefully helpful VBScripts and PowerShell Scripts. I still have a few draft posts that I plan to [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently promoted to our company&#8217;s Security Team as an Active Directory / Identity Management Engineer. So most of my future posts will be aimed towards those technologies and Group Policy. I will also continue to post some hopefully helpful VBScripts and PowerShell Scripts. I still have a few draft posts that I plan to publish eventually that maybe helpful in the Windows Installer and Packaging Space however no new findings will be posted in this expertise.</p>
<p>Thanks for reading!</p>
<p>~ITNotes</p>
<img src="http://feeds.feedburner.com/~r/ITNotesNet/~4/QViEvkdqzXk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://itnotes.net/2010/01/20/new-role-active-directory-identity-management-engineer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://itnotes.net/2010/01/20/new-role-active-directory-identity-management-engineer/</feedburner:origLink></item>
	</channel>
</rss>

