
Wednesday, May 25, 2011
The specified file is larger than the maximum supported file size
This error occurs when user upload a file that size exceeding than the allowed limit. Normally SharePoint library allows only 50MB as default upload file size. If user wants to upload file that size more than 50 MB, the upload file size limit has to be increased in the Central Administration by Administrator.


Labels:
SharePoint File Upload
Wednesday, May 18, 2011
Office 2010 Product Guides
Microsoft has prepared good product guides for Office 2010 applications. It is very useful for Office 2010 beginners. Refer below URL to get all Office 2010 product guides.
http://www.microsoft.com/downloads/en/details.aspx?familyid=e690baf0-9b9a-4c47-88da-3a84f3e9b247
http://www.microsoft.com/downloads/en/details.aspx?familyid=e690baf0-9b9a-4c47-88da-3a84f3e9b247
Labels:
Office 2010
Tuesday, May 17, 2011
How to Hide Quick Launch in SharePoint 2010
The easiest way to hide the quick launch bar in a specific site/subsite is simple Style script/code.
1. Open the SharePoint site and switch to Edit Mode
2. Add the HTML Form Web Part from Forms webpart group
3. Select the web part and click “Edit HTML source” in Editor part
4. Use below code and click on Apply -- OK button
Labels:
Hide Quick Launch
Configuration Failed when installing SP 2010 on Windows 7
I found a very useful link that guides to solve most of the SharePoint 2010 installation issues on Windows 7 machine.
Friday, April 22, 2011
Find Users and Groups for Group Owner
SharePoint treat the domain group as a user. A new entry will be created in the userinfo list(hidden list) as soons as a new domain group added in sharepoint site collection or in the sub site directly. This entry will be created only one time for site collection. The userinfo list view accessable by passing _catelogs/users/simple.aspx in the URL (http://sitecollection:8080/_catelogs/user.simple.aspx).
In SharePoint SPGroup or Domain group can become a owner of another group in SharePoint(SPGroup and Domain Group). To find out the Onwed groups of a SPgroup or Domain Group use below source.
static void Main(string[] args)
{
try
{
using (SPSite siteColl = new SPSite("http://sitecollection/"))
{
//For nested SharePoint groups
SPGroupCollection groups = siteColl.RootWeb.Groups;
foreach (SPGroup group in groups)
{
if(group.Owner.ToString()=="GroupA" )
{
Console.WriteLine("\nGroup Name: " + group.Name + " Group Type: " + group.LoginName);
}
}
//For nested domain groups
SPUser usr=siteColl.RootWeb.AllUsers["domain\groupName"];
foreach (SPGroup domainGroup in usr.OwnedGroups)
{
Console.WriteLine("\nGroup Name: " + domainGroup.Name + " Group Type: " + domainGroup.LoginName);
}
}
}
catch (Exception ex)
{
Console.WriteLine("Error :"+ex.Message);
}
Console.WriteLine("Done");
Console.ReadLine();
}
In SharePoint SPGroup or Domain group can become a owner of another group in SharePoint(SPGroup and Domain Group). To find out the Onwed groups of a SPgroup or Domain Group use below source.
static void Main(string[] args)
{
try
{
using (SPSite siteColl = new SPSite("http://sitecollection/"))
{
//For nested SharePoint groups
SPGroupCollection groups = siteColl.RootWeb.Groups;
foreach (SPGroup group in groups)
{
if(group.Owner.ToString()=="GroupA" )
{
Console.WriteLine("\nGroup Name: " + group.Name + " Group Type: " + group.LoginName);
}
}
//For nested domain groups
SPUser usr=siteColl.RootWeb.AllUsers["domain\groupName"];
foreach (SPGroup domainGroup in usr.OwnedGroups)
{
Console.WriteLine("\nGroup Name: " + domainGroup.Name + " Group Type: " + domainGroup.LoginName);
}
}
}
catch (Exception ex)
{
Console.WriteLine("Error :"+ex.Message);
}
Console.WriteLine("Done");
Console.ReadLine();
}
Subscribe to:
Posts (Atom)