Friday, May 27, 2011

JQuery 1.6 Fail ?

 

Had all sorts of problems with JQuery 1.6, I’m going back to release 1.4.2 which I like.

Wednesday, May 04, 2011

How to retrieve a SharePoint list using rest

I’m using this so often these days and I keep forgetting the url to use, so I thought I’d put it here so I could find it.

http://sp2010a/teamsite/_vti_bin/listdata.svc

To retrieve information for a single list

http://sp2010a/teamsite/_vti_bin/listdata.svc/Contacts

Or perhaps just a single contact (in this case, the one with ID = 1)

http://sp2010a/teamsite/_vti_bin/listdata.svc/Contacts(1)

Friday, March 04, 2011

iisapp R.I.P

Out of habit I still type iisapp at a cmd prompt even though its gone in IIS7. I was going to add a batch file but that’s just grasping

Reminder to self:
%windir%\system32\inetsrv\appcmd.exe list wp

Thursday, November 26, 2009

How to get the Windows Service name from the Windows Service Description

Sometimes you need to stop and start a Windows Service from the Cmd line or from a batch file. To do this you need to know the Windows Service’s ‘KeyName’ rather than the display name of the service.

To get the KeyName run this command from the cmd line:

C:\sc.exe GetKeyName DisplayName

Example
C:\sc.exe GetKeyName “Windows Services Timer service”
will return Name = SPTimerV3

You can then use this name in your batch files i.e.

net stop “SPTimerV3”
net start “SPTimerV3”

Wednesday, November 25, 2009

SharePoint 2010 Beta Release Known Issues

I’ve been looking for a list of know issues in the SharePoint 2010 beta for a while now. There is now a list on the Microsoft SharePoint Developer Documentation Team Blog. Hopefully this will be kept up to date. Click through for full story.

Microsoft SharePoint Developer Documentation Team Blog : SharePoint 2010 Beta Release Known Issues