22 Ocak 2012 Pazar

Visual Studio Achievements !

It's been rumored for quite some time but it has officially released now !.

You can download the beta version of Achievements for VS 2010

It is just for VS2010  and not for Express version.


http://channel9.msdn.com/achievements/visualstudio

Some examples:

Go to Hell
Use go to in code

Field Master
Have 100 fields in a single class

Scroll Bar Wizard
Write a single line of 300 characters long.

Yeah, as you can see they are just for fun : )

11 Ocak 2012 Çarşamba

How to know which version of SharePoint 2010 you have

The simplest way I found is

Central Admin - Under Upgrade and Patch Management - Convert Farm License Type

There you can see which version is installed.


source:
http://www.sharepointedutech.com/2011/01/28/how-to-identify-which-version-of-sharepoint-2010-you-have-installed/sql

Changing Authentication type of a Web Application in SharePoint 2010


Changing Authentication type of a Web Application in SharePoint 2010


As you may experience, if you set up your Web App as Classic but you need Forms Authentication (using username-password to authorize people from outside network)
you need to change the authentication type to Claims based authentication.

In order to do that, you need the SP 2010 Management Shell.
You can start it from:
(Server) Start - All Programs - Microsoft SharePoint 2010 Products - SharePoint 2010 Management Shell run as Administrator


Type the commands:


$WebAppName = “http://sharepoint”
$account = "DOMAIN\Administrator"
$wa = get-SPWebApplication $WebAppName
Set-SPwebApplication $wa –AuthenticationProvider (New-SPAuthenticationProvider) –Zone Default

$wa = get-SPWebApplication $WebAppName
$account = (New-SPClaimsPrincipal -identity $account -identitytype 1).ToEncodedString()

$zp = $wa.ZonePolicies("Default")
$p = $zp.Add($account,"PSPolicy")
$fc=$wa.PolicyRoles.GetSpecialRole("FullControl")
$p.PolicyRoleBindings.Add($fc)
$wa.Update()

$wa = get-SPWebApplication $WebAppName
$wa.MigrateUsers($true)

Now you are able to use claims based authentication.


Source:
http://technet.microsoft.com/en-us/library/gg251985.aspx

Açık Akademi

Microsoft Açık Akademi adında SQL ve .Net üzerine başlangıç ve orta seviye eğitimler içeren ve tamamen bedava olan bir platform oluşturdu.

 İncelemenizi tavsiye ederim.

SharePoint Summit İstanbul

Aşağıdaki linkte SharePoint Summit teki tüm videoları ve sunumları izleyebilirsiniz.

http://www.sharepointsummitistanbul.com/tr/Sayfalar/Program.aspx

Bazı sunumlar Türkçe, bazıları İngilizce.