<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>MK2-风 之谷 - Active Directory</title><link>http://www.mk2leo.com/</link><description>大家来学习编程吧 - </description><generator>RainbowSoft Studio Z-Blog 1.8 Arwen Build 90619</generator><language>zh-CN</language><copyright>MK2-风版权所有.</copyright><pubDate>Tue, 07 Sep 2010 12:12:24 +0800</pubDate><item><title>AD 批处理用户登录限制 (原创)</title><author>mk2leo@qq.com (leoling504)</author><link>http://www.mk2leo.com/post/43.html</link><pubDate>Tue, 11 Nov 2008 23:27:43 +0800</pubDate><guid>http://www.mk2leo.com/post/43.html</guid><description><![CDATA[<p>辛苦了一整日找资料..总於在外国网站看到一小篇关於用脚本设置域用户登录远程桌面的限制.这个真找得辛苦.再配合其他站的教程.</p><p>才整理出这个寻找整个OU对像下的用户.把登录限制取消掉..要不然.400多个用户.一个一个点.起码要几个小时了....</p><p>代码如下</p><hr /><p>Const ADS_SCOPE_SUBTREE = 2 <br />Const ADS_PROPERTY_CLEAR = 1<br />Set objConnection = CreateObject(&quot;ADODB.Connection&quot;) <br />Set objCommand = CreateObject(&quot;ADODB.Command&quot;) <br />objConnection.Provider = &quot;ADsDSOObject&quot; <br />objConnection.Open &quot;Active Directory Provider&quot; <br />Set objCommand.ActiveConnection = objConnection <br />objCommand.Properties(&quot;Page Size&quot;) = 1000 <br />objCommand.Properties(&quot;Searchscope&quot;) = ADS_SCOPE_SUBTREE <br />objCommand.CommandText = _ <br />&quot;SELECT cn FROM 'LDAP://ou=要找的OU,dc=你的域名称,dc=com' WHERE objectCategory='user'&quot;<br />Set objRecordSet = objCommand.Execute <br />objRecordSet.MoveFirst <br />Do Until objRecordSet.EOF <br />Set objUser = GetObject _<br />(&quot;<a href="ldap://cn=&quot;&amp;objRecordSet.Fields(&quot;cn&quot;).Value&amp;&quot;,ou=要找的OU,dc=你的域名称,dc=com/">LDAP://cn=&quot;&amp;objRecordSet.Fields(&quot;cn&quot;).Value&amp;&quot;,ou=要找的OU,dc=你的域名称,dc=com</a>&quot;)&nbsp; <br />objUser.PutEx ADS_PROPERTY_CLEAR, &quot;userWorkstations&quot;,&quot;&quot; <br />objUser.SetInfo<br />objRecordSet.MoveNext <br />Loop <br />&nbsp;</p><hr /><p>大家只要修改一下OU和DC为你的域资料.就能把OU组中的用户登录限制取消.大家也可以修改一下DO UNTIL下的代码.做成其他功能.AD对像的属性.我也开了一个帖例出来了.大家可以跟着修改.代码注释就免了.没人看.注了也白费.有需要的就留言吧...</p><p>&nbsp;</p><p>&nbsp;</p>]]></description><category>Active Directory</category><comments>http://www.mk2leo.com/post/43.html#comment</comments><wfw:comment>http://www.mk2leo.com/</wfw:comment><wfw:commentRss>http://www.mk2leo.com/feed.asp?cmt=43</wfw:commentRss><trackback:ping>http://www.mk2leo.com/cmd.asp?act=tb&amp;id=43&amp;key=c70d9838</trackback:ping></item><item><title>備份和恢复 Active Directory</title><author>mk2leo@qq.com (leoling504)</author><link>http://www.mk2leo.com/post/42.html</link><pubDate>Tue, 11 Nov 2008 04:11:51 +0800</pubDate><guid>http://www.mk2leo.com/post/42.html</guid><description><![CDATA[<h2 itxtvisited="1">这个是命令方法.最简单的了</h2><h2 itxtvisited="1">如何備份Active Directory中使用命令行</h2><p itxtvisited="1">您可以執行備份的Active Directory的命令行使用Ntbackup會命令行實用工具。 這種辦法可以作為替代品使用備份實用工具。</p><p itxtvisited="1">若要使用Ntbackup會命令行實用程序來執行備份，</p><ol itxtvisited="1">    <li itxtvisited="1">單擊開始，運行，輸入指令在運行對話框中。 單擊確定。</li>    <li itxtvisited="1">您可以使用下面的命令和選項來備份系統狀態數據：</li></ol><ul itxtvisited="1">    <ul itxtvisited="1">        <li itxtvisited="1"><code itxtvisited="1">ntbackup backup systemstate /J &lsquo;Backup Job&rsquo; /F &lsquo;C:\backupfile.bkf&rsquo;</code>        <ul itxtvisited="1">            <li itxtvisited="1"><code itxtvisited="1">ntbackup</code> ，表明了Ntbackup會命令行備份工具</li>            <li itxtvisited="1"><code itxtvisited="1">backup</code>指定備份應當</li>            <li itxtvisited="1"><code itxtvisited="1">systemstate</code>規定，最新的數據系統應該備份</li>            <li itxtvisited="1"><code itxtvisited="1">J</code> ，界定的名字備份工作</li>            <li itxtvisited="1"><code itxtvisited="1">F</code>定義名稱的備份文件</li>        </ul>        </li>    </ul></ul><h2 itxtvisited="1">如何執行主還原的Active Directory</h2><ol itxtvisited="1">    <li itxtvisited="1">重新啟動域控制器。</li>    <li itxtvisited="1">在啟動期間，按下F8提示時，然後選擇目錄服務還原模式（ Windows議會只）由Windows高級選項菜單。 按Enter 。</li>    <li itxtvisited="1">選擇作業系統，應該開始。 按Enter 。</li>    <li itxtvisited="1">當安全模式登錄提示出現時，輸入適當的本地管理員帳戶信息，然後單擊確定。</li>    <li itxtvisited="1">單擊確定時，會出現訊息，建議Windows是運行在安全模式。</li>    <li itxtvisited="1">單擊開始，所有程序，附件，系統工具，然後單擊備份。</li>    <li itxtvisited="1">最初的網頁備份或還原嚮導，單擊下一步。</li>    <li itxtvisited="1">確保還原文件和設置選項已被選中的備份或還原頁。 單擊下一步。</li>    <li itxtvisited="1">關於如何還原頁上，選擇備份您要使用的小學恢復過程。 單擊下一步。</li>    <li itxtvisited="1">單擊高級。</li>    <li itxtvisited="1">在哪裡還原頁上，留下的默認設置的原始位置，保持不變，然後單擊下一步</li>    <li itxtvisited="1">關於如何還原頁上，選擇取代現有檔案的選擇。 單擊下一步。</li>    <li itxtvisited="1">當高級還原選項的網頁出現，使當恢復複製的數據集，紀念恢復數據作為原始數據的所有副本複選框。 您可以離開所有其他默認設置，在高級還原選項頁不變。</li>    <li itxtvisited="1">單擊下一步。</li>    <li itxtvisited="1">單擊完成小學開始恢復的Active Directory 。</li>    <li itxtvisited="1">重新啟動服務器。</li></ol><hr /><hr /><p><table id="AutoNumber1" style="border-collapse: collapse" bordercolor="#111111" height="574" cellspacing="0" cellpadding="0" width="480" border="0">    <tbody>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="61"><font size="2"><font color="#800000">步驟1</font><br />            啟動「製作備份」工具，選擇「備份檔案及設定」的選項開始AD設定的備份。            <p>&nbsp;</p>            </font>            <p><img height="338" src="http://www.ithome.com.tw/img/95/47592_1_1_l.jpg" width="479" border="0" alt="" /></p>            </td>        </tr>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="74"><font size="2"><font color="#800000">步驟2</font><br />            由於我們的備份需求以備份AD設定為主，選擇下方選項，手動選取想要備份的資料。            <p>&nbsp;</p>            <p><img height="351" src="http://www.ithome.com.tw/img/95/47592_1_2_l.jpg" width="479" border="0" alt="" /></p>            </font></td>        </tr>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="61"><font size="2"><font color="#800000">步驟3</font><br />            在System State」的項目之下，點選之後，可以看到「Active Directory」的備份選項。            <p>&nbsp;</p>            </font>            <p><img height="349" src="http://www.ithome.com.tw/img/95/47592_1_3_l.jpg" width="479" border="0" alt="" /></p>            </td>        </tr>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="61"><font size="2"><font color="#800000">步驟4</font><br />            這裡必須指定檔案匯出之後的存放位置，可以是本機硬碟，也可以是共享資料夾。            <p>&nbsp;</p>            </font>            <p><img height="350" src="http://www.ithome.com.tw/img/95/47592_1_4_l.jpg" width="479" border="0" alt="" /></p>            </td>        </tr>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="61"><font size="2"><font color="#800000">步驟5</font><br />            尚可以透過進階選項，設定是否要啟用差異性備份等其他模式備份AD設定。            <p>&nbsp;</p>            </font>            <p><img height="341" src="http://www.ithome.com.tw/img/95/47592_1_5_l.jpg" width="479" border="0" alt="" /></p>            </td>        </tr>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="63"><font size="2"><font color="#800000">步驟6</font><br />            備份過程中，工具會顯示完成備份工作的所需時間，以及目前的進度等相關資訊。            <p>&nbsp;</p>            </font>            <p><img height="358" src="http://www.ithome.com.tw/img/95/47592_2_3_l.jpg" width="347" align="center" border="0" alt="" /></p>            </td>        </tr>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="61"><font size="2"><font color="#800000">步驟7</font><br />            以「目錄還原模式」進入Windows系統，這是AD專用的安全模式。            <p>&nbsp;</p>            </font>            <p><img height="363" src="http://www.ithome.com.tw/img/95/47592_2_4_l.jpg" width="479" border="0" alt="" /></p>            </td>        </tr>        <tr>            <td width="100%" bgcolor="#e6ffe6" height="74"><font size="2"><font color="#800000">步驟8</font><br />            將備份檔的資料還原到系統重新開機，就可以在AD的管理介面看到先前的各項變更。            <p>&nbsp;</p>            <p><img height="344" src="http://www.ithome.com.tw/img/95/47592_2_5_l.jpg" width="478" border="0" alt="" /></p>            </font></td>        </tr>    </tbody></table><br /><br />&nbsp;</p>]]></description><category>Active Directory</category><comments>http://www.mk2leo.com/post/42.html#comment</comments><wfw:comment>http://www.mk2leo.com/</wfw:comment><wfw:commentRss>http://www.mk2leo.com/feed.asp?cmt=42</wfw:commentRss><trackback:ping>http://www.mk2leo.com/cmd.asp?act=tb&amp;id=42&amp;key=d5c15660</trackback:ping></item><item><title>Active Directory的用户属性说明 </title><author>mk2leo@qq.com (leoling504)</author><link>http://www.mk2leo.com/post/40.html</link><pubDate>Tue, 11 Nov 2008 00:14:15 +0800</pubDate><guid>http://www.mk2leo.com/post/40.html</guid><description><![CDATA[<p><table class="fixedTable blogpost" cellspacing="0" width="100%" border="0">    <tbody>        <tr>            <td class="ellipse"><span class="bvTitle" id="subjcns!1p7z3crF2qYuLOFpMVLrDS2A!106">Active Directory中User对象属性</span></td>        </tr>        <tr>            <td class="bvh8">&nbsp;</td>        </tr>        <tr>            <td id="msgcns!1p7z3crF2qYuLOFpMVLrDS2A!106"><a name="ad.user_object_user_interface_mapping"></a>User Object User Interface Mapping            <p>The following tables identify the property pages supplied by the Active Directory Users and Computers snap-in. Each table identifies the user interface elements of the property page and the Active Directory attribute associated with that user interface element. Because the property pages that are displayed by the Active Directory Users and Computers snap-in can be extended, it is not possible to provide this data for all of the pages displayed in a property sheet.</p>            General Property Page            <p>&nbsp;</p>            <p>The following table lists UI labels of the <b>General</b> property page.</p>            <p>* UI label Active Directory attribute <br />            * First Name <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_givenname.asp"><b><font color="#ff0000">givenName</font></b></a> <br />            * Last Name <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_sn.asp"><b><font color="#ff0000">sn</font></b></a> <br />            * Initials <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_initials.asp"><b><font color="#ff0000">initials</font></b></a> <br />            * Description <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_description.asp"><b><font color="#ff0000">description</font></b></a> <br />            * Office <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_physicaldeliveryofficename.asp"><b><font color="#ff0000">physicalDeliveryOfficeName</font></b></a> <br />            * Telephone Number <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_telephonenumber.asp"><b><font color="#ff0000">telephoneNumber</font></b></a> <br />            * Telephone: Other <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_othertelephone.asp"><b><font color="#ff0000">otherTelephone</font></b></a> <br />            * E-Mail <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_mail.asp"><b><font color="#ff0000">mail</font></b></a> <br />            * Web Page <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_wwwhomepage.asp"><b><font color="#ff0000">wwwHomePage</font></b></a> <br />            Web Page: Other <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_url.asp"><b><font color="#ff0000">url</font></b></a></p>            <p>&nbsp;</p>            Account Property Page            <p>&nbsp;</p>            <p>The following table lists the UI labels of the <b>Account</b> property page.</p>            <p>UI label Active Directory attribute Comment <br />            * UserLogon Name <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_userprincipalname.asp"><b><font color="#ff0000">userPrincipalName</font></b></a> This field is taken from everything in the <b>userPrincipalName</b> attribute that preceeds the last '@' character. The last '@' character and everything after it is placed in the suffix combo box. <br />            <br />            * User logon name (pre-Windows 2000) <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_samaccountname.asp"><b><font color="#ff0000">sAMAccountname</font></b></a> No comment. <br />            <br />            * Logon Hours <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_logonhours.asp"><b><font color="#ff0000">logonHours</font></b></a> No comment. <br />            * Log On To <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_logonworkstation.asp"><b><font color="#ff0000">logonWorkstation</font></b></a> No comment.<br />            <br />            * Account is locked out <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_lockouttime.asp"><b><font color="#ff0000">lockoutTime</font></b></a> and <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_lockoutduration.asp"><b><font color="#ff0000">lockoutDuration</font></b></a> If the <b>lockoutTime</b> attribute is not zero, the <b>lockoutDuration</b> attribute is added to <b>lockoutTime</b> and compared to the current date and time to determine if the account is locked out. <br />            <br />            * User must change password at next logon <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_pwdlastset.asp"><b><font color="#ff0000">pwdLastSet</font></b></a> No comment. User cannot change password N/A This is the Change Password control in the ACL. <br />            <br />            * Other Account Options <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_useraccountcontrol.asp"><b><font color="#ff0000">userAccountControl</font></b></a> The remaining items in Account Options toggle bits in the <b>userAccountControl</b> attribute bitmask (flags in a DWORD). <br />            * Account Expires <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_accountexpires.asp"><b><font color="#ff0000">accountExpires</font></b></a> The <b>Account Expires</b> control displays the date that the account will expire at the end of. The <b>accountExpires</b> attribute is stored as the date that the account expires on. Because of this, the date displayed in the <b>Account Expires</b> control will be displayed as one day earlier than the date contained in the <b>accountExpires</b> attribute.</p>            <p>&nbsp;</p>            Address Property Page            <p>&nbsp;</p>            <p>The following table lists the UI labels of the <b>Address</b> property page.</p>            <p>UI label Active Directory attribute Comment <br />            * Street <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_streetaddress.asp"><b><font color="#ff0000">streetAddress</font></b></a> No comment. <br />            * P.O.Box <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_postofficebox.asp"><b><font color="#ff0000">postOfficeBox</font></b></a> No comment. <br />            * City <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_l.asp"><b><font style="background-color: #ffffff" color="#ff0000">l</font></b></a> The <b>l</b> attribute name is a lowercase &quot;L&quot; as in Locale. <br />            * State/Province <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_st.asp"><b><font color="#ff0000">st</font></b></a> No comment. <br />            * Zip/Postal Code <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_postalcode.asp"><b><font color="#ff0000">postalCode</font></b></a> No comment. <br />            * Country/Region <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_c.asp"><b><font color="#ff0000">c</font></b></a>, <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_co.asp"><b><font color="#ff0000">co</font></b></a>, and <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_countrycode.asp"><b><font color="#ff0000">countryCode</font></b></a> No comment.</p>            <p>&nbsp;</p>            Member Of Property Page            <p>&nbsp;</p>            <p>The following table lists UI labels of the <b>Member Of</b> property page.</p>            <p>UI label Active Directory attribute Comment <br />            * Member of <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_memberof.asp"><b><font color="#ff0000">memberOf</font></b></a> No comment. <br />            * Set Primary Group <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_primarygroupid.asp"><b><font color="#ff0000">primaryGroupID</font></b></a> <br />            * LDAP: Tied to <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_primarygrouptoken.asp"><b><font color="#ff0000">primaryGroupToken</font></b></a> of the primary group.</p>            <p>&nbsp;</p>            Organization Property Page            <p>&nbsp;</p>            <p>The following table shows the UI labels of the <b>Organization</b> property page.</p>            <p>UI label Active Directory attribute Comment <br />            * Title <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_title.asp"><b><font color="#ff0000">title</font></b></a> No comment. <br />            * Department <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_department.asp"><b><font color="#ff0000">department</font></b></a> No comment. <br />            * Company <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_company.asp"><b><font color="#ff0000">company</font></b></a> No comment. <br />            * Manager:Name <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_manager.asp"><b><font color="#ff0000">manager</font></b></a> No comment. <br />            * Direct Reports <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_directreports.asp"><b><font color="#ff0000">directReports</font></b></a> No comment.</p>            <p>&nbsp;</p>            Profile Property Page            <p>&nbsp;</p>            <p>The following table lists the UI labels of the <b>Profile</b> property page.</p>            <p>UI label Active Directory attribute Comment <br />            * Profile Path <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_profilepath.asp"><b><font color="#ff0000">profilePath</font></b></a> No comment.<br />            &nbsp;* Logon Script <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_scriptpath.asp"><b><font color="#ff0000">scriptPath</font></b></a> No comment. Home Folder: <br />            * Local Path <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_homedirectory.asp"><b><font color="#ff0000">homeDirectory</font></b></a> If <b>Local path</b> is selected, the local path is stored in the <b>homeDirectory</b> attribute. <br />            * Home Folder: Connect <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_homedrive.asp"><b><font color="#ff0000">homeDrive</font></b></a> If <b>Connect</b> is selected, the mapped drive is stored in the <b>homeDrive</b> attribute. Home Folder: To <b>homeDirectory</b> If <b>Connect</b> is selected, the path is stored in the <b>homeDirectory</b> attribute.</p>            <p>&nbsp;</p>            Telephones Property Page            <p>&nbsp;</p>            <p>The following table lists the UI elements of the <b>Telephones</b> property page and their corresponding Active Directory attributes.</p>            <p>UI label Active Directory attribute <br />            * Home <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_homephone.asp"><b><font color="#ff0000">homePhone</font></b></a> <br />            * Home: Other <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_otherhomephone.asp"><b><font color="#ff0000">otherHomePhone</font></b></a> <br />            * Pager <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_pager.asp"><b><font color="#ff0000">pager</font></b></a> Pager: <br />            * Other <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_otherpager.asp"><b><font color="#ff0000">otherPager</font></b></a> <br />            * Mobile <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_mobile.asp"><b><font color="#ff0000">mobile</font></b></a> <br />            * Mobile: Other <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_othermobile.asp"><b><font color="#ff0000">otherMobile</font></b></a> <br />            * Fax <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_facsimiletelephonenumber.asp"><b><font color="#ff0000">facsimileTelephoneNumber</font></b></a> <br />            * Fax: Other <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_otherfacsimiletelephonenumber.asp"><b><font color="#ff0000">otherFacsimileTelephoneNumber</font></b></a> <br />            * IP phone <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_ipphone.asp"><b><font color="#ff0000">ipPhone</font></b></a> <br />            * IP phone: Other <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_otheripphone.asp"><b><font color="#ff0000">otherIpPhone</font></b></a> Notes <a href="http://msdn.microsoft.com/library/en-us/adschema/adschema/a_info.asp"><b><font color="#ff0000">info</font></b></a></p>            <p>&nbsp;</p>            Environment, Sessions, Remote Control, and Terminal Services Profile Property Pages</td>        </tr>    </tbody></table></p>]]></description><category>Active Directory</category><comments>http://www.mk2leo.com/post/40.html#comment</comments><wfw:comment>http://www.mk2leo.com/</wfw:comment><wfw:commentRss>http://www.mk2leo.com/feed.asp?cmt=40</wfw:commentRss><trackback:ping>http://www.mk2leo.com/cmd.asp?act=tb&amp;id=40&amp;key=50f3739c</trackback:ping></item></channel></rss>
