<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: ADAM Administration with SharePoint and PowerShell</title>
	<atom:link href="http://muegge.com/blog/?feed=rss2&#038;p=101" rel="self" type="application/rss+xml" />
	<link>http://muegge.com/blog/?p=101</link>
	<description>IT Eclectia - A variety technical topics and tips.</description>
	<pubDate>Mon, 06 Sep 2010 13:34:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Murali</title>
		<link>http://muegge.com/blog/?p=101#comment-706</link>
		<dc:creator>Murali</dc:creator>
		<pubDate>Tue, 16 Feb 2010 13:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://muegge.com/blog/?p=101#comment-706</guid>
		<description>Dave,

Everything is updated as specified in iLoveSharePoint package's readme.txt file And it is working fine for sharepoint server administrators..
The below error is simply shown on the webpart itself, it is not added in event log.
The error message appears while displaying the plain web part, without any custom script.

"Error on Initialization Exception: Requested registry access is not allowed"

Let me know if you need any more details on this issue.

Thanks,
Murali</description>
		<content:encoded><![CDATA[<p>Dave,</p>
<p>Everything is updated as specified in iLoveSharePoint package&#8217;s readme.txt file And it is working fine for sharepoint server administrators..<br />
The below error is simply shown on the webpart itself, it is not added in event log.<br />
The error message appears while displaying the plain web part, without any custom script.</p>
<p>&#8220;Error on Initialization Exception: Requested registry access is not allowed&#8221;</p>
<p>Let me know if you need any more details on this issue.</p>
<p>Thanks,<br />
Murali</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmuegge</title>
		<link>http://muegge.com/blog/?p=101#comment-705</link>
		<dc:creator>dmuegge</dc:creator>
		<pubDate>Fri, 12 Feb 2010 23:06:19 +0000</pubDate>
		<guid isPermaLink="false">http://muegge.com/blog/?p=101#comment-705</guid>
		<description>Murali,

Without knowing details about your installation. I can only guess at the issue.

I would check to make sure the control was GAC'd properly and also added to the safecontrols in the SharePoint Web.config. There is some information on this in the comments on this post.

It is also possible there are some permissions problems in SharePoint or the application eventlog registry key, which gets created for each .Net application was not created properly.

I hope this helps point you in the right direction.

Thanks,

Dave</description>
		<content:encoded><![CDATA[<p>Murali,</p>
<p>Without knowing details about your installation. I can only guess at the issue.</p>
<p>I would check to make sure the control was GAC&#8217;d properly and also added to the safecontrols in the SharePoint Web.config. There is some information on this in the comments on this post.</p>
<p>It is also possible there are some permissions problems in SharePoint or the application eventlog registry key, which gets created for each .Net application was not created properly.</p>
<p>I hope this helps point you in the right direction.</p>
<p>Thanks,</p>
<p>Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Murali</title>
		<link>http://muegge.com/blog/?p=101#comment-704</link>
		<dc:creator>Murali</dc:creator>
		<pubDate>Fri, 12 Feb 2010 14:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://muegge.com/blog/?p=101#comment-704</guid>
		<description>When i add ilovesharepoint (power web part v3.0) on the site it is giving an error "Error on Initialization Exception: Requested registry access is not allowed" for non-admin user. It is giving the error for plain web part, which is downloded from http://ilovesharepoint.codeplex.com/releases/view/18883 
And it is running for server administrator fine.

Could you update me on this ASAP. It is little urgent.</description>
		<content:encoded><![CDATA[<p>When i add ilovesharepoint (power web part v3.0) on the site it is giving an error &#8220;Error on Initialization Exception: Requested registry access is not allowed&#8221; for non-admin user. It is giving the error for plain web part, which is downloded from <a href="http://ilovesharepoint.codeplex.com/releases/view/18883" onclick="javascript:pageTracker._trackPageview('/outbound/comment/ilovesharepoint.codeplex.com');" rel="nofollow">http://ilovesharepoint.codeplex.com/releases/view/18883</a><br />
And it is running for server administrator fine.</p>
<p>Could you update me on this ASAP. It is little urgent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmuegge</title>
		<link>http://muegge.com/blog/?p=101#comment-702</link>
		<dc:creator>dmuegge</dc:creator>
		<pubDate>Sun, 29 Nov 2009 14:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://muegge.com/blog/?p=101#comment-702</guid>
		<description>Martin,

To GAC the Quest DLL you must drag and drop copy the dll from it's installed location into the %windir%\assembly directory.
You can also use the regasm tool from the .Net framework SDK. Instructions for this method are on MSDN.

To set a safe control in sharepoint you need to add entries like below to the &lt;SafeControls&gt; section of the web config. There should be other entries there already.
&lt;pre lang="xml" line="1"&gt;
&lt;SafeControl Assembly="iLoveSharePoint.WebControls.PowerWebPart, Version=3.0.0.0, Culture=neutral, PublicKeyToken=7f77686204a6dd39" Namespace="iLoveSharePoint.WebControls" TypeName="*" Safe="True" /&gt;
&lt;SafeControl Assembly="Quest.ActiveRoles.ArsPowerShellSnapIn, Version=1.1.0.0, Culture=neutral, PublicKeyToken=37ba620bec38a887" Namespace="Quest.ActiveRoles" TypeName="*" Safe="True" /&gt;
&lt;/pre&gt;

Thanks,

Dave</description>
		<content:encoded><![CDATA[<p>Martin,</p>
<p>To GAC the Quest DLL you must drag and drop copy the dll from it&#8217;s installed location into the %windir%\assembly directory.<br />
You can also use the regasm tool from the .Net framework SDK. Instructions for this method are on MSDN.</p>
<p>To set a safe control in sharepoint you need to add entries like below to the <safecontrols> section of the web config. There should be other entries there already.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="xml xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;SafeControl</span> <span style="color: #000066;">Assembly</span>=<span style="color: #ff0000;">&quot;iLoveSharePoint.WebControls.PowerWebPart, Version=3.0.0.0, Culture=neutral, PublicKeyToken=7f77686204a6dd39&quot;</span> <span style="color: #000066;">Namespace</span>=<span style="color: #ff0000;">&quot;iLoveSharePoint.WebControls&quot;</span> <span style="color: #000066;">TypeName</span>=<span style="color: #ff0000;">&quot;*&quot;</span> <span style="color: #000066;">Safe</span>=<span style="color: #ff0000;">&quot;True&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;SafeControl</span> <span style="color: #000066;">Assembly</span>=<span style="color: #ff0000;">&quot;Quest.ActiveRoles.ArsPowerShellSnapIn, Version=1.1.0.0, Culture=neutral, PublicKeyToken=37ba620bec38a887&quot;</span> <span style="color: #000066;">Namespace</span>=<span style="color: #ff0000;">&quot;Quest.ActiveRoles&quot;</span> <span style="color: #000066;">TypeName</span>=<span style="color: #ff0000;">&quot;*&quot;</span> <span style="color: #000066;">Safe</span>=<span style="color: #ff0000;">&quot;True&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></td></tr></table></div>

<p>Thanks,</p>
<p>Dave</safecontrols></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://muegge.com/blog/?p=101#comment-701</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Mon, 23 Nov 2009 20:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://muegge.com/blog/?p=101#comment-701</guid>
		<description>Hi, 

I stll trying to install your ADAM Administration with SharePoint and PowerShell sloution. 

Could you explain how to install the quest dll to GAC and how to set as a safecontrol in the sharepoint web.config? 

Many thanks in advanced. 

Greetings  

Martin</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I stll trying to install your ADAM Administration with SharePoint and PowerShell sloution. </p>
<p>Could you explain how to install the quest dll to GAC and how to set as a safecontrol in the sharepoint web.config? </p>
<p>Many thanks in advanced. </p>
<p>Greetings  </p>
<p>Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmuegge</title>
		<link>http://muegge.com/blog/?p=101#comment-698</link>
		<dc:creator>dmuegge</dc:creator>
		<pubDate>Fri, 12 Jun 2009 11:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://muegge.com/blog/?p=101#comment-698</guid>
		<description>Christian,

I appreciate your contribution. I know a few other places I am going to use it in the future.

Sure, a link to my post would be great.

Thanks,

Dave</description>
		<content:encoded><![CDATA[<p>Christian,</p>
<p>I appreciate your contribution. I know a few other places I am going to use it in the future.</p>
<p>Sure, a link to my post would be great.</p>
<p>Thanks,</p>
<p>Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Glessner</title>
		<link>http://muegge.com/blog/?p=101#comment-697</link>
		<dc:creator>Christian Glessner</dc:creator>
		<pubDate>Fri, 12 Jun 2009 10:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://muegge.com/blog/?p=101#comment-697</guid>
		<description>Hi David,
I'm pleased to see that you like Power WebPart :-)
If your interested I can link your post on the CodePlex page.

Bye,Christian</description>
		<content:encoded><![CDATA[<p>Hi David,<br />
I&#8217;m pleased to see that you like Power WebPart <img src='http://muegge.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
If your interested I can link your post on the CodePlex page.</p>
<p>Bye,Christian</p>
]]></content:encoded>
	</item>
</channel>
</rss>
