Thursday, December 22, 2011

SharePoint 2010: Online PowerShell Command Builder Tool

Online PowerShell Command Builder Tool: The Windows PowerShell Command Builder for Microsoft SharePoint 2010 Products and Microsoft Office 365 is a Silverlight 4 application that is designed to help IT professionals and power users learn how to use Windows PowerShell for administrative tasks.


Windows PowerShell Command Builder for SharePoint 2010 Products and Office 365

http://www.microsoft.com/resources/TechNet/en-us/Office/media/WindowsPowerShell/WindowsPowerShellCommandBuilder.html

Cheers!!!
Suneet

Known InfoPath 2010 Bug: Dropdown event with Debugger....issue


Dropdown change event with Debugger crashes...you may have to logoff from machine sometime...as Task manager also stops working...looks like it strange...

Steps: Basically using 64-bit InfoPath Designer:
...

1.Create a blank form or use existing form.

2.Add a drop-down list to the form.

3.Add Choices manually or load from datasource.

4.On Developoer ribbon, click on Changed Event to generate a changed event code in VSTA.

5.Place a break point inside the field_Changed procedure. You can add some code in order for the breakpoint to stop inside the generated method when the dropdown has been changed.

6.Run the application from VSTA by clicking Start Debugging (Play icon or from Debug menu).

7.Click on the drop-down control and change the value.

This is where it will crash the system. I have searched all forums and internet but know one seems to know about this issue. If you are able to recreate this problem, please let me know.

Cheers!!!
Suneet

Wednesday, December 14, 2011

Fast Search in SharePoint 2010 - What's that you don't get in SharePoint 2010 Search

Microsoft completed the acquisition of an enterprise search company, FAST Search
& Transfer. For those who used MOSS 2007, FAST Enterprise Search Platform (ESP) could be integrated
as a separate server product, via various web parts. But as an important result of this acquisition,

Microsoft has developed FAST Search Server 2010 for SharePoint that is a fully integrated search
server engine, one that deeply supports SharePoint search functions.

For end users, FAST Search Server 2010 provides a very visual and dynamic user experience, with
the following capabilities added to SharePoint 2010 Search:

Thumbnails and previews for documents — Word and PowerPoint files in the search result
will be displayed with a thumbnail of the cover page. Moreover, PowerPoint files can be previewed
in the results list without opening the file, either with a PowerPoint client or with Office
Web Applications. These capabilities can help end users visually find the expected content.
Figure 17-3 shows an example.

View in browser — By using Office Web Applications, Office files can be opened in the
browser, without installing the thick client on the computer.

Visual Best Bets — Best Bets are well-known from MOSS 2007, and can also be found in
SharePoint 2010. But with FAST Search, you also can define Visual Best Bets, which are pictures
or videos that are Best Bets for several keywords.

Deep refiners with counts — The Shallow Refinement Panel is also available in SharePoint 2010
Search with the capability of refining results by the most important metadata. However, only
FAST Search provides the capability of result refining on metadata associated with all results.
Moreover, FAST Search provides more customization capabilities, and shows counts for each of
the refiners.

User Context from User Profiles — User Profiles might store a lot of information about each
user, and SharePoint 2010 provides some very powerful social capabilities based on these profiles.
From a Search perspective, results can be targeted by contextual user information.

User Contexts can be built by using User Profile properties, so that they make sub-groups of users, and can be associated with the following:
·         Keywords
·         Best Bets
·         Visual Best Bets
·         Document promotion/demotion
·         Sorting on any property — Each property can be the base of sorting, configured in the “Sort
by” field.
·         Similar Search — With this link for each result, users can get a new result set based on the
search of the selected search result item.
·         Broader, better language support — FAST Search supports language-specific word breaking
and stemming (via FAST lemmatization by reduction), spellcheck, and antiphrasing.
·         Richer query language — In FAST Search, custom queries can be set up using the native query
language for FAST. This provides a complete toolbox, even in the case of advanced queries.
For administrators, FAST Search Server 2010 is a highly capable and easy-to-manage search engine
that offers the following:
·         Extreme scale-out up to more than 500 million items
·         A content processing pipeline
·         Entity extraction
·         Tunable relevance ranking
·         Easy setup of User Context, Visual Best Bets, promotion/demotion
·         Easy-to-configure sorting and refinement

Cheers!!!
Suneet

Monday, December 12, 2011

SharePoint 2010 : Missing DNS Server while doing Alternet Access Mapping

While I was trying to install an extranet environment on one of my servers I could not find the DNS Server under Start > Administrative Tools.

DNS server can be installed and then configured to support AlterNet Access Mapping.

I installed it by following the below mentioned steps:


Installation

You can install a DNS server from the Control Panel or when promoting a member server to a domain controller (DC) (Figure A). During the promotion, if a DNS server is not found, you will have the option of installing it.

Figure A



Domain controller

To install a DNS server from the Control Panel, follow these steps:

• From the Start menu, select
Control Panel
Administrative Tools
Server Manager.

• Expand and click Roles (Figure B).

• Choose Add Roles and follow the wizard by selecting the DNS role (Figure C).

• Click Install to install DNS in Windows Server 2008 (Figure D).

Figure B





Expand and click Roles

Figure C



DNS role

Figure D



Install DNS


and that's all.

Cheers!!!
Suneet


Friday, December 9, 2011

SharePoint 2010 - How to do User Profiles Synchronization


The following steps should be followed while doing User Profiles Synchronization with Active Directory for a new SharePoint 2010 installation or for existing SharePoint 2010 installation.

1. Go to Central Administration -> Manage Service Applications -> User Profile Service Application settings. Select Configure Synchronization Connections.

2. Click Create New Connection button.

3. In the Type dropdown select Active Directory. Specify service account that has access to Active Directory and click Populate Containers to select objects that you want to import from specified Active Directory.

4. When the new connection is created go to Edit Connection Filters action screen.

5. In our case we want to synchronize only active user accounts. So we add Exclusion Filter for Users as Attribute = userAccountControl, Operator = Bit on equal, Filter = 2. Which is exactly the the same as LDAP query (!(userAccountControl:1.2.840.113556.1.4.803:=2))

Then click Add:

6. When the Exclusion Filter appears click OK to save settings.

7. Start Profile Synchronization.

8. Wait till it's done and then look at the imported profiles to check.

Cheers!!!
Suneet

SharePoint PowerShell: Delete old versions of documents and items

Project Requirements:



Most of the doucments were having lots of versions so the need was to remove all the existing versions except the latest version.

You can change this script to complete all the operation at one time means for all the libraries and lists under a web or all the site collections or all the web applications with in a farm.


The following script will remove all the existing versions of the documents except latest one.
PowerShell Command Prompt:

get-spWeb http://xyz-vm:1000/
ForEach-Object {ForEach($_.list in $_.Lists){If($_.EnableVersioning -eq $True){if($_.Title -eq "Shared Documents"){Write-host "List:"$_.Title "- List ID"$_.Id;$_.MajorVersionLimit = 1;$_.Update();ForEach($_.item in $_.items){$_.item.URL;$_.update()}}}}}


Note:
http://xyz-vm:1000 - Replace with your web name
Shared Documents - Replace with your list or library name
MajorVersionLimit = 1 - Change 1 to your specific limit


Cheers!!!
Suneet



Friday, November 18, 2011

SharePoint: How to show a client that you are the expert - End User - NothingButSharePoint.com

SharePoint: How to show a client that you are the expert - End User - NothingButSharePoint.com

SharePoint 2010: Use # to remove Web Part Title URL

When you add a list or library web part through the SharePoint UI, the web part title is automatically hyperlinked to the SharePoint list or library. For example, in the screenshot below, I have a standard Team Site homepage with a Shared Documents web part. The title of the web part is linked to the Shared Documents Library.



If you edit the web part, under the “Advanced” group, you will see Title URL where you can change the hyperlink of the web part title heading to another URL location.



However, if you decide to remove this Title URL value and click OK. SharePoint won’t allow the update. It would instead automatically re-enter the original URL value. To quickly get around that, Edit the Web Part and replace the URL with #


Once you click OK, you should be all set.


Cheers!!!

How does the SharePoint 2010 Client-Side Object Model work?


In my previous post we discussed about introduction to rest and the basics.


We have the client on the left and the server on the right. The server contains the SharePoint Databases and the Server-side Object model.



Between the server and client is a new WCF service called Client.svc. When you reference the client-side object model in your code,, the internal proxy class takes care of sending requests and review responses via the WCF Service.

The very important thing to notice here is that we don’t want to send requests to the server and get a response for almost every line of code we execute. So how it is designed to work is that in your code you will construct the objects and execute standard SharePoint OM functions. The objects will be empty structures without properties and without data, and the functions will not execute right away.



Then at logical points you bundle everything together and send it to the server for processing. The server will then unpack your bundled code and execute it in the correct order and return JSON to your client-side. Your objects will then be populated with data and properties and you can carry on executing more code. The important concept to understand is that you bundle empty objects together and send to the server when ready for processing.



The SharePoint Foundation 2010 managed client model consists of Two Assemblies that contains five namespaces.



There are 3 types of client object models.

1. Managed Client Object model


2-Silverlight Client Object model


3-ECMAScript Client Object model



1-Managed Client Object model:

This is used to extend Windows Form applications, services, WPF applications, console applications etc.

It consist of Microsoft.SharePoint.Client.dll (282 kb) and

Microsoft.SharePoint.Client.Runtime.dll (146 kb)



2-Silverlight Client Object model:

This is used to Silverlight Applications.

It consist of Microsoft.SharePoint.Client.dll (282 kb) and

Microsoft.SharePoint.Client.Runtime.dll (146 kb)



3-ECMAScript Client Object model:

JavaScript in our SharePoint user interface.

It consist of:

CUI.js (344 kb)

SP.js (381 kb)

SP.Core.js (13 kb)

SP.Ribbon.js (208 kb)

etc...



You will notice that there are a few differences between the objects in the Client-Side Object model and the Server-side Object model:


Lets build some simple code:

Create a new Visual Studio 2010 Console application

Add a references to:


Microsoft.SharePoint.Client.dll and
Microsoft.SharePoint.Client.Runtime.dll


Ensure your console app code look as follows:

using System;
using Microsoft.SharePoint.Client;

class demoSharePointClient {
static void Main() {
ClientContext clientContext = new ClientContext("http://yourappname /");
Web site = clientContext.Web;
clientContext.Load(site);
clientContext.ExecuteQuery();
Console.WriteLine("Title: {0}", site.Title); } }

Press control+F5 and see your code execute.

Lets analyze the code:

You inform the managed client OM about the operations that you want to take.

This includes accessing the values of properties of objects (for example, objects of the List class, ListItem class, and Web class), CAML queries that you want to run, and objects such as ListItem objects that you want to insert, update or delete.

Then you call the ExecuteQuery method. Only when you call the ExecuteQuery will the objects be bundled up and sent to the server for processing. No network traffic occurs before then.



Another Example:

Create a new Visual Studio 2010 Console application

Add a references to:

Microsoft.SharePoint.Client.dll and
Microsoft.SharePoint.Client.Runtime.dll

ensure your console app code look as follows:



using System;
using Microsoft.SharePoint.Client;


class Program {
static void Main() {


ClientContext clientContext = new ClientContext("http://yourappname /");
List list = clientContext.Web.Lists.GetByTitle("Announcements");
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "";
ListItemCollection listItems = list.GetItems(camlQuery); clientContext.Load(list);
clientContext.Load(listItems);
clientContext.ExecuteQuery();
foreach (ListItem listItem in listItems)
Console.WriteLine("Id: {0} Title: {1}", listItem.Id, listItem["Title"]); }}


Press control+F5 and see your code execute.

Again, the code will be bundled up and only be sent to the server for processing when the .ExecuteQuery() run.

This means that although you called the list.GetItems the CAML did not execute at that time.

When you call the .ExecuteQuery(), the server will receive your code, unpack it and execute it in the correct sequence and return the objects populated with data and properties.... all processed on the server side... and ready to be further used on the client-side !!!!

Cheers!!!

Suneet



















Thursday, November 17, 2011

The query cannot be completed because the number of lookup columns it contains exceeds the lookup column threshold!!!

While doing migration i got this issue with a big list...using lots of lookup columns type..


This is due to SharePoint’s new resource throttling settings for managing large lists. There is an easy fix in Central Administration.


Go to Central Administration and then browse to Application Management > Manage Web Application.  Select the web application you need. 
In General Settings choose Resource Throttling. Set the value in the List View Lookup Threshold textbox to a higher value (equal to or greater than the number of site columns you are using on the list where you saw the error).

Cheers!!!
Suneet

Monday, October 31, 2011

Copy users from one SharePoint group to another group!

This is one of the question raises from many people who has to copy users from one SharePoint group to another group. There is no direct way you can directly copy users through browser. So, it could be problem to site owners and administrators to add all users again. How to solve these kind problems?

Use the simple option which is available through browser.

    1. Go to Site Settings of the site.
    2. Click on People and Groups.
    3. Go to the group from which you want to copy users.
    4. From the group page, select all users and then from Actions Menu, choose "Email Users" as shown below.
    1. Once you selected "E-Mail Users" then your default email program (Ex: Outlook) will be open with all email addresses.

    1. Select all email addresses and copy them.
    2. Go to SharePoint site and then go to SharePoint group to which you want to add users.
    3. From the toolbar, select "New" and then "Add Users".
    4. From the add users page, paste all email addresses and then click "Check names" icon for validation.
    5. Click OK button to save the changes.

With the process above, we have successfully completed the copying of users from one group to another group.

 Cheers!!!

Suneet

Friday, October 28, 2011

Hide Ribbon in SharePoint 2010 based on User Security



This is a good idea not showing the ribbon control for the users who will not be able to use it anymore.
The below script work if you want to hide the top navigation for the users who are least privileged or anonymous in SharePoint site and most of the options in ribbon are disabled for them.

1) Open your SharePoint master page

2) Locate this line:



3) Change it to:



4) Now find the end of the “s4-ribbonrow” tag and add following block right after it:








5) Save the new master page and publish it.

Cheers!!!
Suneet



Tuesday, October 25, 2011

Update InfoPath 2010 form Programmatically

Recently worked on a requiement on InfoPath 2010 custom form.

Expectations:
  1. User already submitted customized InfoPath form in from library.
  2. Using Upload Control, user have uploaded the documents on Form and not submitted these forms in document library.
  3. We need to generate a URL on existing textbox after getting the document name from this attachment control and concatinte this document name wiht the document library URL for all 400 forms.


Implementation Approach:
I created a customized InfoPath forms and published it to each environment.

Steps:
  1. User can select the SPSite, SPWeb and Form Library from the dropdown.
  2. Search for all the forms in the library which needs to be fix.
  3. Load these form in a multi select box as a datasource and user can select from the UI to fix the form.


Reference DLLs:
using Microsoft.Office.InfoPath;

using System;
using System.Xml;
using System.Xml.XPath;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Administration;
using System.IO;
using System.Text;
using System.Collections.Generic;
using System.Web;

Also reference: To handle the attached file operations.
InfoPathAttachmentDecoder.cs
InfoPathAttachmentEncoder.cs
*******************
using (SPSite site = new SPSite("Your Site Name"))
{
using (SPWeb web = site.OpenWeb())
{
SPList formsLib = web.Lists["Your Form Library Name"];

// TIP: Loading a generic list.

// This loaded as a datasource for the multiselect dropdown.
List mulSelectDropDownValue = new List();

// TIP: XPath Navigator.

XPathNavigator domNav = MainDataSource.CreateNavigator();

if (formsLib != null)
{
foreach (SPListItem item in formsLib.Items)
{
SPFile ipForm = item.File;

string fileName = ipForm.Name;

byte[] binFile = ipForm.OpenBinary();

Stream strm = new MemoryStream(binFile);

string fileNameParam = string.Empty;

// TIP: Loading a XML Document to hold the file

XmlDocument xd = new XmlDocument();

xd.Load(strm);

string textValuePlanning = string.Empty;

string textValueAccounting = string.Empty;



// TIP: Searching the node name in the XML tree, in my case it’s . “my:DoucmentName_1”

XmlNodeList _listDocName = xd.GetElementsByTagName("my:DoucmentName_1");

foreach (XmlNode _listDoc in _listDocName)

{

if (_listDoc.InnerText != "")
{

// TIP: InfoPathAttachment Decoder Class to get the attached file on attachment control in my case.

InfoPathAttachmentDecoder dec = new InfoPathAttachmentDecoder(_listDoc.InnerText.ToString());

string _fileName = dec.Filename;

if (_fileName != "")

{

// TIP: Actual first node name to write value

XmlNodeList _listAcc = xd.GetElementsByTagName("my:accounting_doc_location");

XmlNodeList _linkAccounting = xd.GetElementsByTagName("my:clicklink");

foreach (XmlNode linkNode in _linkAccounting)
{
linkNode.InnerText = "Click here to view the file";}
foreach (XmlNode node in _listAcc)
{

textValueAccounting = node.InnerText.ToString();

if (textValueAccounting.ToString() == "")
{node.InnerText = “Put the value to overwrite…”
}}}} }}

Note: This is not the complete code as implemented, for complete code please mail me on suneet_sharma@yahoo.com referring this post.

Cheers!!!
Suneet Sharma

Sunday, October 23, 2011

SharePoint 2010: What is a PassPhrase

PassPhrase

Sharepoint 2010 has introduced the new concept of "managed accounts" - basically, it stores the encrypted credentials for whatever service accounts you specify.

Initially, the passphrase is used to encrypt the credentials for storage. When you want to do things such as add a new server to the farm (from the server itself via powershell) you will be prompted for the passphrase instead of for the username/password as in the past.

The whole concept of managed accounts allows the passwords to be changed in AD without having to change the password everywhere the account is used in SharePoint.

Cheers!!!
Suneet Sharma

Wednesday, October 19, 2011

XSD to XML Conversion Code

Converting a XSD to XML file.....using ADO.net way.....


private void ReadSchemaFromXmlTextReader(string filename){
// Create the DataSet to read the schema into.
DataSet thisDataSet = new DataSet();
// Create a FileStream object with the file path and name.
System.IO.FileStream myFileStream = new System.IO.FileStream
(filename,System.IO.FileMode.Open);
// Create a new XmlTextReader object with the FileStream.
System.Xml.XmlTextReader myXmlTextReader=
new System.Xml.XmlTextReader(myFileStream);
// Read the schema into the DataSet and close the reader.
thisDataSet.ReadXmlSchema(myXmlTextReader);
myXmlTextReader.Close();
}


private void WriteXmlToFile(DataSet thisDataSet) {
if (thisDataSet == null) { return; }
// Create a file name to write to.
string filename = "myXmlDoc.xml";
// Create the FileStream to write with.
System.IO.FileStream myFileStream = new System.IO.FileStream
(filename, System.IO.FileMode.Create);
// Create an XmlTextWriter with the fileStream.
System.Xml.XmlTextWriter myXmlWriter =
new System.Xml.XmlTextWriter(myFileStream, System.Text.Encoding.Unicode);
// Write to the file with the WriteXml method.
thisDataSet.WriteXml(myXmlWriter);
myXmlWriter.Close();
}

Cheers!!!

Tuesday, October 18, 2011

Monday, October 17, 2011

Bid or no bid for a SharePoint Project | Assessment Checklist for Sales Team

Prospect Information

1 Do we know (and can we influence) the key decision makers?
2 Is this opportunity aligned with the prospect's business strategy?
3 Has the budget been formally approved and funded?
4 Do we understand the business need or pain driving this bid?
5 Are requirements clearly defined, and are they technically feasible?
6 Do we know the evaluation criteria and how it will be weighted?
7 Are there serious business/technical/financial issues behind the scene?
8 Do we know the proposal time frame, and is it realistic?
9 Has the prospect already made a "buy or build" decision?
10 Is low price a major factor in selecting the winning bid?
11 Are there penalties for not delivering on time or within budget?
12 Are the contract terms and conditions acceptable to us?

Internal Information

13 Is this opportunity in sync with our own strategic direction?
14 Do we have strong management support and sponsorship?
15 Do we have the resources, talent, and will to win this opportunity?
16 Do we have the resources and ability to deliver, if we win?
17 Can we realistically manage the risks, if we win?
18 If additional resources are needed, can we get what we need?
19 How well are we known within this business sector?
20 Do we have a successful track record with similar opportunities?
21 Do we have a relationship with this prospect, and is it favorable?
22 Are partners needed, and if so, will they complicate our situation?
23 Do we have differentiators that improve our odds of winning?
24 Can we afford the investment needed to pursue this opportunity?
25 Will winning put any of our existing business at risk?
26 Can we contractually protect our intellectual property?
27 Are there consequences to us of losing or not bidding?


Market/Competitive Information

28 Do we know who the other competitive bidders are, if any?
29Is a competitor an incumbent, and does that pose a threat?
30 Is a competitor favored by prospect decision makers or influencers?
31Are we at a distinct competitive disadvantage from the start?
32 Does this solution involve new or unproven technologies?
33 Will winning enhance our reputation and market positioning?
34 Will winning open up new market opportunities for us?
35 Will winning give us an advantage over our competitors?

Cheers!!!
Suneet

Thursday, October 13, 2011

SharePoint 2007 to SharePoint 2010 Migration Part 1

SharePoint 2007 to SharePoint 2010 Migration Part 1

http://www.youtube.com/user/suneetutu

SharePoint 2007 to 2010 migration using the MetaLogix Migration Manager.

Wednesday, October 12, 2011

SPSite Vs SPWeb and SPWebApplication – What they represent in SharePoint Server Object Model

SPSite Vs SPWeb and SPWebApplication – What they represent in SharePoint Server Object Model:

Simply Explained:

A SharePoint Web application (SPWebApplication) is web site inside Ineternet Information server, A web application can have multiple sites , a Site (SpSite) is a collection a single top level site (SPWeb) and group of sites (SPWebCollection) and sub sites.




Lets see the Code Way: In this example we will code from top to bottom in the object model....with some coding samples...

String hierarchy="";//Read web application collection

SPWebApplicationCollection webApplicationCol =

SPWebService.ContentService.WebApplications;

Tip: SPWebService is a container for the SPWebApplications.

foreach (SPWebApplication webApp in webApplicationCol){
//Fetch the Web application name

hierarchy += "Web Application Name (SPWebApplication):" + webApp.Name + "\r\n";

//Looping for all SPSites under each web app.
for (int i = 0; i < webApp.Sites.Count; i++){
SPSite site = webApp.Sites[i];

//Site collection URL

hierarchy += "Site Collection URL(SPSite):" + site.Url + "\r\n";
for (int j = 0; j < site.AllWebs.Count; j++)
{
SPWeb web = site.AllWebs[j];
for (int k = 0; k < web.Webs.Count;k++ )
{
SPWeb web1 = web.Webs[k];

//top level site and subsites

URLhierarchy += "Sub Site URL(SPWeb):" + web1.Url + "\r\n";}

web.Dispose();

}
site.Dispose();
}

hierarchy += "----------------------------------------------" + "\r\n";

To get a reference to the current top-level server farm object -
SPFarm myFarm = SPContext.Current.Site.WebApplication.Farm;

To get a reference to the site collection database -
SPSite oSiteCollection = SPContext.Current.Site.CurrentDatabase

To return the collection of site collections in a SharePoint Web application -
SPWebApplication webApplication = SPContext.Current.Site.WebApplication;
using (SPSiteCollection siteCollections = webApplication.Sites){
foreach (SPSite siteCollection in siteCollections){Label1.Text += siteCollection.Url + “
”;
siteCollection.Close();}
}

TIP : To run the above code reference the Microsoft.SharePoint.Administration.SPWebApplication assembly in your code.

To return the collection of the all the Webs or sites within a site collection, including the top-level site and all sub sites.
SPSite oSiteCollection = SPContext.Current.Site;

TIP: SPContext class is used to return context information about the current Web application, site collection, site, list, or a list item.

using (SPWebCollection collWebsite = oSiteCollection.AllWebs);
{
for (int i = 0; i < collWebsite.Count; i++)

{

using (SPWeb oWebsite = collWebsite[i])

{
SPListCollection collList = oWebsite.Lists;

for (int j = 0; j < collList.Count; j++)
{
Label1.Text += SPEncode.HtmlEncode(collWebsite[i].Title) + ” ”+ SPEncode.HtmlEncode(collList[j].Title) + “
”;}
}
}
}

To return the all the subsites and lists of the current site

using (SPWeb oWebSite = mySiteCollection.OpenWeb())
{
using (SPWebCollection subSites = oWebsite.Webs)
{
foreach (SPWeb subSite in subSites){Label1.Text += SPEncode.HtmlEncode(subSite.Title) + “
”;
SPListCollection collList = subSite.Lists;
foreach (SPList oList in collList){Label1.Text += SPEncode.HtmlEncode(oList.Title) + ” ” +oList.ItemCount.ToString() + “
”;
}
subSite.Close();
}
}
TIP:1. SPEncode: class provides methods for encoding strings. (HtmlDecode, HtmlEncode, HtmlEncodePreserveSpaces, IsLegalCharInUrl , NoEncode,etc.. )
2. HtmlEncode: Encodes the specified string so that special characters used in HTML are encoded as HTML entities.
  • < to <
  • > to >
  • & to &
  • " to "
  • ' to '
}
Cheers!!!
Suneet

Tuesday, October 11, 2011

Why people don't click on Google ads below?

Monday, October 10, 2011

Frustated with Window prompt again and again in SharePoint 2010

Frustated with Window prompt again and again in SharePoint 2010. Always pop-up when you hit the URL.


Get rid of now...by these simple steps.
Addressing you window prompt issue, please follow the following steps and let us know if it works for you.

1. Click Start, and then click Control Panel.

2. Open the User Accounts dialog box. Go to Advanced > Manage Passwords

3. Open the Stored User Names and Passwords dialog box by clicking on the Manage my network passwords button

4. Click the Add button and type your SharePoint URL (without HTTP), user name, and password, for example:

5. Click OK

Now you should be able to access your SharePoint resources without being prompted for credentials since Windows will handle that for you automatically.

If you change your password, you will have to change it here as well.

Note: If you still face the same problem doing all these steps, re-start your machine once.

Cheers!!!

- Suneet

Thursday, October 6, 2011

SharePoint 2010 Designer: Workflow Impersonation..

Yes..you heard correct....

As you might know that for security reasons, a SharePoint designer workflow always runs under the permissions of the user who started the workflow. So how would you perform actions that the workflow initiator does not have access to ? Well, in SharePoint designer 2010 microsoft has introducted a concept called impersonation steps where a sections of the workflow can be run under the identity of the person who authored the workflow rather than by the workflow’s initiator. Thus Impersonating the Steps or actions.
Again, Please note : Impersonation steps run with the permissions of the person who last saved the workflow– typically the workflow template author.
So, When would you impersonate the workflow steps. I have listed some of the scenarios
1. Moving a document from the current library to an archiving library to which the initiator only has read permissions.2. Granting permissions to users – IF in workflow you need to use “Add User to Group” action3. Create a list

What actions can be impersonated – Well here is the list
* Set Content Approval Status (as Owner)
* Create List Item (as Owner)
* Update List Item (as Owner)
* Delete List Item (as Owner)
* Add/Remove/Set/Inherit List Item Permissions (as Owner)
How Do I start with Impersonation – You can create a User-Impersonation Step type step which can then run the sections(under the step) of your workflow under the permissions of the person who authored the workflow. For e.g. In the below steps, if the item is approved, it will be moved to the archive list under authors permissions.

The User-Impersonation type step does have some additional conditions available for efficiently implementing impersonation. Lets look at two major conditions that you would need to implement impersonation -
1. Check list item permissions - The condition simply says the below :
If permissions for these users are at least these permissions on item in this list.
The usage : If permissions for WFApprovers Members are at least Read on item in Current Items

For the above condition to evaluate as true, the users must have at least the permissions that the Read Permission levels provide. This step can very well be used to check that the WFApprovers should have read access to the items.

2. Check list item permission levels - The condition simply says the below :
If permission levels for these users are at least these permission levels on item in this list.
The usage : If permission levels for ikapoor Members are at least Read on item in Current Items.
Please note that : The users can be a single user, multiple users, but you cannot use a group in this condition.
Important Things to remember Notes : Impersonation steps can only be added to the root of a workflow and cannot be nested in another step.


Cheers!!!

PowerUser's experience Survey...with SharePoint.. interesting....


Still don't know something about it?

Don't know how to use it? ....lost?

See this presentation:


 Cheers!!!

Tuesday, October 4, 2011

SharePoint 2010 with JQuery: Show your list data on Home Page



I got a requirement from my previous client as he was not happy the way OOB list and libraries are show the data on home page and he wanted to show this in a better way....and he asked me how we can achieve it....
Some ideas like:
1. New XSLTWeb Part using SharePoint designer...where formatting is possible...and even you can use XSLT....to change the look and feel of the page....
2. Use JQuery to show dynamic data using the SOAP Web Service...and JQuery JavaScript files...and believe me...i got the second option working for him..and implemented a ticker
with that....
How it works:

For complete script, please visit on my facebook group:(Not able to put script here....some problem)

http://www.facebook.com/#!/groups/278184828858587/doc/290597774283959/

Cheers!!!

Suneet
http://www.facebook.com/#!/groups/278184828858587

SharePoint 2010 : Hide left navigation wiht CSS

Small script to hide the left navigation from a SharePoint Page...or entier site collection...see how it works.....

On your page, add a content editor web part...and paste this script in there.....and done.

For complete script:
http://www.facebook.com/#!/groups/278184828858587/doc/290595817617488/


If you put the script in master page the the entire site collection's left navigation will not work if you have attached the master page or master page is set the default master page....so better idea is to keep it in Content editor web part on page only.

Cheers!!!

Suneet
Visit: http://www.facebook.com/#!/groups/278184828858587

Monday, October 3, 2011

SHAREPOINT\System account ........SharePoint 2010.

Lots of time we see in Document libraries, lists data user name under modified by column name comes for sharepoint\system account. So who's this hidden user and what this does in SharePoint??
  • SHAREPOINT\Systemaccount is the same account used by application pool of your SharePoint web application in IIS at the time of creation/extension of respective web application.
  • This is the account which is used when you run your code in under elevated privileges by SPSecurity.RunWithElevatedPrivileges.
  • When you create/extend a web application in SharePoint and specify an Application Pool then the identity (Network Account) used by that Application pool becomes the SHAREPOINT\System account.
  • It is highly recommended that end user should not be allowed to use this account to avoid unexpected errors.
  • If you change the identity of App Pool account after creating/extending the SharePoint web application, the new account will notbecome the SHAREPOINT\System.

Cheers!!!

Saturday, October 1, 2011

Path to become SharePoint Architect....MicroSoft recommendations...

Wanna be a SharePoint architect....learn these topics and implement when working with a client..
Must Understand the Core:
  • IIS 6/7
  • Windows Server 2003/2008
  • DNS/WINS (Name Resolution)
  • TCP/IP & other network considerations
  • SQL Server 2005 Advanced Administration (Backup, Monitoring, Logshipping or Database Mirroring)
  • Basic Firewall rules and Proxy
  • IT Infrastructure Design
  • Hardware Acquisition (RAM, CPU, Disk I/O, and other hardware considerations)
  • Performance Monitoring
  • Capacity Planning
  • Growth Management
  • Workflow (Windows Workflow Foundation)
  • Client Troubleshooting & Support: IE, Firefox, Safari, Office XP, 2003, 2007, etc...
  • HTML & Client side scripting (Javascript, AJAX, DHTML, XSL, XSLT, XHTML)
  • Exchange and SMTP integration (Inbound and Outbound email including contact objects)
  • High Availability: Microsoft Cluster Services, Windows Network Load Balancing
  • Storage: Appliances, HBAs, SANs, Archive Storage
  • Backup Solutions: Various Tape, Hardware and software snapshots, software nearline and offline storage (soon to add DPM 2007)
  • Hardware load balancing, ISA Secure Web Publishing
  • IAG (Internet Application Gateway) Whale Communications
  • Single Sign on integration
  • Connection Monitoring & Troubleshooting (ADO.NET, Web Services, CDO)
  • Global Deployments - Multi farm deployments
  • Dev, Test, Staging, Production - Staged deployments
  • MOF, ITIL, MSF Frameworks and strong understanding of the development life cycle
  • Virtualization - Virtual Server 2005, Virtual PC, VMWare
Solutions:
  • Internet Publishing
  • Internet Community Portal
  • Intranet Central Search Portal
  • Intranet Departmental Dashboard Portal
  • Intranet Collaboration
  • Business Process Management
  • Extranet Collaboration
  • Document Management
  • Records repository
  • BI Solutions
  • Search Center or Intranet and Internet Search Solutions
  • Reports Center
  • Mobile Solutions
  • Remote employee solutions
  • Multi lingual solutions
  • Project Server
  • Web 2.0 Solution: Blogs, Wikis, Social Networking (Profiles & My Sites)
Extended
  • AD (Group Policies, Security Groups, DLs, Contacts, authentication, and attributes for profile import)
  • Desktop Management (IE settings, Office deployment, storage and collaboration considerations)
  • MOM Systems Center Operations Monitoring of performance and system health of servers and dependencies
  • WAN and Network performance testing and considerations, (minimum performance levels) caching
  • File Services & (extremely light... policy SMS and Patching considerations)
  • Antivirus management solutions like Forefront
  • Presence Integration (LCS, Office Live Communication Server, SMTP and SIP)
  • Understanding and supporting Dev: ASP.NET, C#, Assemblies, GAC, Bin, web.config, web parts, web part connections, missing assemblies
  • MIIS in cross forest or resource forest scenarios or dynamic security groups
  • Migration Skills: Public Folders, Documentum, Lotus Notes, CMS, WebSphere
Interop and Integration
  • Office Interoperability (Word, Excel, Access, PowerPoint, Outlook)
  • Project Server deployment
  • Microsoft Dynamics (CRM, ERP, AXAPTA, GreatPlains, etc...)
  • Infopath forms troubleshooting and basic design skills (XML, HTML)
  • Visio integration
  • Biztalk
  • SharePoint Designer for workflows, CSS, Design, etc...
  • Reporting and Analysis Integration: SQL Reporting Services, SQL Analysis Services
  • SAP integration with Duet
  • BDC Siebel web services integration
  • Oracle Financials integration in BDC and Excel Services
  • Other ADO.NET BDC connections: includes various CRM, ERP, DBMS
  • Commerce integration in Internet sites
  • Web Services integration
  • Documentum, WebSphere
  • Search/Indexing Integration
  • Data warehouses RDBMS
  • Single Sign on solutions and integration with client certificates, smart cards, and 2 factor auth
  • N tiered web apps, web services, and stores
  • Samba and NFS?
http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" id="Player_9d099a9a-5d56-4481-acc0-8560994515c7"  WIDTH="600px" HEIGHT="200px"> http://ws.amazon.com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fsharepo034-20%2F8010%2F9d099a9a-5d56-4481-acc0-8560994515c7&Operation=GetDisplayTemplate"> NAME="quality" VALUE="high"> http://ws.amazon.com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Fsharepo034-20%2F8010%2F9d099a9a-5d56-4481-acc0-8560994515c7&Operation=GetDisplayTemplate" id="Player_9d099a9a-5d56-4481-acc0-8560994515c7" quality="high" bgcolor="#ffffff" name="Player_9d099a9a-5d56-4481-acc0-8560994515c7" allowscriptaccess="always"  type="application/x-shockwave-flash" align="middle" height="200px" width="600px">

Cheers!!!

Friday, September 30, 2011

Why i need so much.....SharePoint 2010 Search, Standard Search, Enterprise Search, Fast Search....??

Search in SharePoint 2010 is a really complex feature and can be configured in many different ways and you need few or all of them to fulfill users need.
So let's find out what they can do for us..when implementing in SharePoint....
There’s a couple of different versions of Search in SharePoint 2010:

  • SharePoint Foundation Search ( FREE, FREE, FREE!!!)
    • Site Search Only
    • No non-SharePoint content indexing configuration
  • Microsoft Search Server Express(Integrated with SharePoint 2010
    Foundation)
    • Non-SharePoint content indexing configuration
      available
  • SharePoint Server 2010 Standard Edition Search
    • 100 million items
    • SharePoint content
    • Web site content
    • File share content
    • Exchange public folder content
    • Other database content
    • Enterprise Scale Search
    • Federated Search
    • Mobile Search Experience
    • People and Expertise Search
    • Phonetic and Nickname Search
    • Search Scopes
    • SharePoint 2010 Search Connector Framework
    • SharePoint 2010 Search Connector Framework
  • SharePoint Server 2010 Enterprise Edition Search
    • Contextual Search
    • Extensible Search Platform
    • Extreme Scale Search
    • + All Standard/Foundation/Express Edition Features
  • FAST Search for SharePoint
    • Support for 500 million items.
    • Visual best bets (HTML rendering).
    • Sort on any indexed property.
    • The ability to preview Microsoft Word or Microsoft PowerPoint® documents on
      the results page.
    • Deep refinement showing count by property refinement.
    • The ability to document thumbnails on the results page.
    • FAST search Web Parts.
    • Manual promotion or demotion of specific results.
    • Relevancy profiles to show different results ranking to different
      users.
    • Multilingual search controls.
To Implement FAST for SharePoint 2010 you need:

  • SharePoint server licenses.
    A FAST search server license for any servers running FAST search.
    Enterprise CALs for any users using FAST search.
Search in SharePoint 2010 is a really complex feature and can be configured in many different ways. I made this post to sort out what the different components do.
Cheers

Wednesday, September 28, 2011

Pre-defined Taxonomy Metadata for Microsoft SharePoint Server 2010

Knowledge Management and Social Networking are unleashed, for real this time, with the upcoming new version of Microsoft SharePoint 2010. SharePoint 2010 now fills the big gaps in 2007, with managed taxonomies and folksonomies, expertise finding, content rating, and commenting. Enterprise Metadata Management (EMM) is a new set of features introduced with SharePoint 2010 that enable taxonomists, category managers, and administrators to create and manage terms and sets of terms across the enterprise. You can use managed metadata - a hierarchical collection of centrally managed terms that you can define - as attributes or categories for tagging items and documents with Microsoft SharePoint 2010. Item and document classification helps users to find the information they need much faster, it gives context to the cloud, connect users to social networks, enables a new, hierarchical way to access information – independent of the storage location. It simply saves money.

Pre-defined taxonomies, ready to import in Microsoft SharePoint Server 2010 and into the FREE Microsoft SharePoint Foundation 2010 can be licensed and integrated out-of-the-box into your existing intranet, content management application, knowledge management portal, or any other application that would benefit from the power of a robust taxonomy-based classification or search. The taxonomies are flexible and can be easily customized and modified to address unique organizational requirements. No additional software is required.

Pre-defined Taxonomie Metadata Packages for SharePoint 2010.

Enterprise Taxonomy Starter Package for SharePoint 2010:
  • General Business (Accounting and Finance, Human Resources, Information Technology, Legal, Marketing) 395
Enterprise Taxonomy Packages for SharePoint 2010:
  • Banking, Finance, and Investment ......2532 ..[1526/1006]
  • Contracts ........................................[Q3 2010 Release]
  • Insurance ........................................[Q3 2010 Release]
  • Job Titles .......................................2737 ..[1796/941]
  • Product and Services Life Cycles .......1174 ..[1079/75]
  • Records Retention ............................1050 ..[370/680]
Products and Services Taxonomy Packages for SharePoint 2010:

  • Agriculture and Forestry ....................9913 ..[5157/4756]
  • Automotive ....................................1722 ..[1047/675]
  • Building and Construction ................4296 ..[2400/1896]
  • Business Services ............................859 ..[477/382]
  • Computer/Information Technology ....3514 ..[879/2635]
  • Communications/Telecommunications 1150 ..[414/736]
  • Education and Training ...................1034 ..[503/531]
  • Electrical and Electronics .................1930 ..[1204/726]
  • Environmental ................................3066 ..[1472/1594]
  • Fashion and Apparel ......................2413 ..[804/1609]
  • Food and Beverage ..........................8278 ..[4064/4214]
  • Government ....................................1417 ..[879/536]
  • Educational Services ..............278 ..[155/123]
  • Government Services .............125 ..[71/54]
  • Health Services .....................501 ..[365/136]
  • Public Safety ........................273 ..[120/153]
  • Schools ...............................103 ..[79/24]
  • Social Services ....................137 ..[89/46]
  • Health Care ....................................8570 ..[5839/2731]
  • Home and Garden ...........................3749 ..[2035/1714]
  • Industrial Equipment and Supplies .....8944 ..[4915/4029]
  • Metals ...........................................1399 ..[989/410]
  • Minerals, Mining and Drilling ..............1414 ..[862/552]
  • Office Equipment and Supplies ..........4639 ..[1175/3464]
  • Oil and Gas .....................................1202 ..[834/368]
  • Packaging .........................................567 ..[260/307]
  • Personal Care ..................................1753 ..[1012/741]
  • Plastics and Rubber ..........................1190 ..[636/554]
  • Professional Services ..........................525 ..[303/222]
  • Safety and Security ..........................1842 ..[825/1017]
  • Science and Technology ...................3504 ..[1906/1598]
  • Services .........................................9217 ..[5514/3703]
  • Sports and Recreation .......................2814 ..[1451/1363]
  • Textiles and Leather .........................3182 ..[1511/1671]
  • Toys and Games ................................522 ..[318/204]
  • Travel .............................................1418 ..[900/518]
  • Transportation .................................4003 ..[2302/1701]
Specific Taxonomy Packages for SharePoint 2010:



 

   
http://suneet-sharma.blogspot.com/" id="cse-search-box">