only My site

Wednesday, February 29, 2012

Sharepoint 2010 : Configure metadata navigation settings

Sharepoint 2010 : FilePlan & metaEngine Lookup field

Creating a Local FilePlan in SharePoint and a metaEngine Lookup field

Sharepoint 2010 : User Permission Report

Usually we may required a report to show to the management that who is doing what role and their permissions. We need to use Power shell for this.

To display the output in the screen
$urlWeb = "http://BalaOnWeb.Com/Public"
Get-SPUser -Web $urlWeb select UserLogin, @{name="Exlicit given roles";expression={$_.Roles}}, @{name="Roles given via groups";expression={$_.Groups %{$_.Roles}}},Groups format-Table -Wrap


To display the output in a Text file
Get-SPUser -Web $urlWeb select UserLogin, @{name="Exlicit given roles";expression={$_.Roles}}, @{name="Roles given via groups";expression={$_.Groups %{$_.Roles}}},Groups format-Table -Auto Out-File c:\scripts\13UserPermissionsReport-security.txt


Get-SPUser -Web $urlWeb select UserLogin, @{name="Exlicit given roles";expression={$_.Roles}}, @{name="Roles given via groups";expression={$_.Groups %{$_.Roles}}},Groups format-Table -Wrap Out-File c:\scripts\13UserPermissionsReport-security.txt


Tuesday, February 28, 2012

Sharepoint 2010 : Customize the My Profile (mySite)

Usually the MySite will have a set of Tabs which all the enterprises may not need it. So sharepoint have the facility to customize the UI and the following is the steps and provided you have the site admin and owner rights.




Click on Site Actions > Site Settings > Look and Feel > Quick Launch

Wednesday, February 15, 2012

Add Site to Local Intranet Zone Group Policy

However how do you do this using group policy?


Simply perform the following actions:


Computer Configuration>Administrattive Templates>Windows Components>Internet Explorer>Internet Control Panel>Security Page...


Then here you can find the policy for "Site to Zone Assignment List"


You will need to enable it then add your url's right in there. Each zone assignment is going to have a numerical value. For entries into the trusted zone, use the value "2".


http://clintboessen.blogspot.com/2010/03/add-site-to-local-intranet-zone-group.html

Friday, February 10, 2012

ReIndexing Database Tables and Update Statistics on Tables

EXEC sp_MSforeachtable @command1="print '?' DBCC DBREINDEX ('?', ' ', 80)"
GO
EXEC sp_updatestats
GO