Author: jbmurphy
-
RSS feed for a vBulletin forum
I am constantly having to look this up. What is a vBulletin’s form’s rss feed? http://www.myforum.com/external.php?type=rss&forumids=1 Obviously the admin has to enable it. Have not tested against all versions
-
Server ran out of space and not accepting connections after freeing up space
I was away on vacation, and a dev box ran out of space. Once I got back, I cleaned it up, rebooted and still could not connect to it. @xrobx99 noticed an IPSec message in the event logs: The IPSec driver has entered Block mode. IPSec will discard all inbound and outbound TCP/IP network traffic that is…
-
How to add custom JavaScript code to all SharePoint 2010 pages (DelegateControl)
As I said in this post, there are plenty of articles on how to do this. This is more of a note for myself, as I have to “re-learn” this every time I need to customize SharePoint. There are 2 ways (that I know of) that you can add code to every page in SharePoint…
-
‘b’ is null or not an object
This is a reminder to my self that this blog post has the solutoin to the “b” error when working with the Client Object Model. Basically I need to change this: createDelegate(this, this.onSuccessMethod) to this: createDelegate(this, onSuccessMethod)
-
Move the “Add new item” to the top of a list page in SharePoint 2010
We did not like how SharePoint 2010’s “Add new item” was on the bottom of the page. we wanted to move it to the top. The following jQuery code moves it to the top of the page: $(“#s4-mainarea”).prepend($(“td.ms-addnew”)) hope that helps someone.
-
PowerShell script to set the State of a record in Microsoft CRM 2011 (SOAP)
I wanted to mark a meeting/appointment as completed via code. I came up with the PowerShell script below. Maybe it will be of use to some one?
-
BASH, cURL script to retrieve Google Analytics data
Last week I wrote this PowerShell code to retrieve Google Analytics data. Below is similar code in BASH using the cURL command.
-
Use PowerShell to get Google Analytics data
I wanted to write a powershell script that will retrieve the number of visits for my site. I put the following script together. Note this uses Google’s ClientLogin for authentication, which is deprecated. I have not worked with OAuth 2 yet.
-
PowerShell script to create a SystemUser in Microsoft CRM 2011
I wanted to bulk create a bunch of users in CRM. PowerShell and the Microsoft CRM 2011 REST/OData endpoint make it easy. Here is a function to create a SystemUser via PowerShell
-
PowerShell script to create a contact in Microsoft CRM 2011 via REST/ODATA
Below is a PowerShell function to create a contact in CRM 2011. Hope it is helpful to some one.
