<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://powershell.com/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>PowerShell for Windows</title><link>http://powershell.com/cs/forums/200.aspx</link><description>Moderated by PowerShell MVP &lt;a href="http://powershell.com/cs/content/experts.aspx#tobias-weltner"&gt;Dr. Tobias Weltner&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 (Build: 30929.2835)</generator><item><title>Re: Sessions with Microsoft CRM</title><link>http://powershell.com/cs/forums/thread/15707.aspx</link><pubDate>Fri, 30 Mar 2012 17:32:12 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15707</guid><dc:creator>Tobias</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15707.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=200&amp;PostID=15707</wfw:commentRss><description>&lt;p&gt;great! Thanks for sharing... :-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Sessions with Microsoft CRM</title><link>http://powershell.com/cs/forums/thread/15580.aspx</link><pubDate>Tue, 27 Mar 2012 14:19:47 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15580</guid><dc:creator>crad14</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15580.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=200&amp;PostID=15580</wfw:commentRss><description>&lt;p&gt;Hey Tobias, Thanks for the reply. I ended up being able to resolve this...I probably should have put my resolution here...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;So in case anyone else comes by....&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I did need to add that string to the registry...however I couldn&amp;#39;t figure out what url to use....this one finally worked&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;(get-crmsetting webaddresssettings).helpserverurl &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;The value in that property Was the url I used...then I added the&amp;nbsp;&lt;span&gt;/XrmDeployment/2011/deployment.svc &amp;nbsp; &amp;nbsp;&lt;/span&gt;Then everything seemed to work fine&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Sessions with Microsoft CRM</title><link>http://powershell.com/cs/forums/thread/15576.aspx</link><pubDate>Tue, 27 Mar 2012 10:41:01 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15576</guid><dc:creator>Tobias</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15576.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=200&amp;PostID=15576</wfw:commentRss><description>&lt;p&gt;What do you get when you use Invoke-Command to send the whole code as a scriptblock?&lt;/p&gt;
&lt;p&gt;Invoke-Command { your code here } -computername target&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Sessions with Microsoft CRM</title><link>http://powershell.com/cs/forums/thread/15025.aspx</link><pubDate>Thu, 01 Mar 2012 16:01:40 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15025</guid><dc:creator>crad14</dc:creator><slash:comments>0</slash:comments><comments>http://powershell.com/cs/forums/thread/15025.aspx</comments><wfw:commentRss>http://powershell.com/cs/forums/commentrss.aspx?SectionID=200&amp;PostID=15025</wfw:commentRss><description>&lt;p&gt;
&lt;p&gt;With powershell I am trying to do this...&lt;/p&gt;
&lt;pre class="prettyprint"&gt;&lt;p&gt;&lt;span class="pln"&gt;enter&lt;/span&gt;&lt;span class="pun"&gt;-&lt;/span&gt;&lt;span class="typ"&gt;PSSession&lt;/span&gt;&lt;span class="pln"&gt; &lt;/span&gt;&lt;span class="pun"&gt;-&lt;/span&gt;&lt;span class="typ"&gt;ComputerName&lt;/span&gt;&lt;span class="pln"&gt; $server&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="typ"&gt;Add&lt;/span&gt;&lt;span class="pun"&gt;-&lt;/span&gt;&lt;span class="typ"&gt;PSSnapin&lt;/span&gt;&lt;span class="pln"&gt; &lt;/span&gt;&lt;span class="typ"&gt;Microsoft&lt;/span&gt;&lt;span class="pun"&gt;.&lt;/span&gt;&lt;span class="typ"&gt;Crm&lt;/span&gt;&lt;span class="pun"&gt;.&lt;/span&gt;&lt;span class="typ"&gt;PowerShell&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="typ"&gt;Get&lt;/span&gt;&lt;span class="pun"&gt;-&lt;/span&gt;&lt;span class="typ"&gt;CrmSetting&lt;/span&gt;&lt;span class="pln"&gt; &lt;/span&gt;&lt;span class="typ"&gt;TraceSettings&lt;/span&gt;&lt;/p&gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But it keeps giving me this errorr&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;Please set Registry entry DeploymentWSUrl=&amp;#39;http://FQN_DWS_MACHINE_NAME/XrmDeployment/2011/deployment.svc&amp;#39; on&lt;br /&gt;Software\Microsoft\MSCRM on LocalMachine&lt;br /&gt;&amp;nbsp; &amp;nbsp; + CategoryInfo &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: NotSpecified: (:) [Get-CrmSetting], ArgumentException&lt;br /&gt;&amp;nbsp; &amp;nbsp; + FullyQualifiedErrorId : System.ArgumentException,Microsoft.Crm.PowerShell.GetCrmSettingCmdlet&lt;/p&gt;
&lt;p&gt;When I rdp into the box I can run the Get-CRmsetting command just fine...&lt;/p&gt;
&lt;p&gt;I check the registry but I don&amp;#39;t see any key like this, and besides I am not sure what the registry key would accomplish anyway.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am hoping someone can help me resolve this so I can do some remote stuff with CRM!&lt;/p&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>