Category Archives: Technical Stuff

From SharePoint Creat field UI, How to provide InterName for the field?

A friend/colleague asked me this question. In the create field UI of SharePoint there is no Internal field input. How to assign internal field name? So here is the trick. 1. First create the field as you want for your … Continue reading

Posted in MOSS 2007, SharePoint 2010, Uncategorized | Leave a comment

Got an Error home Windows 8.1 “Error code: 0x80070035 The network path was not found”

I got the following error for connecting the computer. “Error code: 0x80070035 The network path was not found” I used the following instruction and it worked. Go to Control Panel Go to Credential Manager on each Windows 7 machine on … Continue reading

Posted in Windows 8.1, Windows 8.1 | Leave a comment

Extract WSP Solutions from SharePoint using PowerShell

I used this blog (http://www.sharepointbleached.com/2011/03/extract-wsp-solutions-from-sharepoint.html) to get the script. The following simple PowerShell script will iterate through the solution store and write the WSP packages to file: Start-Transcript “c:\wsp\transcript.txt” [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”)   $solutions = [Microsoft.SharePoint.Administration.SPFarm]::Local.Solutions; foreach ($solution in $solutions) {    $solution.SolutionFile.SaveAs(“c:\wsp\” … Continue reading

Posted in MOSS 2007, SharePoint, SharePoint 2010, Technical Stuff | Leave a comment

The Ultimate Guide to Visual Studio 2010

Summary I had an opportunity to attend the following MS Event at the Downers Grove IL office. The Ultimate Guide to Visual Studio 2010 (Coding, Debugging, Modeling, Testing, Building and Deployment) By Clint Edmonson & Zain Nabouski I would like … Continue reading

Posted in Technical Stuff | Leave a comment

Unknown SPRequest error occurred. More information: 0x80020009

I got the following exception when I add the custom web part. Unable to add selected web part(s). WPIndexingOutcomeSummary: Exception occured. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION) There is very little information MOSS 2007 leaves for such exception. (The SharePoint 2010 … Continue reading

Posted in MOSS 2007, SharePoint, Technical Stuff | 1 Comment

Orphanded Site objectes in MOSS 2007

At the client side I was asked to create a site using their legacy code. The code failed to create a new site and gave an error the “site already exists”. In the CA I was able to see the … Continue reading

Posted in MOSS 2007, SharePoint, Technical Stuff | Leave a comment

Web Objects in XML aka WOX

http://woxserializer.sourceforge.net/index.html I first found about the WOX from MSDN article. It is cool that these platform has a way to come to common ground. Good for us developers.

Posted in Technical Stuff | Leave a comment

Face book API

Today and last week as well, in my project I had to go through the FaceBook API. The API is located here. http://developers.facebook.com/docs/reference/api/user The API is very straight forward call to the REST service. For testing, you will need to … Continue reading

Posted in Facebook Developers Info | Leave a comment