Identity Management

Active Directory Federation Services (ADFS) 2.0 RTW Released!

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&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 To Guides
http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx

Introducing AD FS 2.0
http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx

AD FS 2.0 Terminology
http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx

Using Windows PowerShell for AD FS 2.0
http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx

Web Resources for AD FS 2.0
http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx

How To…
http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx

~ITNotes

Tags: , , , ,

Active Directory Federation Services (ADFS) 2.0 Release 5.5.2010?

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’s blog.

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 To Guides
http://technet.microsoft.com/en-us/library/dd727938(WS.10).aspx

Introducing AD FS 2.0
http://technet.microsoft.com/en-us/library/adfs2-help-introducing(WS.10).aspx

AD FS 2.0 Terminology
http://technet.microsoft.com/en-us/library/adfs2-help-terminology(WS.10).aspx

Using Windows PowerShell for AD FS 2.0
http://technet.microsoft.com/en-us/library/adfs2-help-using-windows-powershell(WS.10).aspx

Web Resources for AD FS 2.0
http://technet.microsoft.com/en-us/library/adfs2-help-web-resources(WS.10).aspx

How To…
http://technet.microsoft.com/en-us/library/adfs2-help-how-to(WS.10).aspx

and many more all dated 5-5-2010

~ITNotes

Tags: , , , ,

TEC 2010 – Advanced Training on Microsoft Active Directory and FIM

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 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.

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

~ITNotes

Tags: , , ,

Wednesday, March 10th, 2010 Active Directory, Identity Management No Comments

PowerShell – ProperCase Function

Change any case to Proper Case (‘ITNOTES DoT net’ to ‘Itnotes Dot Net’):
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 from another datasource, we currently us a VBScript that is much longer.

This script basically converts everything to lowercase the capitalizes the first letter of each word.

?View Code POWERSHELL
function ToProperCase ([String]$in)
{
 $in = $in.Tolower()
 $textInfo = [System.Threading.Thread]::CurrentThread.CurrentCulture.TextInfo  
 return $textInfo.ToTitleCase($in)
}

Example of use

?View Code POWERSHELL
$Title = "ITNOTE DOT NET"
$Title = ToProperCase($Title)

Returns:

Itnotes Dot Net

Complete Script

?View Code POWERSHELL
function ToProperCase ([String]$in)
{
 $in = $in.Tolower()
 $textInfo = [System.Threading.Thread]::CurrentThread.CurrentCulture.TextInfo  
 return $textInfo.ToTitleCase($in)
$Title = "ITNOTE DOT NET"
$Title = ToProperCase($Title)

Tags: , ,

Monday, March 1st, 2010 Identity Management, Powershell No Comments

New Role – Active Directory / Identity Management Engineer

I was recently promoted to our company’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.

Thanks for reading!

~ITNotes

Tags: , ,

Wednesday, January 20th, 2010 Active Directory, Identity Management No Comments