<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/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>How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx</link><description>Chester needs to get the credits for the findings in the following blog as he pointed me to this specific behaviour! MCMS does not have a documented method to identify if the current user is a MCMS administrator or not. But there is a very easy way around</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>How to identify if a user is a MCMS administrator without going into the database?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#406228</link><pubDate>Sat, 11 Jun 2005 23:02:09 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:406228</guid><dc:creator>Andrew Connell [MVP MCMS]</dc:creator><description /></item><item><title>re: How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3102265</link><pubDate>Thu, 07 Aug 2008 21:26:21 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3102265</guid><dc:creator>Ankit</dc:creator><description>&lt;p&gt;Hi Stefan&lt;/p&gt;
&lt;p&gt;Is there a way to Export and Import just user group rights and users from Site Manager in MCMS 2002?&lt;/p&gt;</description></item><item><title>re: How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3102314</link><pubDate>Thu, 07 Aug 2008 23:41:59 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3102314</guid><dc:creator>Stefan_Gossner</dc:creator><description>&lt;p&gt;Hi Ankit,&lt;/p&gt;
&lt;p&gt;no, this can only be done using the Site Deployment API.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Stefan&lt;/p&gt;
</description></item><item><title>re: How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3102454</link><pubDate>Fri, 08 Aug 2008 08:21:12 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3102454</guid><dc:creator>Ankit</dc:creator><description>&lt;p&gt;Can you give me an example how to do it using Site Deployment API's ? I have an existing MCMS Database which has more then 100 users and 50 User groups I need to Import all new SDO to it how do I retain the user groups and right there so that channel hierarchy is new but rights are old.&lt;/p&gt;</description></item><item><title>re: How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3102477</link><pubDate>Fri, 08 Aug 2008 09:52:19 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3102477</guid><dc:creator>Stefan_Gossner</dc:creator><description>&lt;p&gt;Hi Ankit,&lt;/p&gt;
&lt;p&gt;the following script can be used to export all users and rights groups:&lt;/p&gt;
&lt;p&gt;Dim pCmsDeployExport &lt;/p&gt;
&lt;p&gt;Dim shell &lt;/p&gt;
&lt;p&gt;Dim pExportOptions &lt;/p&gt;
&lt;p&gt;Set pCmsUserGroupBackupRestore = &lt;/p&gt;
&lt;p&gt;CreateObject(&amp;quot;CmsDeployServer.CmsUserGroupBackupRestore.1&amp;quot;) &lt;/p&gt;
&lt;p&gt;pCmsUserGroupBackupRestore.AuthenticateAsCurrentUser() &lt;/p&gt;
&lt;p&gt;If ( Err.Number &amp;lt;&amp;gt; 0 ) Then &lt;/p&gt;
&lt;p&gt;Call MsgBox(Err.Description, vbCritical, &amp;quot;Backup/Restore PROBLEM&amp;quot;) &lt;/p&gt;
&lt;p&gt;Set pCmsUserGroupBackupRestore = Nothing &lt;/p&gt;
&lt;p&gt;else &lt;/p&gt;
&lt;p&gt;strPackageFileName = &amp;quot;c:\export-users.sdo&amp;quot; &lt;/p&gt;
&lt;p&gt;strReportUrl = pCmsUserGroupBackupRestore.Backup(&amp;quot;strPackageFileName&amp;quot;) &lt;/p&gt;
&lt;p&gt;' Display the report in the Web browser. &lt;/p&gt;
&lt;p&gt;Set shell = WScript.CreateObject(&amp;quot;WScript.Shell&amp;quot;) &lt;/p&gt;
&lt;p&gt;shell.Run &amp;quot;&lt;a rel="nofollow" target="_new" href="http://localhost&amp;quot;"&gt;http://localhost&amp;quot;&lt;/a&gt; &amp;amp; strReportUrl, 7 &lt;/p&gt;
&lt;p&gt;WScript.Echo &amp;quot;Export complete.&amp;quot; &lt;/p&gt;
&lt;p&gt;end if &lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Stefan&lt;/p&gt;
</description></item><item><title>re: How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3102700</link><pubDate>Fri, 08 Aug 2008 20:21:32 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3102700</guid><dc:creator>Ankit</dc:creator><description>&lt;p&gt;Thank Stefan, It worked for me :)&lt;/p&gt;</description></item><item><title>re: How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3102749</link><pubDate>Fri, 08 Aug 2008 22:21:02 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3102749</guid><dc:creator>Ankit</dc:creator><description>&lt;p&gt;Just checked it did imported the users but the Channel rights were not imported, while Importing the SDO I chose:&lt;/p&gt;
&lt;p&gt;Use Package Container Rights in Containers &lt;/p&gt;
&lt;p&gt;Replace with package container rights&lt;/p&gt;
&lt;p&gt;I dont know what am I doing wrong it is importing all the users and groups but not the Channel/Resource/Template rights, can you tell me why please.&lt;/p&gt;</description></item><item><title>re: How to identify if a user is a MCMS administrator?</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3103311</link><pubDate>Mon, 11 Aug 2008 09:47:16 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3103311</guid><dc:creator>Stefan_Gossner</dc:creator><description>&lt;p&gt;Hi Ankit,&lt;/p&gt;
&lt;p&gt;that is as expected. This CmsUserGroupBackupRestore allows to backup/restore rights groups with users. To deploy rights on the channels you need to export the channels with the appropriate option in Site Manager. There is a &amp;quot;Rights Options&amp;quot; tab on the Site Deployment export dialog and there are options on whether to import container rights on the import dialog.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Stefan&lt;/p&gt;
</description></item><item><title>Delete option in Web Author Console | keyongtech</title><link>http://blogs.technet.com/stefan_gossner/archive/2005/06/10/406175.aspx#3185306</link><pubDate>Sun, 18 Jan 2009 19:29:42 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3185306</guid><dc:creator>Delete option in Web Author Console | keyongtech</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.keyongtech.com/365503-delete-option-in-web-author"&gt;http://www.keyongtech.com/365503-delete-option-in-web-author&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>