Sign in
John W Powell
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.Net
C#
Debugging
Design Pattern
Don't Talk to Strangers
Input Language
msbuild
PowerShell
SharePoint
SharePoint 2007
sharepoint 2010
SharePoint Designer
SharePoint Foundation
Team Build
TFS
Unit Test
Visual Studio
Visual Studio 2010
visual studio extensions
VSEWSS 1.3
WCF
Windows Communication Foundation
Windows SharePoint Services
WSS
WSS3
Archive
Archives
January 2012
(2)
November 2010
(1)
March 2010
(1)
December 2009
(2)
November 2009
(3)
August 2009
(3)
June 2009
(2)
March 2009
(1)
February 2009
(1)
January 2009
(3)
November 2008
(2)
October 2008
(1)
September 2008
(2)
August 2008
(2)
July 2008
(2)
June 2008
(1)
May 2008
(7)
April 2008
(1)
March 2008
(2)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
John W Powell
Create a SharePoint Custom Action to Zip and Download a Document Set
Posted
over 1 year ago
by
johnwpowell
0
Comments
I like writing code, but I love solving problems using the simplest possible approach even more. In this article, I’m going to show you how to enable users to zip and download all documents in a document set with no code. The document set...
John W Powell
How to Sort SharePoint Document Set Allowed Content Types
Posted
over 1 year ago
by
johnwpowell
1
Comments
Recently I’ve been working on a SharePoint 2010 document management solution, and this has provided the opportunity get deep in the weeds on features such as Document Sets, the Document ID Service, Content Organizer and In-Place Records Management. ...
John W Powell
SharePoint 2010 Database Naming Standards
Posted
over 3 years ago
by
johnwpowell
4
Comments
In a previous post I made a case for following a database naming standard for SharePoint databases. What started as an investigation into how to rename the auto-generated SharePoint 2010 databases led me down a path bordering obsession. I...
John W Powell
A Lap Around SharePoint 2010 Sandboxed Solutions Resource Quotas
Posted
over 3 years ago
by
johnwpowell
0
Comments
In this post, I'll demonstrate sandbox solutions resource quotas and show you what happens when they are exceeded. When sandboxed code executes, certain metrics are collected such as % processor time and # of unhandled exceptions. Timer jobs compile the...
John W Powell
Write to the SharePoint 2010 Developer Dashboard With JavaScript
Posted
over 4 years ago
by
johnwpowell
1
Comments
When developing JavaScript solutions, I like to provide a tracing mechanism that can be turned on and off to aid debugging. The IE Developer Tools, debugger and Fiddler are very robust debugging tools, but they don’t enable client script code to...
John W Powell
SharePoint Database Naming Standards
Posted
over 4 years ago
by
johnwpowell
4
Comments
Call me picky, but I think it’s important to consistently name your SharePoint databases—especially on a shared SQL Server hosting multiple farms and applications. Not only is it a good practice, but by showing that you care about the databases, you’ll...
John W Powell
SharePoint 2010 Localization with Visual Studio 2010
Posted
over 4 years ago
by
johnwpowell
12
Comments
In this walkthrough, I’ll show you how to create a SharePoint 2010 localized feature using Visual Studio 2010. The basic mechanics of localizing a SharePoint 2010 feature are the same as localizing a SharePoint 2007 feature, and is well documented. If...
John W Powell
How to Install SharePoint 2010 On Windows 7
Posted
over 4 years ago
by
johnwpowell
0
Comments
Here is a high-level overview of the steps required to install SharePoint 2010 (Beta 2) on Windows 7 (x64): Extract / copy SharePoint setup files to your computer Edit files\setup\config.xml and add the AllowWindowsClientInstall = TRUE setting...
John W Powell
Enable the Developer Dashboard using the Object Model / Powershell
Posted
over 4 years ago
by
johnwpowell
1
Comments
The SharePoint 2010 developer dashboard has three display levels (see SPDeveloperDashboardLevel Enumeration .): Off (default): The dashboard is not displayed, and there is no UI element to turn it on On : The dashboard is displayed, and there...
John W Powell
Visual Studio Extensions for Windows SharePoint Services (VSEWSS) Error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information
Posted
over 4 years ago
by
johnwpowell
6
Comments
One error you may see when packaging solutions with VSEWSS is: Microsoft.SharePoint.Tools.Utilities.VSeWSSServiceException VSeWSS Service Error: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information...
John W Powell
A Simple Build Script for Packaging Visual Studio Extensions for Windows SharePoint Services (VSEWSS 1.3) Projects with Team Build
Posted
over 4 years ago
by
johnwpowell
0
Comments
In a previous post , I provided a walkthrough for automating builds for VSEWSS 1.3 projects. The script I used was based on the SharePoint Guidance Drop 11, and after using it, I felt it could be simplified. I’m a proponent of implementing the “simplest...
John W Powell
Visual Studio Extensions for Windows SharePoint Services Error: System.ArgumentException, Value does not fall within the expected range
Posted
over 4 years ago
by
johnwpowell
1
Comments
A common error you may encounter when using VSEWSS 1.3 is “System.ArgumentException, Value does not fall within the specified range.” This post outlines the common causes and resolutions for the issue. One suggestion I have seen on the web is to delete...
John W Powell
Automate SharePoint Solution Builds with Visual Studio Extensions For Windows SharePoint Services (VSEWSS) 1.3
Posted
over 4 years ago
by
johnwpowell
8
Comments
In this walkthrough, I’ll demonstrate how to achieve automated builds and continuous integration by creating a build script for VSEWSS 1.3 solutions. The patterns and practices SharePoint Guidance (11 drop) contains an example build script that this article...
John W Powell
RV-AIR: A Five-Step Process to Troubleshoot and Fix Just About Anything
Posted
over 4 years ago
by
johnwpowell
3
Comments
Effective troubleshooting is an important skill not only in the information technology field, but in many other professions. Auto mechanics, electricians, counselors and doctors are essentially professional troubleshooters. They identify problems, theorize...
John W Powell
Make the RSS Feed Viewer Web Part Dynamic Using Filters and Web Part Connections
Posted
over 4 years ago
by
johnwpowell
2
Comments
One of the shortcomings of the RSS Viewer web part is that it can only be bound one feed. In this walkthrough, I’ll show you how to make the RSS Viewer web part dynamic with filter web parts and web part connections to enable binding to multiple feeds...
John W Powell
Subscribe to SharePoint Web Parts using Internet Explorer 8 Web Slices
Posted
over 4 years ago
by
johnwpowell
2
Comments
One of the new features of Internet Explorer 8 is Web Slices. This feature enables you to subscribe to a section of a web page and notifies you when the content changes. By design, SharePoint Web Parts are a natural fit for this feature, and in this article...
John W Powell
How to Copy an Assembly From the GAC to the File System
Posted
over 4 years ago
by
johnwpowell
15
Comments
Sometimes you need a local copy of an assembly from the GAC and here is a quick tip on how to do it. The GAC can be found in the c:\windows\assembly directory, but if you try to browse it, the following custom shell extension appears: This view...
John W Powell
Consume SharePoint Web Services with WCF using the Repository, Gateway, Mapper, Domain Model and Factory Design Patterns
Posted
over 4 years ago
by
johnwpowell
9
Comments
The SharePoint developer community has produced a wealth of knowledge and code samples that demonstrate how to consume SharePoint web services and leverage them in domain-specific applications. This information is often task-centric, such as ...
John W Powell
SharePoint Designer Copy List Item Workflow Activity Does Not Copy All Fields
Posted
over 4 years ago
by
johnwpowell
9
Comments
A common SharePoint customization request is to copy or move items and documents between lists. This can be accomplished without development by creating a workflow using SharePoint Designer (SPD). With this approach, you may encounter issues with list...
John W Powell
Enterprise Content Management: What it is and Why You Need It
Posted
over 5 years ago
by
johnwpowell
2
Comments
If you were to survey corporate America on how it defines an enterprise content management (ECM) system, the majority response would be a software tool primarily used by large organizations to create and publish Web content. This article challenges that...
John W Powell
Build PowerShell CmdLets to call SharePoint Web Services using WCF
Posted
over 5 years ago
by
johnwpowell
1
Comments
In this post I'll show you how to build a PowerShell cmdlet that consumes SharePoint web services using WCF. What I like about this approach is that it provides the ability to use some of the SharePoint API without having to be logged in to the SharePoint...
John W Powell
Walkthrough: Import Data From a Line Of Business System into SharePoint User Profiles
Posted
over 5 years ago
by
johnwpowell
4
Comments
In this walkthrough, I'll show you how to import data from a line of business (LOB) system into SharePoint user profiles and make that information searchable. Using this approach, you can leverage information that is stored in other LOB systems and create...
John W Powell
SharePoint BDC Error: Cannot have more than 30 Parameters for a Method
Posted
over 5 years ago
by
johnwpowell
1
Comments
One thing to be aware of is that the BDC has a hard limit of 30 parameters. If you use the BDC as designed, you likely will never hit this limit, but if you are trying to implement insert/update functionality you may encounter this little gotcha. When...
John W Powell
How to Create a Reusable WCF Service Host for Windows Services and Self-Hosting
Posted
over 5 years ago
by
johnwpowell
6
Comments
In this article, I'll show you how to create a reusable service host that can be run from either from the console (self-hosted) or installed as a Windows service. I'll also demonstrate how to use a configuration file instead of code to control which WCF...
John W Powell
How to Update a SharePoint User Account When They Leave the Company and Return
Posted
over 5 years ago
by
johnwpowell
8
Comments
In this article, I'll show you how to handle a common scenario when a user leaves the company and returns later. Many organizations delete user accounts after a period of time and when a user returns they often get a new Windows account with the same...
Page 1 of 2 (39 items)
1
2