#Windows8 update failure during configuration

April 16, 2013 Leave a comment

Folders-OS-Windows-8-Metro-icon I know it has been a while since i have posted on the blog directly myself.  A lot is going on personally at the moment with Weddings and other potential big plans going on…

In the meantime, I am still working on projects at CPS and to add to the personal busy-ness, projects are going into the go-live stage as well.

Some how I have managed to find time to work with Windows 8 and Office 2013 on my day-to-day laptop, but recently I have found that my Windows Updates have been failing to install / configure.

Anyway, a quick search and the following came up:

  • http://support.microsoft.com/kb/949358
  • Downloaded the fix-it application and it restarted various services including the crypto + other Windows Update based services.
  • Update and restart and et-voila! all is well with the world again.

More blog posts will come along soon (when I get time), as I have been working extensively with the JavaScript CSOM and the REST API’s in JavaScript.

ForeFront Identify Manager Client

April 16, 2013 1 comment

The User Profile Service is an incredibly powerful part of SharePoint. When used correctly it vastly improves the experience of your users by adding a real sense of personal ownership of your sites and their content.

Unfortunately like any complex system, identifying and fixing issues can be a painful process. There is minimal information provided in the site and almost none regarding the connection between the service and Active Directory.

In SharePoint 2010, the user profile sync is controlled by the ForeFront Identity Manager service, this is a Windows service that handles the connections between Active Directory, any BDC connections defined and the SharePoint site collections and sites.

The workings of the service are somewhat impenetrable, but if you wish to see what it is doing and follow the sync process, it comes with a nice GUI interface.

This can be run directly on the server from the path X:\Program Files\Microsoft Office Servers\14.0\Synchronization Service\UIShell\miisclient.exe

When running during a sync you can see any issues encountered such as permissions problems.

via Chris on SharePoint http://spchris.com/2013/04/forefront-identify-manager-client/

Chris Stretton
SharePoint and Project Server Consultant

  • MCITP – SharePoint Administrator 2010
  • MCTS – Microsoft Project 2010 – Managing Projects, Project Server 2010, Configuration, SharePoint 2010, Configuration
  • Prince 2 – Practitioner

This article has been cross posted from spchris.com (original article)

#ProjectServer and #SharePoint 2010 / 2013 April 2013 Cumulative Update #PS2010 #SP2010 #PS2013 #SP2013 #MSProject

April 15, 2013 Leave a comment
Paul Mather
I am a Project Server and SharePoint consultant but my main focus currently is around Project Server.
I have been working with Project Server for nearly five years since 2007 for a Microsoft Gold Certified Partner in the UK, I have also been awared with the Microsoft Community Contributor Award 2011.
I am also a certified Prince2 Practitioner.

This article has been cross posted from pwmather.wordpress.com (original article)

The Office 2013 April 2013 Cumulative Updates are now available, please see the links below:

http://support.microsoft.com/kb/2832224

Project Server 2013 Server Roll up package April 2013 CU (Recommended):
(Delayed)
Project Server 2013 April 2013 CU (Included in the Server Roll up package): 
http://support.microsoft.com/kb/2760261
Project 2013 April 2013 CU:
http://support.microsoft.com/kb/2768336

Also worth noting, install the March 2013 Public update: http://support.microsoft.com/kb/2768001 if installing the April 2013 CU.

The Office 2010 April 2013 Cumulative Updates are now available, please see the links below:

http://support.microsoft.com/kb/2832226

Project Server 2010 Server Roll up package April 2013 CU (Recommended):
http://support.microsoft.com/kb/2775426
Project Server 2010 April 2013 CU (Included in the Server Roll up package):
http://support.microsoft.com/kb/2791064 & http://support.microsoft.com/kb/2760780
Project 2010 April 2013 CU:
http://support.microsoft.com/kb/2794664
Remember SP1 is a pre-requisite for the Office 2010 April 2013 CUs.
For more details please see:

http://blogs.technet.com/b/projectsupport/archive/2013/04/11/microsoft-project-server-2007-2010-and-2013-april-2013-cu-announcement.aspx
As always, test these updates on a replica test environment before deploying to production

Categories: Paul Mather, Work Tags:

Adding a default image for remote served images

April 15, 2013 Leave a comment

Quite often when working with data within a SharePoint environment, we wish to link the data to images hosted within a third party system.

This is often seen in the form of staff pictures that are hosted on a third party HR platform rather than within Active Directory, so the User Profile service images are of no use to us.

Unfortunately there is no real way of detecting if the image on the third party system actually exists, which means that rather than seeing the nice friendly missing profile image, you get a horrible missing image box.

This can be overcome with some simple JavaScript:

(function(){

    var defaultImage = "/_layouts/15/images/PersonPlaceholder.200x150x32.png";

    var profileImage = document.createElement("img");

    // Define an error handler, this will fire if there is an
    // error loading the URL for the staff image and redirect
    // it to the missing user profile image in the hive.

    profileImage.onError = function() {

        this.src = defaultImage;

    }

    // Point the image element to our staff images then attach
    // it to the DOM.

    profileImage.src = "http://hr/staffimages/" + employeeId + ".png";

    // Note that the employeeId variable referenced above is to be
    // provided externally and is beyond the scope of this post.

    var container = document.getElementById("profileImageContainer");

    if (container) {
        container.appendChild(profileImage);
    }
})();

With this code in place any missing images will automatically serve the default image instead.

This method will work anywhere you need to serve images and have no way of detecting if the image to be served exists or not.

Chris Stretton
SharePoint and Project Server Consultant

  • MCITP – SharePoint Administrator 2010
  • MCTS – Microsoft Project 2010 – Managing Projects, Project Server 2010, Configuration, SharePoint 2010, Configuration
  • Prince 2 – Practitioner

This article has been cross posted from spchris.com (original article)

#ProjectServer and #SharePoint server 2010/2013/2007 April 2013 #CU released

April 12, 2013 Leave a comment
Microsoft has announced the release of the April 2013 Cumulative Update (CU) for Project, Project Server and SharePoint for 2007, 2010 and 2013.

You can find the details of the updates here: http://blogs.technet.com/b/projectsupport/archive/2013/04/11/microsoft-project-server-2007-2010-and-2013-april-2013-cu-announcement.aspx

Note that March 2013 Public update of Project Server 2013 was set as baseline requirement for all the future updates of Project Server 2013, however there was an issue with running the SharePoint Configuration Wizard after applying March 2013 update on a server with Project Server 2013 installed and this is fixed by applying the April CU – so a good practice would be to load the March PU, then the April CU and then run the configuration wizard. 

Detail of March 2013 update issue can be seen here: http://blogs.technet.com/b/projectsupport/archive/2013/04/11/project-server-2013-march-public-update-problems-running-the-sharepoint-configuration-wizard.aspx

Also note that there is a slight delay in Project Server 2013 roll out package, the package includes SharePoint server fixes as well since Project Server 2013 is based on SharePoint platform and Microsoft recommends to apply the update package on your environment. 

Due to the issue with the March PU and running the Configuration Wizard, you could consider loading the individual Project Server patch which does not include the SharePoint updates http://support.microsoft.com/kb/2760261 if you need to get the configuration of the March PU completed.  If you haven’t yet loaded the March PU then I would suggest waiting for the roll-up package for the April CU.

And as usual, always try the patches to test servers prior to apply to productions environment.

via All about Enterprise Project Management (EPM) http://khurramjamshed.blogspot.com/2013/04/projectserver-and-sharepoint-server.html

Khurram Jamshed
The author of the blog has an extensive experience of working as an EPM Consultant. Currently he is located in Dubai, UAE and working for Microsoft partner organization as Project Server specialist. He has a thorough experience of providing Project Management technical/functional consultancy to all sort of organizations. He is a certified PMP, a Project Server MCITP, and also received a MS community contributor award 2011.

This article has been cross posted from khurramjamshed.blogspot.com/ (original article)

Add a column to a Enterprise Wiki Page Layout in SharePoint 2010

March 21, 2013 Leave a comment

After you have create your Enterprise Wiki, you might have a need to add additional fields. For instance, your client might want a summary field on the wiki page. In this case you will need to modify the Enterprise Wiki Page Layout. The video shows you how. Keep in mind that it’s not always a good idea to modify the Enterprise Wiki Page Layout. Instead it might be better to make a copy of the Enterprise Wiki Page Layout and modify that instead. If anything goes wrong with the copy and can simply start over.

Other helpful links:
Modifying the Page Layout for Enterprise Wiki Pages in SharePoint 2010
How to Create WIKI Custom Page Layout & Rich Text Control inside Your Page Layout?

#ProjectServer 2013 upcoming #Exams #Certifications #MCP

March 20, 2013 Leave a comment
This is to share with you all, specially those who are looking forward to Project 2013 and Project Server 2013 certifications, that expected availability of new Project and Project Server exams are  April 2013. 
Expected date, and details of the areas to be measured through the exams, were shared by Microsoft’s Jan Kalis here.
Following will be the exams:
  • 74-343 Managing Projects with Microsoft Project 2013
  • 74-344 Managing Programs and Projects with Project Server 2013

The high level details of the skills going to be measured for each of the above exams are as follows:.

74-343 Managing Projects with Microsoft Project 2013

    • Initialize a Project
      1. Create a new project.
      2. Create and maintain calendars.
      3. Create custom fields.
      4. Customize option settings.
    • Create a Task-Based Schedule
      1. Set up project information.
      2. Create and modify a project task structure.
      3. Build a logical schedule model .
      4. Create a user-controlled schedule.
      5. Manage multiple projects.
    • Manage Resources and Assignments
      1. Enter and edit resource information.
      2. Create and edit resource assignments.
      3. Manage resource allocation.
      4. Manage resource allocations by using Team Planner.
      5. Model project costs
    • Track and Analyze a Project
      1. Set and maintain baselines.
      2. Update actual progress.
      3. Compare progress against a baseline.
      4. Resolve potential schedule problems.
      5. Display Critical Path information
    • Communicate Project Information
      1. Apply and customize views.
      2. Share data with other applications.
      3. Configure and display reports and dashboards.
      4. Connect and share data with SharePoint.
      5. Extend Project 2013.
    74-344 Managing Programs and Projects with Project Server 2013
    • Create Enterprise Projects and Portfolios
      1. Define strategic alignment.
      2. Optimize portfolios.
      3. Create a new enterprise project.
      4. Create a program with master projects and sub-projects
    • Plan Enterprise Projects and Resources
      1. Manage resources and teams.
      2. Build a resource plan.
      3. Build a project team.
      4. Resolve resource over allocations across projects.
      5. Baseline enterprise projects
    • Track and Collaborate on an Enterprise Project
      1. Select a tracking method.
      2. Manage task assignments.
      3. Update tasks and time-sheets.
      4. Approve tasks and time-sheets.
      5. Update a project schedule.

    • Manage Configurable Enterprise Objects
      1. Customize Project Web App views and reports.
      2. Manage and extend Project Online and Project Server.
      3. Manage risks, issues, and deliverable.
      4. Customize a project site

    The expected date, and the objective domain of the exams, were shared by Jan Kalis in his blog. To find more details of domains mentioned above, download the details from this blog post: http://blogs.msdn.com/b/jkalis/archive/2013/03/02/the-upcoming-project-2013-exams-objective-domains-available.aspx

    via All about Enterprise Project Management (EPM) http://khurramjamshed.blogspot.com/2013/03/projectserver-2013-upcoming-exams.html

    Khurram Jamshed
    The author of the blog has an extensive experience of working as an EPM Consultant. Currently he is located in Dubai, UAE and working for Microsoft partner organization as Project Server specialist. He has a thorough experience of providing Project Management technical/functional consultancy to all sort of organizations. He is a certified PMP, a Project Server MCITP, and also received a MS community contributor award 2011.

    This article has been cross posted from khurramjamshed.blogspot.com/ (original article)

    SharePoint 2013 web services: View JSON results via Firefox

    March 20, 2013 Leave a comment

    If you are working with SharePoint Designer 2013 workflow action “Call HTTP Web Service” then you might know that return results in JSON via accept header is important. But what if you want to view the JSON results in the browser? It would be helpful to see the data you are about to consume. The video below will demonstrate how to do that in Firefox. I don’t know how it is done in Chrome or IE (The video has no audio)

    Other helpful links:

    The Accept Header

    SharePoint Designer 2013 Workflow error: The HTTP header ACCEPT is missing or its value is invalid

    SharePoint Designer 2013 workflow action “Call HTTP Web Service”

    Customizing the Refinement Panel web part in SharePoint 2010

    March 19, 2013 Leave a comment

    Part 1:

    Summary:

    We created our own results page: Results.aspx

    We can modify the “Refinement Panel Web Part” only if we can edit the create a new .aspx results page and change the “Search Setting” to point to the new Results.aspx page instead of the default: 00SSearchResults.aspx

     

    Part 2:

    Now that you can edit the “Refinement Panel Web Part”. You might also want to customize which refiner’s appear in the web part. This video will show you how to edit the XML.

     

    Other helpful links:

    Category [Refinement]

    SharePoint: Add a Filter in the Refinement Panel of the Search Page

    Creating an Enterprise Wiki via Central Administration

    Modifying the Page Layout for Enterprise Wiki Pages in SharePoint 2010

    SharePoint Designer 2013 workflow action “Call HTTP Web Service”

    #ProjectServer 2013 Feb #CU released with March Public Update

    March 19, 2013 Leave a comment
    The February Cumulative Update of Project Server 2013 was delayed, and now released along with March update.

    Please see the links below for more details:

    Project Server 2013 March Update (includes Feb CU as well):
    http://support.microsoft.com/kb/2768001

    Project Professional 2013 or Project Standard 2013 Feb Update:
    http://support.microsoft.com/kb/2738031

    Also see the Brian Smith’s post for details: http://blogs.msdn.com/b/brismith/archive/2013/03/18/project-server-2013-february-2013-cumulative-update-delivered-with-march-2013-public-update.aspx

    Also note that any future Project Server 2013 CU or update requires this March update as prerequisite.
    The deployment of the server update is the same as previous Project Server updates. Find the link below to know more about SharePoint server 2013 update process: http://technet.microsoft.com/en-us/library/ff806331.aspx

    Happy Patching 🙂

    via All about Enterprise Project Management (EPM) http://khurramjamshed.blogspot.com/2013/03/projectserver-2013-feb-cu-released-with.html

    Khurram Jamshed
    The author of the blog has an extensive experience of working as an EPM Consultant. Currently he is located in Dubai, UAE and working for Microsoft partner organization as Project Server specialist. He has a thorough experience of providing Project Management technical/functional consultancy to all sort of organizations. He is a certified PMP, a Project Server MCITP, and also received a MS community contributor award 2011.

    This article has been cross posted from khurramjamshed.blogspot.com/ (original article)

    Design a site like this with WordPress.com
    Get started