<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Project Server Blogs</title>
	<atom:link href="http://projectserverblogs.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://projectserverblogs.com</link>
	<description>A collection of excellent Project Server posts - please visit the originating blogs</description>
	<lastBuildDate>Thu, 17 May 2012 10:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Revisiting Project Trend Analysis and Project Change Logs</title>
		<link>http://projectserverblogs.com/?p=6180</link>
		<comments>http://projectserverblogs.com/?p=6180#comments</comments>
		<pubDate>Thu, 17 May 2012 10:00:00 +0000</pubDate>
		<dc:creator>Andrew Lavinsky</dc:creator>
				<category><![CDATA[BI]]></category>
		<category><![CDATA[Project Desktop]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Trend Analysis]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">https://azlav.wordpress.com/?p=1717</guid>
		<description><![CDATA[The question always arises as to how to best take a snapshot of project data, and use that in timephased reports or change logs.&#160; In fact, by my count, this is the third time I’ve addressed this topic in this &#8230; <a href="http://azlav.umtblog.com/2012/05/17/revisiting-project-trend-analysis-with-sql-and-vba/">Continue reading <span>&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=azlav.umtblog.com&#38;blog=21305261&#38;post=1717&#38;subd=azlav&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The question always arises as to how to best take a snapshot of project data, and use that in timephased reports or change logs.&#160; In fact, by my count, this is the third time I’ve addressed this topic in this blog:</p>
<ol>
<li><a href="http://azlav.umtblog.com/2011/04/01/taking-timephased-snapshots-of-project-server-data/">Using External Content Types and SharePoint lists</a>. </li>
<li><a href="http://azlav.umtblog.com/2012/03/26/storing-custom-timescaled-data-with-vba/">Using VBA to store data in spare baseline fields.</a> </li>
<li>Using VBA to store data in a custom SQL table (keep reading). </li>
</ol>
<p>In this blog post, I’d like to take a different approach than in the past and show how to use VBA to post snapshots of project data to a SQL database.&#160; The value of storing the data in a custom SQL table of course is that the data is available on the enterprise level, subject to enterprise retention policies, and available for use with enterprise reporting solutions.</p>
<p>Now, I could always use automatically generated queries.&#160; In fact, it would be quite simple to set up a timed job that runs within SQL every Friday evening and takes a snapshot of project data.&#160; As I’ve mentioned before, I am not a big fan of such automated queries – generally because I know a lot of project managers who like to catch up on work over the weekend – or who often will submit the numbers only to immediately realize that they forgot to totally update their schedule, make adjustments and then resubmit.&#160; Running a timed snapshot process may not work well for folks like this.</p>
<p>My preference is for the project manager to manually trigger that snapshot in time as part of the routine status reporting cycle.&#160; You could even incorporate some workflow or <a href="http://epmsource.com/2012/05/09/sql-server-2012-project-server-part-1-reporting-services-data-alerts/">alerts around the data</a> when it’s submitted as part of the report.</p>
<h1>Creating the Table</h1>
<p>In this case, I’ll just use some code that Calin, one of our developers created for me to support some EVM reporting.&#160; This query will generate a table within a SQL database.&#160;&#160; Generally, you would add this table to a custom database.</p>
<pre class="csharpcode"><span class="kwrd">CREATE</span> <span class="kwrd">TABLE</span> [dbo].[ProjectStatusSnapshots](
      [Id] [<span class="kwrd">int</span>] <span class="kwrd">IDENTITY</span>(1,1) <span class="kwrd">NOT</span> <span class="kwrd">NULL</span>,
      [<span class="kwrd">Date</span>] [datetime] <span class="kwrd">NOT</span> <span class="kwrd">NULL</span>,
      [ProjectName] [nvarchar](500) <span class="kwrd">NOT</span> <span class="kwrd">NULL</span>,
      [ProjectUID] [uniqueidentifier] <span class="kwrd">NULL</span>,
      [ProjectStatusDate] [datetime] <span class="kwrd">NULL</span>,
      [ProjectACWP] [money] <span class="kwrd">NULL</span>,
      [ProjectBCWP] [money] <span class="kwrd">NULL</span>,
      [ProjectBCWS] [money] <span class="kwrd">NULL</span>,
      [ProjectEAC] [money] <span class="kwrd">NULL</span>,
      [ProjectCPI] [money] <span class="kwrd">NULL</span>,
      [ProjectSPI] [money] <span class="kwrd">NULL</span>,
      [ProjectTCPI] [money] <span class="kwrd">NULL</span>,
      [ProjectCost] [money] <span class="kwrd">NULL</span>,
    [ProjectActualCost]  [money] <span class="kwrd">NULL</span>,
      [ProjectBaseline0Cost] [money] <span class="kwrd">NULL</span> 
<span class="kwrd">CONSTRAINT</span> [PK_ProjectStatusSnapshots] <span class="kwrd">PRIMARY</span> <span class="kwrd">KEY</span> <span class="kwrd">CLUSTERED</span> 
(
      [Id] <span class="kwrd">ASC</span>
)<span class="kwrd">WITH</span> (PAD_INDEX  = <span class="kwrd">OFF</span>, STATISTICS_NORECOMPUTE  = <span class="kwrd">OFF</span>, IGNORE_DUP_KEY = <span class="kwrd">OFF</span>, ALLOW_ROW_LOCKS  = <span class="kwrd">ON</span>, ALLOW_PAGE_LOCKS  = <span class="kwrd">ON</span>) <span class="kwrd">ON</span> [<span class="kwrd">PRIMARY</span>]
) <span class="kwrd">ON</span> [<span class="kwrd">PRIMARY</span>]</pre>
<p>Modify the fields to fit your needs.&#160; You might also consider creating two tables, one for project header information, and one for task information.</p>
<p>Confirm that we have a new table in SQL.</p>
<p><a href="http://azlav.files.wordpress.com/2012/05/image16.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://azlav.files.wordpress.com/2012/05/image_thumb16.png?w=644&h=359" width="644" height="359" /></a></p>
<h1>Adding the VBA</h1>
<p>The VBA then is relatively simple.&#160; We just need to create a bit of code to generate the database connections and then run a SQL update query to insert the right data into the database table.</p>
<p>Note that I am grabbing the ProjectUID as well.&#160; This will facilitate reports that will join the trend analysis data with the default Project Server reporting database.</p>
<p>As I mentioned above, you may want to consider adding code to capture task level metrics for trend analysis.&#160; That would pretty much be the same concept.&#160; Just make sure to grab a unique identifier for the tasks to use in generating reports.&#160; Using that technique and a field to capture the current user, you could effectively implement a change log – especially if you embed the VBA code in the Project OnSave activity.</p>
<pre class="csharpcode"><span class="kwrd">Sub</span> UpdateSQL()

    <span class="rem">'This macro will log specific field data into a customized SQL database.</span>

    <span class="rem">'Create connection to SQL table.'</span>

    <span class="kwrd">Dim</span> Conn <span class="kwrd">As</span> <span class="kwrd">New</span> ADODB.Connection

    <span class="kwrd">Dim</span> SQLInstance <span class="kwrd">As</span> <span class="kwrd">String</span>
    <span class="kwrd">Dim</span> SQLDatabase <span class="kwrd">As</span> <span class="kwrd">String</span>

    <span class="rem">'Set the connection parameters here</span>

    SQLInstance = <span class="str">&quot;Demo\Demo&quot;</span> <span class="rem">'Enter the name of the SQL instance</span>
    SQLDatabase = <span class="str">&quot;zzz_TrendAnalysis&quot;</span> <span class="rem">'Enter the name of the SQL database</span>

    Conn.ConnectionString = <span class="str">&quot;Provider=sqloledb;&quot;</span> _
    &amp; <span class="str">&quot;Data Source=&quot;</span> &amp; SQLInstance &amp; <span class="str">&quot;;&quot;</span> _
    &amp; <span class="str">&quot;Initial Catalog=&quot;</span> &amp; SQLDatabase &amp; <span class="str">&quot;;&quot;</span> _
    &amp; <span class="str">&quot;Integrated Security=SSPI;&quot;</span>

    <span class="kwrd">If</span> Conn.State = 1 <span class="kwrd">Then</span> <span class="rem">'To avoid errors where the connection was opened and not closed</span>
        Conn.Close
    <span class="kwrd">End</span> <span class="kwrd">If</span>

    <span class="rem">'Open the connection and assign the data to the table.</span>

    Conn.Open

    <span class="kwrd">With</span> ActiveProject.ProjectSummaryTask

    Conn.Execute (<span class="str">&quot;INSERT INTO &quot;</span> &amp; SQLDatabase &amp; <span class="str">&quot;.dbo.ProjectStatusSnapshots([date], ProjectUID, ProjectName, &quot;</span> _
    &amp; <span class="str">&quot;ProjectStatusDate, ProjectACWP, ProjectBCWP, ProjectBCWS, ProjectEAC, ProjectCPI, &quot;</span> _
    &amp; <span class="str">&quot;ProjectSPI, ProjectTCPI, ProjectCost, ProjectActualCost, ProjectBaseline0Cost) &quot;</span> _
    &amp; <span class="str">&quot;VALUES(GetDate(), &quot;</span> _
    &amp; Chr(39) &amp; ActiveProject.GetServerProjectGuid &amp; Chr(39) _
    &amp; Chr(44) &amp; Chr(39) &amp; ActiveProject.Name &amp; Chr(39) _
    &amp; Chr(44) &amp; Chr(39) &amp; ActiveProject.StatusDate &amp; Chr(39) _
    &amp; Chr(44) &amp; .ACWP _
    &amp; Chr(44) &amp; .BCWP _
    &amp; Chr(44) &amp; .BCWS _
    &amp; Chr(44) &amp; .EAC _
    &amp; Chr(44) &amp; .CPI _
    &amp; Chr(44) &amp; .SPI _
    &amp; Chr(44) &amp; .TCPI _
    &amp; Chr(44) &amp; .Cost _
    &amp; Chr(44) &amp; .ActualCost _
    &amp; Chr(44) &amp; .BaselineCost &amp; <span class="str">&quot;)&quot;</span>)

    <span class="kwrd">End</span> <span class="kwrd">With</span>

    Conn.Close

    MsgBox <span class="str">&quot;Project snapshot has been saved.&quot;</span>, vbOKOnly, <span class="str">&quot;Confirmation&quot;</span>

<span class="kwrd">End</span> Sub</pre>
<p>Run the VBA a couple of times to confirm it’s generating data.</p>
<p><a href="http://azlav.files.wordpress.com/2012/05/image17.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://azlav.files.wordpress.com/2012/05/image_thumb17.png?w=644&h=287" width="644" height="287" /></a></p>
<p>Once you’ve validated the VBA, consider adding it as a button to a customized ribbon toolbar.&#160; This will give your users the ability to trigger the macro directly from the main Microsoft Project interface.</p>
<h1>Retrieving the Data</h1>
<p>From there, it’s just a simple question of retrieving the data.&#160; As I mentioned above, I fully expect the PM to potentially create multiple snapshots at each status period, I may only want to grab the “final” one that was posted each day.&#160; To do that, we just need to modify a basic SQL query.</p>
<p>Here’s an example:</p>
<p><span class="kwrd">SELECT</span> dbo.ProjectStatusSnapshots.Id, dbo.ProjectStatusSnapshots.<span class="kwrd">Date</span>, dbo.ProjectStatusSnapshots.ProjectName, dbo.ProjectStatusSnapshots.ProjectUID, dbo.ProjectStatusSnapshots.ProjectStatusDate, dbo.ProjectStatusSnapshots.ProjectACWP, dbo.ProjectStatusSnapshots.ProjectBCWP, dbo.ProjectStatusSnapshots.ProjectBCWS, dbo.ProjectStatusSnapshots.ProjectEAC, dbo.ProjectStatusSnapshots.ProjectCPI, dbo.ProjectStatusSnapshots.ProjectSPI, dbo.ProjectStatusSnapshots.ProjectTCPI, dbo.ProjectStatusSnapshots.ProjectCost, dbo.ProjectStatusSnapshots.ProjectActualCost, dbo.ProjectStatusSnapshots.ProjectBaseline0Cost, DailyRecord.LastRecord <span class="kwrd">FROM</span> dbo.ProjectStatusSnapshots <span class="kwrd">RIGHT</span> <span class="kwrd">OUTER</span> <span class="kwrd">JOIN</span> (<span class="kwrd">SELECT</span> <span class="kwrd">MAX</span>(Id) <span class="kwrd">AS</span> LastRecord <span class="kwrd">FROM</span> dbo.ProjectStatusSnapshots <span class="kwrd">AS</span> ProjectStatusSnapshots_1 <span class="kwrd">GROUP</span> <span class="kwrd">BY</span> ProjectUID, <span class="kwrd">CAST</span>(<span class="kwrd">Date</span> <span class="kwrd">AS</span> <span class="kwrd">Date</span>)) <span class="kwrd">AS</span> DailyRecord <span class="kwrd">ON</span> dbo.ProjectStatusSnapshots.Id = DailyRecord.LastRecord</p>
<p>Run this query to generate a table of the last entry posted per project on any given day.&#160; You could then use the ProjectUID field to join this date to live data in the Project Server reporting database.</p>
<br />Filed under: <a href='http://azlav.umtblog.com/category/bi/'>BI</a>, <a href='http://azlav.umtblog.com/category/project-desktop/'>Project Desktop</a>, <a href='http://azlav.umtblog.com/category/reporting/'>Reporting</a>, <a href='http://azlav.umtblog.com/category/vba/'>VBA</a> Tagged: <a href='http://azlav.umtblog.com/tag/trend-analysis/'>Trend Analysis</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/azlav.wordpress.com/1717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/azlav.wordpress.com/1717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/azlav.wordpress.com/1717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/azlav.wordpress.com/1717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/azlav.wordpress.com/1717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/azlav.wordpress.com/1717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/azlav.wordpress.com/1717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/azlav.wordpress.com/1717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/azlav.wordpress.com/1717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/azlav.wordpress.com/1717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/azlav.wordpress.com/1717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/azlav.wordpress.com/1717/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/azlav.wordpress.com/1717/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/azlav.wordpress.com/1717/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=azlav.umtblog.com&#038;blog=21305261&%23038;post=1717&%23038;subd=azlav&%23038;ref=&%23038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6180</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://0.gravatar.com/avatar/cdebf5fa54e72810bf2381133617e506?s=96&amp;amp;d=identicon&amp;amp;r=G" length="" type="" />
<enclosure url="http://azlav.files.wordpress.com/2012/05/image_thumb16.png" length="" type="" />
<enclosure url="http://azlav.files.wordpress.com/2012/05/image_thumb17.png" length="" type="" />
		</item>
		<item>
		<title>Lost. How To Choose Who To Vote For?</title>
		<link>http://projectserverblogs.com/?p=6178</link>
		<comments>http://projectserverblogs.com/?p=6178#comments</comments>
		<pubDate>Thu, 17 May 2012 08:55:16 +0000</pubDate>
		<dc:creator>Bas</dc:creator>
				<category><![CDATA[Belonging]]></category>
		<category><![CDATA[dutch]]></category>
		<category><![CDATA[elections]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[political parties]]></category>

		<guid isPermaLink="false">http://www.projectshrink.com/?p=6148</guid>
		<description><![CDATA[I am lost. Or confused. Or at least something non-expert-like. In September we have new elections in The Netherlands. Our current ruling parties cannot work together anymore. I always vote. I think it&#8217;s important. As years go by I find it harder to choose which party to vote for. And we have a lot of &#8230;<p><a href="http://www.projectshrink.com/lost-how-to-choose-who-to-vote-for-6148.html">Lost. How To Choose Who To Vote For?</a> is a post from: <a href="http://www.projectshrink.com">Project Shrink</a>.

</p>]]></description>
			<content:encoded><![CDATA[<p>I am lost. Or confused. Or at least something non-expert-like.</p>
<p>In September we have <a href="http://en.wikipedia.org/wiki/Dutch_general_election,_2012">new elections in The Netherlands</a>. Our current ruling parties cannot work together anymore.</p>
<p>I always vote. I think it&#8217;s important. As years go by I find it harder to choose which party to vote for. And <a href="http://nl.wikipedia.org/wiki/Politieke_partijen_in_Nederland">we have a lot of them</a>. </p>
<h2>This time, I really have no clue.</h2>
<p>This bothers me. </p>
<p><a href="http://www.projectshrink.com/wp-content/uploads/2012/05/a-election1.jpg"><img src="http://www.projectshrink.com/wp-content/uploads/2012/05/a-election1-217x300.jpg" alt="" title="a-election1" width="217" height="300" class="alignright size-medium wp-image-6149" /></a></p>
<p>As I remember it, I used to have only a couple of choices. And the parties I could choose from represented a social group. Factory workers, small business owners, religious folks. If you&#8217;re a member of a certain social group, you&#8217;re choice is almost already made.</p>
<p>Both my grandparents were small business owners and I can trace my early voting behavior back to this.</p>
<p>Every party also had <a href="http://www.ted.com/talks/chimamanda_adichie_the_danger_of_a_single_story.html">a single story</a> for how things should be run: let the free market do it&#8217;s thing, tax the rich folks and redistribute wealth evenly, give priority to families. Stuff like that.</p>
<h2>Easy choice. Easy solutions.</h2>
<p><a href="http://www.projectshrink.com/storytelling-with-steve-and-i-am-a-map-maker-5603.html">I love to map stuff</a>. I like to know where I am in the political landscape. </p>
<p>Now I have many parties to choose from. Now I am not sure which <a href="http://www.projectshrink.com/why-suits-create-suits-31.html">social group</a> they represent. I can only see a very small amount of <a href="http://www.projectshrink.com/flags-4780.html">flags</a>.</p>
<p><a href="http://www.projectshrink.com/wp-content/uploads/2012/05/a-election2.jpg"><img src="http://www.projectshrink.com/wp-content/uploads/2012/05/a-election2-245x300.jpg" alt="" title="a-election2" width="245" height="300" class="alignleft size-medium wp-image-6150" /></a></p>
<p>Even within parties I am now confronted with internal elections broadcasted on television. Who will be the frontrunner for this party? So I get to see all the many faces from within a party. Increasing my options.</p>
<p>Media is providing me with information about every single candidate. <em>Conflicting</em> information of course. </p>
<p>There are no single stories any more. Or easy solutions that resonate with me. </p>
<h2>Is this good or bad?</h2>
<p>Yes.</p>
<p>Is this what <a href="http://en.wikipedia.org/wiki/The_Paradox_of_Choice%3A_Why_More_Is_Less">Barry Schwarz meant with the Paradox of Choice</a>? If you have too much options to choose from, you run into the risk of paralysis and being unhappy about your final choice, because you keep comparing them to the alternatives.</p>
<p>Perhaps.</p>
<p>It can also be a personal thing. </p>
<p>Perhaps when I started to vote there actually were many parties, but my vision of the landscape was limited. </p>
<p>Perhaps there are parties now with single stories, but I just don&#8217;t want to hear them. (blaming immigrants for example).</p>
<p>Perhaps <a href="http://www.projectshrink.com/i-hate-elevator-pitches-2838.html">I am not sure which social group I belong to</a>.</p>
<p>I am glad I have the right to vote.</p>
<p>I am glad I have still 3 months to narrow my selection.</p>
<p><a href="http://www.projectshrink.com/lost-how-to-choose-who-to-vote-for-6148.html">Lost. How To Choose Who To Vote For?</a> is a post from: <a href="http://www.projectshrink.com">Project Shrink</a>.

</p>
]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6178</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project 2010: Problems since the February CU if you have a semi-colon (;) as your list separator</title>
		<link>http://projectserverblogs.com/?p=6176</link>
		<comments>http://projectserverblogs.com/?p=6176#comments</comments>
		<pubDate>Wed, 16 May 2012 23:37:00 +0000</pubDate>
		<dc:creator>Brian Smith - MSFT</dc:creator>
		
		<guid isPermaLink="false">http://projectserverblogs.com/?guid=20518aaf4b52df912e835e1b5377a071</guid>
		<description><![CDATA[In the February Cumulative Update for Project 2010 we fixed an issue described as:


You create an .mpp file that was saved from a Project server by using the Save for Sharing command. When you try to resave the .mpp file back to the Project server in ...]]></description>
			<content:encoded><![CDATA[<p>In the February Cumulative Update for Project 2010 we fixed an issue described as:</p>
<ul>
<ul>
<li>You create an .mpp file that was saved from a Project server by using the <b>Save for Sharing</b> command. When you try to resave the .mpp file back to the Project server in Project 2010, the save process fails, and you receive the following error message:</li>
<ul>
<li>Project Server was unable to find the specified resource. If the problem continues, contact your server administrator.</li>
</ul>
<li>This issue occurs when the list separator character that is contained in resource names within the .mpp file on the client differs from the list separator character on the server.</li>
</ul>
</ul>
<p>We are now finding that in fixing this, we broke a couple of other things that you may be running into if you are using a list separator that is a semi-colon (;).&nbsp; This is most likely in Europe or Canada, but I&rsquo;m sure there are plenty of other places that could see this too.&nbsp; The issues are all related and we are working on a fix for them all, but just wanted to share some workarounds in case you are hitting these.&nbsp; The different scenarios I have seen so far are:</p>
<p>&nbsp;</p>
<ul>
<ul>
<li>Using Task Information dialog to remove or add resource assignments to a task</li>
<li>Using the Assign Resources dialog to add multiple resource assignments</li>
<li>Using the Task Information Dialog to set predecessors or successor information</li>
</ul>
</ul>
<p>*** Update - For Spanish readers - <a href="http://blogs.technet.com/b/elfarodeprojectserver/archive/2012/05/17/project-2010-problemas-desde-el-cu-de-febrero-2012-si-tenemos-un-punto-y-coma-como-separador-de-lista.aspx">http://blogs.technet.com/b/elfarodeprojectserver/archive/2012/05/17/project-2010-problemas-desde-el-cu-de-febrero-2012-si-tenemos-un-punto-y-coma-como-separador-de-lista.aspx</a> ***</p>
<p>So here are some examples of what can go wrong &ndash; and these examples need certain settings to be in place before you would ever see them, so don&rsquo;t feel left out if you don&rsquo;t experience any of these issues.</p>
<p>This first example assumes you have the semi-colon as list separator and also this is used in your resource names as a separator between first and last names.&nbsp; So you have a task that is already assigned to Smith; Brian and Jenkins; Adrian, and you want to add Fiessinger; Christophe.&nbsp; So initially your Task Information dialog looks like this:</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/2541.image_5F00_7144B2D3.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/5287.image_5F00_thumb_5F00_1812C914.png" width="469" height="248" /></a></p>
<p>Then you add Fiessinger; Christophe &ndash; and click OK &ndash; then you will see this:</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/7824.image_5F00_3EE0DF54.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/4101.image_5F00_thumb_5F00_37C1A2DC.png" width="608" height="52" /></a></p>
<p>That doesn&rsquo;t look quite right?&nbsp; Opening up the Task Information dialog again I see:</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/1300.image_5F00_02B513AC.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/3036.image_5F00_thumb_5F00_3E74AC5F.png" width="295" height="263" /></a></p>
<p>It has split each name in two, and created 6 new local resources &ndash; and assigned them.&nbsp; A couple of things here &ndash; it will not lose actual work &ndash; any assignments that already have work will be OK &ndash; and will not get un-assigned &ndash; but the extra local resource will still get created.&nbsp; Undo will also put things right.&nbsp; The same thing can occur even if you are removing a resource using this same dialog.&nbsp; If I removed Jenkins; Adrian, it would create Smith and&nbsp; Brian as two local resources.&nbsp; The workaround here is to use the Resource Names column in one of the views such as the Gantt view &ndash; and select/deselect from the drop down.</p>
<p>The second issue is with the Assign Resources dialog (which is why it isn&rsquo;t a good workaround for the first issues) and it has a couple of different scenarios depending on your use of the list separator in the resource names.&nbsp; If you do have the separator &ndash; like the example above &ndash; then you cannot assign from the Assign Resources dialog &ndash; the Assign button is disabled &ndash; as I show here.</p>
<p>&nbsp; <a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/8321.image_5F00_2263ED74.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/1057.image_5F00_thumb_5F00_3036336F.png" width="398" height="265" /></a></p>
<p>However, if I choose a resource with no list separator in the name the Assign button is active:</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/2538.image_5F00_570449AF.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/2541.image_5F00_thumb_5F00_21F7BA7F.png" width="406" height="273" /></a></p>
<p>The further issue with the Assign Resources comes when you make multiple selections that do not contain the list separator, such as the following:</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/1563.image_5F00_5DB75332.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/7824.image_5F00_thumb_5F00_569816BA.png" width="411" height="275" /></a></p>
<p>When I click Assign &ndash; I see an extra resource in my list, with a very cool name &ndash; &ldquo;adrian jenkins;brian smith;christophe fiessinger&rdquo; &ndash; and he/they has/have been assigned to the task.</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/4101.image_5F00_6874AA87.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/8321.image_5F00_thumb_5F00_7646F082.png" width="417" height="279" /></a></p>
<p>If I look at the resource sheet I can see &ldquo;adrian jenkins;brian smith;christophe fiessinger&rdquo; has been added as a new local resource.&nbsp; The workaround here, assuming you do not have the list separator in the name, is to assign one at a time, or of course the Resource Name column in the Gantt view can be used as for the previous example.</p>
<p>The last scenario is back to the Task Information dialog, but this time we are looking at the Predecessors tab.&nbsp; Say we have 3 tasks, T1, T2, and, you guessed it, T3.&nbsp; We open the Task Information dialog for T3, go to the Predecessors tab and enter either the IDs of the first two tasks, or select them in the drop down like this,</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/3515.image_5F00_0ED68DD3.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/7318.image_5F00_thumb_5F00_07B7515B.png" width="415" height="276" /></a></p>
<p>then press OK, we get the following error message.&nbsp; There is a problem with the predecessor information.</p>
<p><a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/1055.image_5F00_478137E0.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" border="0" alt="image" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-35-metablogapi/6758.image_5F00_thumb_5F00_6E4F4E20.png" width="786" height="164" /></a></p>
<p>The workaround for this one is to go to a view such as the Gantt view, and use the Predecessors column, and enter 1,2.</p>
<p>For each of these you could also work around them by setting your list separator to not be the semi-colon &ndash; but I appreciate that might give you some issues elsewhere &ndash; as it is a global setting on your PC.&nbsp; If you wish to try this you can go to Control Panel - Clock, Language and Region - Change the date, time or number format, then select Additional Settings then change the List Separator from a semi-colon to a comma, for example.&nbsp;</p>
<p>Sorry for any inconvenience this problem has caused you &ndash; and I will update this posting once I find out when a fix will be coming along &ndash; and potentially any other scenarios that I am made aware of where this bug rears its ugly head, and thanks to the customers that have quickly brought this to our attention.</p>
<p>&nbsp;</p><div style="clear:both;"></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10306083" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6176</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you didn’t get to Phoenix…</title>
		<link>http://projectserverblogs.com/?p=6172</link>
		<comments>http://projectserverblogs.com/?p=6172#comments</comments>
		<pubDate>Wed, 16 May 2012 18:41:40 +0000</pubDate>
		<dc:creator>Brian Smith - MSFT</dc:creator>
		
		<guid isPermaLink="false">http://projectserverblogs.com/?guid=70a61dbf1aa8cbf80c840f33a8b72d2b</guid>
		<description><![CDATA[Brian Ru just published a blog post over on the main Project blog announcing the release of all the recorded content from the Project Conference 2012 – on the Project Channel of Microsoft Showcase.&#160; So if you didn’t get to Project Conference 2...]]></description>
			<content:encoded><![CDATA[<p>Brian Ru just published a blog post over on the main Project blog <a href="http://blogs.msdn.com/b/project/archive/2012/05/16/announcing-public-access-to-project-conference-2012-content.aspx" >announcing the release of all the recorded content from the Project Conference 2012</a> – on the <a href="http://www.microsoft.com/en-us/showcase/Search.aspx?sf=TotalCount&amp;phrase=microsoft+project+conference+2012" >Project Channel of Microsoft Showcase</a>.&#160; So if you didn’t get to Project Conference 2012 this is a great chance to catch up with all the great content.&#160; For good support topics see <a href="http://www.microsoft.com/en-us/showcase/details.aspx?uuid=51df3727-cd8f-4f6c-8a01-3b86a7a79888" >PC319</a> and <a href="http://www.microsoft.com/en-us/showcase/details.aspx?uuid=7cfca8c1-4a94-4809-bf2b-6fa477d238de" >PC349</a> – as recently “leaked” on this very blog…</p>  <p>Enjoy!</p><div style="clear:both;"></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10305947" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing with UMT Project Essentials</title>
		<link>http://projectserverblogs.com/?p=6171</link>
		<comments>http://projectserverblogs.com/?p=6171#comments</comments>
		<pubDate>Wed, 16 May 2012 10:00:00 +0000</pubDate>
		<dc:creator>Andrew Lavinsky</dc:creator>
				<category><![CDATA[Project Essentials]]></category>
		<category><![CDATA[UMT]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">https://azlav.wordpress.com/?p=1680</guid>
		<description><![CDATA[For those developer types working in the ever increasing number of organizations that have deployed our Project Essentials product – I wanted to make sure you saw Mircea’s post on developing custom applications against PE: http://www.ro.umt.com/blog/2012/05/08/developing-project-essentials-applications-using-wcf-2/ Filed under: Project Essentials &#8230; <a href="http://azlav.umtblog.com/2012/05/16/developing-with-umt-project-essentials/">Continue reading <span>&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=azlav.umtblog.com&#38;blog=21305261&#38;post=1680&#38;subd=azlav&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For those developer types working in the ever increasing number of organizations that have deployed our <a href="http://umtprojectessentials.com/en-us/default.aspx">Project Essentials</a> product – I wanted to make sure you saw Mircea’s post on developing custom applications against PE:</p>
<p><a title="http://www.ro.umt.com/blog/2012/05/08/developing-project-essentials-applications-using-wcf-2/" href="http://www.ro.umt.com/blog/2012/05/08/developing-project-essentials-applications-using-wcf-2/">http://www.ro.umt.com/blog/2012/05/08/developing-project-essentials-applications-using-wcf-2/</a></p>
<br />Filed under: <a href='http://azlav.umtblog.com/category/project-essentials/'>Project Essentials</a> Tagged: <a href='http://azlav.umtblog.com/tag/project-essentials/'>Project Essentials</a>, <a href='http://azlav.umtblog.com/tag/umt/'>UMT</a>, <a href='http://azlav.umtblog.com/tag/workflow/'>Workflow</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/azlav.wordpress.com/1680/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/azlav.wordpress.com/1680/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/azlav.wordpress.com/1680/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/azlav.wordpress.com/1680/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/azlav.wordpress.com/1680/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/azlav.wordpress.com/1680/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/azlav.wordpress.com/1680/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/azlav.wordpress.com/1680/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/azlav.wordpress.com/1680/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/azlav.wordpress.com/1680/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/azlav.wordpress.com/1680/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/azlav.wordpress.com/1680/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/azlav.wordpress.com/1680/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/azlav.wordpress.com/1680/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=azlav.umtblog.com&#038;blog=21305261&%23038;post=1680&%23038;subd=azlav&%23038;ref=&%23038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6171</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://0.gravatar.com/avatar/cdebf5fa54e72810bf2381133617e506?s=96&amp;amp;d=identicon&amp;amp;r=G" length="" type="" />
		</item>
		<item>
		<title>Building advanced Project Server workflows with Nintex Workflow for Project Server</title>
		<link>http://projectserverblogs.com/?p=6175</link>
		<comments>http://projectserverblogs.com/?p=6175#comments</comments>
		<pubDate>Wed, 16 May 2012 09:57:15 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[#mspc12]]></category>
		<category><![CDATA[Demand Management]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[Nintex]]></category>
		<category><![CDATA[Nintex Workflow]]></category>
		<category><![CDATA[Project 2010]]></category>
		<category><![CDATA[Project Conference]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">https://epmpire.wordpress.com/?p=1735</guid>
		<description><![CDATA[Over the past week or two, Microsoft have been quietly uploading all the sessions from the recent Project Conference held in Phoenix to the Project channel on Microsoft Showcase. This morning the Project team officially announced the availability, so I am pleased to announce that the video of Mark McDermott’s and my session is now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=epmsource.com&#38;blog=9775552&#38;post=1735&#38;subd=epmpire&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Over the past week or two, Microsoft have been quietly <a href="http://www.microsoft.com/showcase/en/us/search?phrase=mspc12">uploading all the sessions</a> from the recent <a href="http://www.msprojectconference.com">Project Conference</a> held in Phoenix to the <a href="http://www.microsoft.com/en-us/showcase/channelDetails.aspx?channelid=microsoftproject">Project channel</a> on <a href="http://www.microsoft.com/en-us/showcase/default.aspx">Microsoft Showcase</a>. This morning the Project team <a href="http://blogs.msdn.com/b/project/archive/2012/05/16/announcing-public-access-to-project-conference-2012-content.aspx">officially announced</a> the availability, so I am pleased to announce that the video of <a href="http://twitter.com/#!/nintexmark">Mark McDermott’s</a> and my session is <a href="http://www.microsoft.com/en-us/showcase/details.aspx?uuid=5043bd79-dd44-484c-8daa-7b396a1a4b22">now available for your viewing pleasure</a>. I encourage you to watch it and let me know if you have any questions.</p>
<p><a href="http://www.microsoft.com/en-us/showcase/details.aspx?uuid=5043bd79-dd44-484c-8daa-7b396a1a4b22"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;margin-left:auto;margin-right:auto;padding-top:0;border:0;" title="image" src="http://epmpire.files.wordpress.com/2012/05/image.png?w=644&h=443" alt="image" width="644" height="443" border="0" /></a></p>
<p>Finally, the session deck, including notes is available for download at <a href="http://www.slideshare.net/alexanderb">slideshare.net</a>.</p>
<iframe src='http://www.slideshare.net/slideshow/embed_code/12919608' width='600' height='492'></iframe>
<br />Filed under: <a href='http://epmsource.com/category/project-2010/demand-management/'>Demand Management</a>, <a href='http://epmsource.com/category/mvp/'>MVP</a>, <a href='http://epmsource.com/category/project-2010/'>Project 2010</a>, <a href='http://epmsource.com/category/project-conference/'>Project Conference</a> Tagged: <a href='http://epmsource.com/tag/mspc12/'>#mspc12</a>, <a href='http://epmsource.com/tag/nintex/'>Nintex</a>, <a href='http://epmsource.com/tag/nintex-workflow/'>Nintex Workflow</a>, <a href='http://epmsource.com/tag/project-conference/'>Project Conference</a>, <a href='http://epmsource.com/tag/sharepoint/'>SharePoint</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/epmpire.wordpress.com/1735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/epmpire.wordpress.com/1735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/epmpire.wordpress.com/1735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/epmpire.wordpress.com/1735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/epmpire.wordpress.com/1735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/epmpire.wordpress.com/1735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/epmpire.wordpress.com/1735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/epmpire.wordpress.com/1735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/epmpire.wordpress.com/1735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/epmpire.wordpress.com/1735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/epmpire.wordpress.com/1735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/epmpire.wordpress.com/1735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/epmpire.wordpress.com/1735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/epmpire.wordpress.com/1735/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=epmsource.com&#038;blog=9775552&%23038;post=1735&%23038;subd=epmpire&%23038;ref=&%23038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6175</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
<enclosure url="http://epmpire.files.wordpress.com/2012/05/image.png" length="" type="" />
		</item>
		<item>
		<title>TechEd Europe–Amsterdam, 26-29 June.</title>
		<link>http://projectserverblogs.com/?p=6131</link>
		<comments>http://projectserverblogs.com/?p=6131#comments</comments>
		<pubDate>Mon, 14 May 2012 21:31:54 +0000</pubDate>
		<dc:creator>Ben Howard</dc:creator>
				<category><![CDATA[TechEd Europe]]></category>

		<guid isPermaLink="false">http://www.applepark.co.uk/teched-europeamsterdam-26-29-june/</guid>
		<description><![CDATA[<p>Just to say I’m going to be at the “ask the experts” stand at TechEd, answering questions on Project, Office and O365.  It would be good to put some faces to names, so please drop by to say hello.</p> <p></p> <p>http://europe.msteched.com/</p> <p>Enjoy,  Ben.</p> <span> . . . &#8594; Read More: <a href="http://www.applepark.co.uk/teched-europeamsterdam-26-29-june/">TechEd Europe&#8211;Amsterdam, 26-29 June.</a></span>]]></description>
			<content:encoded><![CDATA[<p>Just to say I’m going to be at the “ask the experts” stand at TechEd, answering questions on Project, Office and O365.  It would be good to put some faces to names, so please drop by to say hello.</p>
<p><a href="http://www.applepark.co.uk/wp-content/uploads/2012/05/image.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="image" src="http://www.applepark.co.uk/wp-content/uploads/2012/05/image_thumb.png" alt="image" width="644" height="125" border="0" /></a></p>
<p><a title="http://europe.msteched.com/" href="http://europe.msteched.com/">http://europe.msteched.com/</a></p>
<p>Enjoy,  Ben.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http://www.applepark.co.uk/teched-europeamsterdam-26-29-june/&amp;title=TechEd%20Europe&ndash;Amsterdam,%2026-29%20June." id="wpa2a_2"><img src="http://www.applepark.co.uk/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6131</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check #MSProject version number on remote machines using #PowerShell #ProjectServer #PS2010 #Office</title>
		<link>http://projectserverblogs.com/?p=6128</link>
		<comments>http://projectserverblogs.com/?p=6128#comments</comments>
		<pubDate>Mon, 14 May 2012 20:09:00 +0000</pubDate>
		<dc:creator>pwmather</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[CU]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Project 2010]]></category>
		<category><![CDATA[Project Server 2010]]></category>
		<category><![CDATA[PS2010]]></category>
		<category><![CDATA[Service Pack]]></category>

		<guid isPermaLink="false">https://pwmather.wordpress.com/?p=480</guid>
		<description><![CDATA[Below are two examples of PowerShell scripts to check the Project Professional 2010 version on remote machines. Ultimately the best solution would be to use Microsoft System Centre Configuration Manager to manage software updates. It is key that all Project Professional clients have the same version, especially if connecting to Project Server. Having all Project [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pwmather.wordpress.com&#38;blog=24479376&#38;post=480&#38;subd=pwmather&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Below are two examples of PowerShell scripts to check the Project Professional 2010 version on remote machines. Ultimately the best solution would be to use <a href="http://www.microsoft.com/en-us/server-cloud/system-center/configuration-manager-2012.aspx" >Microsoft System Centre Configuration Manager</a> to manage software updates. It is key that all Project Professional clients have the same version, especially if connecting to Project Server. Having all Project Professional clients at the same patch level will help with the stability of your EPM farm.</p>
<p>The two PowerShell scripts below give the same results but I wanted to include both as these are only examples of what is possible. Both scripts read the client machines from a text file. Add all of the client machines that have Project Profession installed into the text file as seen below:</p>
<p><a href="http://pwmather.files.wordpress.com/2012/05/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://pwmather.files.wordpress.com/2012/05/image_thumb.png?w=242&h=152" width="242" height="152" /></a></p>
<p>The first simple version just checks the product version from the file system on the client machine using a UNC path location:</p>
<p>$pcs = Get-Content &quot;C:\pcs.txt&quot;    <br />foreach($pc in $pcs)     <br />{     <br />$proj = (Get-Command &quot;\\$pc\C$\Program Files (x86)\Microsoft Office\Office14\WINPROJ.exe&quot;).FileVersionInfo.Productversion     <br />Write-host &quot;$pc has the following version of Project Professional:&quot; $Proj     <br />}</p>
<p>The second option is slightly more complex and automates Project Professional and gets version from the build property:</p>
<p>$pcs = Get-Content &quot;C:\pcs.txt&quot;   <br />foreach($pc in $pcs)    <br />{    <br />$session = New-PSSession -Name $pc1 -ComputerName $pc    <br />Write-host $pc -NONEWLINE    <br />Invoke-Command -Session $session -ScriptBlock {    <br />$Proj = new-object -comobject msproject.application    <br />Write-host &quot; has the following version of Project Professional:&quot; $Proj.Build    <br />$Proj.quit | out-null    <br />[System.Runtime.Interopservices.Marshal]::ReleaseComObject($Proj) |out-null    <br />Exit    <br />remove-PSSession -Session $session}    <br />}</p>
<p>The second option will require the remote machines to be configured for PowerShell remoting:</p>
<p><a title="http://technet.microsoft.com/en-us/library/dd819498.aspx" href="http://technet.microsoft.com/en-us/library/dd819498.aspx">http://technet.microsoft.com/en-us/library/dd819498.aspx</a></p>
<p>Both scripts should be run with an account that has admin access (domain admin) on all client machines.</p>
<p>An example output for both scripts can be seen below. Please note, the scripts were only run against one machine, if you have multiple client machines each one will appear on a new line:</p>
<p><a href="http://pwmather.files.wordpress.com/2012/05/image1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://pwmather.files.wordpress.com/2012/05/image_thumb1.png?w=512&h=176" width="512" height="176" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pwmather.wordpress.com/480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pwmather.wordpress.com/480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pwmather.wordpress.com/480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pwmather.wordpress.com/480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pwmather.wordpress.com/480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pwmather.wordpress.com/480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pwmather.wordpress.com/480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pwmather.wordpress.com/480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pwmather.wordpress.com/480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pwmather.wordpress.com/480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pwmather.wordpress.com/480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pwmather.wordpress.com/480/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pwmather.wordpress.com/480/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pwmather.wordpress.com/480/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pwmather.wordpress.com&#038;blog=24479376&%23038;post=480&%23038;subd=pwmather&%23038;ref=&%23038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6128</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://0.gravatar.com/avatar/c276320b905417e32f79e36108a45b0a?s=96&amp;amp;d=identicon&amp;amp;r=G" length="" type="" />
<enclosure url="http://pwmather.files.wordpress.com/2012/05/image_thumb.png" length="" type="" />
<enclosure url="http://pwmather.files.wordpress.com/2012/05/image_thumb1.png" length="" type="" />
		</item>
		<item>
		<title>Project Server Brings Project Portfolio Management to Small Businesses</title>
		<link>http://projectserverblogs.com/?p=6119</link>
		<comments>http://projectserverblogs.com/?p=6119#comments</comments>
		<pubDate>Mon, 14 May 2012 19:18:54 +0000</pubDate>
		<dc:creator>David Ducolon</dc:creator>
				<category><![CDATA[bpo]]></category>
		<category><![CDATA[business resources]]></category>
		<category><![CDATA[PMO]]></category>
		<category><![CDATA[PPM]]></category>
		<category><![CDATA[Project Portfolio Management]]></category>
		<category><![CDATA[Project Server]]></category>
		<category><![CDATA[Software as a Service]]></category>

		<guid isPermaLink="false">http://blog.adaquest.com/?p=497</guid>
		<description><![CDATA[No matter what size your business is, the decision of where to allocate your resources to meet your business goals is complicated.  A lot of factors come into play, and what may look like an obvious decision on the surface may not actually align with your goals in the long run.  This is where Microsoft &#8230;<p><a href="http://blog.adaquest.com/2012/05/14/project-server-brings-project-portfolio-management-to-small-businesses/">Read More</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.adaquest.com&#38;blog=24010223&#38;post=497&#38;subd=adaquest&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No matter what size your business is, the decision of where to allocate your resources to meet your business goals is complicated.  A lot of factors come into play, and what may look like an obvious decision on the surface may not actually align with your goals in the long run.  This is where Microsoft Project Server 2010 can help.</p>
<p>If you have a leadership role in a small to medium sized organization, chances are you wear a lot of hats.  It’s natural to try to handle resource allocation in an ad-hoc manner.  Common wisdom says, only big firms can justify spending the money for portfolio planning and management processes and tools.  However, Project Server is a <span style="color:#0000ff;"><a href="http://blog.adaquest.com/2011/07/18/why-should-i-consider-project-server-2010/" ><span style="color:#0000ff;">surprising resource </span></a></span>for small companies.</p>
<p style="text-align:center;"><a href="http://adaquest.files.wordpress.com/2012/05/decisions.jpg"><img class="aligncenter" title="Decisions" src="http://adaquest.files.wordpress.com/2012/05/decisions.jpg?w=107&h=150" alt="" width="107" height="150" /></a></p>
<p>With Project Server 2010, Microsoft has brought project portfolio management to the masses.  Before the 2010 release, portfolio prioritization was only available to highly structured, very mature organizations, but with Project Server 2010’s simplified web user interface, Microsoft walks any user through the process of capturing their business drivers, prioritizing those drivers against each other, establishing portfolios, etc. Once that is done the software applies a mature calculation process which evaluates the information you have already entered to produce charts, graphs, tables and other objective data to help you determine where you should focus your energy and resources.  There is no need for complex financials or other types of data.</p>
<p>Here’s an example of where this could be useful:</p>
<p><strong>Suburban Plastics, Inc. – a fictitious company</strong></p>
<p>Current business:  &#8220;Suburban, Inc.&#8221; produces sheet plastic for the local market.  The company is set in a suburban environment which provides the employees with a very comfortable area to exercise and a safe place to come to work.  &#8220;Suburban, Inc.&#8221; isn’t large enough to have a company fitness program.  The company would like to grow but not at the cost of its culture or history.</p>
<p>The business drivers, as decided upon by the leadership team, are as follows:</p>
<ol>
<li>Grow Revenue</li>
<li>Diversify Market</li>
<li>Provide a healthy and happy work environment</li>
<li>Provide the highest quality product</li>
</ol>
<div id="attachment_500" class="wp-caption aligncenter" style="width: 555px"><a href="http://adaquest.files.wordpress.com/2012/05/pws-blog-screenshot-11.png"><img class="size-full wp-image-500" title="PWS Blog Screenshot 1" src="http://adaquest.files.wordpress.com/2012/05/pws-blog-screenshot-11.png?w=545&h=174" alt="" width="545" height="174" /></a><p class="wp-caption-text">Click image to enlarge</p></div>
<p>After doing a pairwise comparison (shown below) of the drivers the following priority order is calculated and agreed upon by the leadership team.</p>
<div id="attachment_501" class="wp-caption aligncenter" style="width: 555px"><a href="http://adaquest.files.wordpress.com/2012/05/pws-blog-screenshot-2.png"><img class="size-full wp-image-501" title="PWS Blog Screenshot 2" src="http://adaquest.files.wordpress.com/2012/05/pws-blog-screenshot-2.png?w=545&h=268" alt="" width="545" height="268" /></a><p class="wp-caption-text">Click image to enlarge</p></div>
<p>After evaluating each driver against each other the following results were calculated by Project Server.</p>
<ol>
<li>Provide the highest quality product                                          % 42</li>
<li>Grow Revenue                                                                         % 28</li>
<li>Provide a healthy and happy work environment                      % 19</li>
<li>Diversify Market                                                                       % 11</li>
</ol>
<p>A proposal is presented to the leadership team to grow the business by entering into the manufacturing of plastic widgets.  This will most likely grow the annual revenue and it will certainly diversify their market.  On the surface this looks like a good way to invest in the future of the company.</p>
<p>However, after adding this initiative to the Portfolio it is easy to see that the initiative does not support the #1 business driver since this requires new machinery and new processes.  It scores high for #2, there is some risk so it only gets 80% credit for that driver.  To expand the business footprint, Suburban will have to relocate to an industrial neighborhood so it again does not support a business driver, this time #3.  For #4 the initiative is fully in alignment.  This means that the initiative gets full credit for supporting that driver.</p>
<p>Using Project Server the initiative scores a 33.4 % alignment.  This is very low and shows the leadership that while this sounded like a good idea, it is not very well aligned with their corporate priorities and therefore should not be undertaken.</p>
<p><a href="http://adaquest.files.wordpress.com/2012/05/decisions-21.jpg"><img class="aligncenter size-medium wp-image-508" title="Businesswoman  in Front of Doors" src="http://adaquest.files.wordpress.com/2012/05/decisions-21.jpg?w=300&h=241" alt="" width="300" height="241" /></a></p>
<p>This simple, structured method helps businesses eliminate preconceptions from the decision making process by providing objective data that is created around your company’s priorities, rather than an emotional response.  Essentially using Microsoft Project Server 2010’s portfolio management capability will help any organization stay true to its beliefs and goals.  You will not be driven by the passion of the moment to make your business decisions.</p>
<div id="attachment_502" class="wp-caption aligncenter" style="width: 154px"><a href="http://adaquest.files.wordpress.com/2012/05/decision-maker.jpg"><img class="size-thumbnail wp-image-502" title="Businessman Playing with Paper Fortuneteller" src="http://adaquest.files.wordpress.com/2012/05/decision-maker.jpg?w=144&h=150" alt="" width="144" height="150" /></a><p class="wp-caption-text">Don&#8217;t rely on this!</p></div>
<p>If you have questions about how this can work for your organization, feel free to contact me at <span style="color:#0000ff;"><a href="mailto:davidd@adaquest.com"><span style="color:#0000ff;">davidd@adaquest.com</span></a></span> .</p>
<br /> Tagged: <a href='http://blog.adaquest.com/tag/bpo/'>bpo</a>, <a href='http://blog.adaquest.com/tag/business-resources/'>business resources</a>, <a href='http://blog.adaquest.com/tag/project-portfolio-management/'>Project Portfolio Management</a>, <a href='http://blog.adaquest.com/tag/project-server/'>Project Server</a>, <a href='http://blog.adaquest.com/tag/software-as-a-service/'>Software as a Service</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/adaquest.wordpress.com/497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/adaquest.wordpress.com/497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/adaquest.wordpress.com/497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/adaquest.wordpress.com/497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/adaquest.wordpress.com/497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/adaquest.wordpress.com/497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/adaquest.wordpress.com/497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/adaquest.wordpress.com/497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/adaquest.wordpress.com/497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/adaquest.wordpress.com/497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/adaquest.wordpress.com/497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/adaquest.wordpress.com/497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/adaquest.wordpress.com/497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/adaquest.wordpress.com/497/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.adaquest.com&#038;blog=24010223&%23038;post=497&%23038;subd=adaquest&%23038;ref=&%23038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6119</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://0.gravatar.com/avatar/6d1d194b19f3580465bc0fbedbdd0229?s=96&amp;amp;d=identicon&amp;amp;r=G" length="" type="" />
<enclosure url="http://adaquest.files.wordpress.com/2012/05/decisions.jpg?w=107" length="" type="" />
<enclosure url="http://adaquest.files.wordpress.com/2012/05/pws-blog-screenshot-11.png" length="" type="" />
<enclosure url="http://adaquest.files.wordpress.com/2012/05/pws-blog-screenshot-2.png" length="" type="" />
<enclosure url="http://adaquest.files.wordpress.com/2012/05/decisions-21.jpg?w=300" length="" type="" />
<enclosure url="http://adaquest.files.wordpress.com/2012/05/decision-maker.jpg?w=144" length="" type="" />
		</item>
		<item>
		<title>WPC 2012 Partner Awards Nomination–THANK YOU for your submissions!</title>
		<link>http://projectserverblogs.com/?p=6130</link>
		<comments>http://projectserverblogs.com/?p=6130#comments</comments>
		<pubDate>Mon, 14 May 2012 17:37:09 +0000</pubDate>
		<dc:creator>Jan Kalis</dc:creator>
		
		<guid isPermaLink="false">http://blogs.msdn.com/b/jkalis/archive/2012/05/14/wpc-2012-partner-awards-nomination-thank-you-for-your-submissions.aspx</guid>
		<description><![CDATA[Partners – I would like to recognize your efforts in submitting your nominations! All judges and myself agreed that quality of submissions was the highest we have experienced so far! The diversity was huge - we have seen great case-studies and even g...]]></description>
			<content:encoded><![CDATA[<p>Partners – I would like to recognize your efforts in submitting your nominations! All judges and myself agreed that quality of submissions was the highest we have experienced so far! The diversity was huge - we have seen great case-studies and even greater solution you have built - and all this underscores the great success of Project 2010! Thank you!</p>  <p>To give you little more transparency into what’s next -&#160; in June World-wide Partner Group will announce the results - for PPM competency you can expect one winner and 3 finalists. We will also publish 6 additional partner names who’s solutions and case-studies are “honorable to mention”.</p>  <p>We are working hard on the Microsoft Project presence at WPC 2012 – you can expect Project booth, <a href="http://sessions.digitalwpc.com/topic/list">Sessions</a> (search for Project) led by Microsoft and showcasing partners, partner presentation in the partner theater and more. Stay tuned for updates in the near future!</p>  <p>Thanks and looking forward seeing you in Toronto!</p>  <p>Jan</p><div style="clear:both;"></div><img src="http://blogs.msdn.com/aggbug.aspx?PostID=10304978" width="1" height="1">]]></content:encoded>
			<wfw:commentRss>http://projectserverblogs.com/?feed=rss2&#038;p=6130</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

