Wednesday, February 29, 2012
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
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)
Monday, February 27, 2012
Sharepoint 2010 : Ribbon & Rich Text Editor CSS
Base CSS classes - Ribbon color changes
http://erikswenson.blogspot.com/2010/01/sharepoint-2010-base-css-classes.html
Managing the Rich Text Editor CSS and the RTE Menus
http://mosshowto.blogspot.com/2009/12/sharepoint-2010-wiki-styles.html
http://erikswenson.blogspot.com/2010/01/sharepoint-2010-base-css-classes.html
Managing the Rich Text Editor CSS and the RTE Menus
http://mosshowto.blogspot.com/2009/12/sharepoint-2010-wiki-styles.html
Saturday, February 25, 2012
Saturday, February 18, 2012
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
GO
EXEC sp_updatestats
GO
Tuesday, February 7, 2012
Monday, February 6, 2012
Subscribe to:
Posts (Atom)