<?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>IT Trenches &#187; Storage</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/it-trenches/tag/storage/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/it-trenches</link>
	<description></description>
	<lastBuildDate>Fri, 19 Nov 2010 14:37:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Using net shell to backup/restore DHCP</title>
		<link>http://itknowledgeexchange.techtarget.com/it-trenches/using-net-shell-to-backuprestore-dhcp/</link>
		<comments>http://itknowledgeexchange.techtarget.com/it-trenches/using-net-shell-to-backuprestore-dhcp/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 14:55:59 +0000</pubDate>
		<dc:creator>Troy Tate</dc:creator>
				<category><![CDATA[bach files]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[command line dhcp]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dhcp management]]></category>
		<category><![CDATA[network shell]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[server management]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/it-trenches/using-net-shell-to-backuprestore-dhcp/</guid>
		<description><![CDATA[Recently a fellow ITKE blogger posted Windows server 2003: DHCP server rant. I had been working on moving some DHCP services from one site to another when I saw his posting. I was using a series of network shell (netsh) commands to perform the necessary tasks to move scopes from one server to another. I [...]]]></description>
				<content:encoded><![CDATA[<p>Recently a fellow ITKE blogger posted <a title="DHCP server rant" rel="bookmark" href="../../it-rant/windows-server-2003-dhcp-server-rant/">Windows server 2003: DHCP server rant</a>. I had been working on moving some DHCP services from one site to another when I saw his posting. I was using a series of network shell (netsh) commands to perform the necessary tasks to move scopes from one server to another. I thought I would share that series of commands with ITKE readers for your use.</p>
<p>We have about 20 sites with DHCP servers. So, this is a significant number of servers and scopes to manage. The Microsoft DHCP management console can be sluggish across a WAN so managing each server through RDP can be a pain also. Fortunately, the <strong>netsh dhcp server</strong> command set gives a good set of tools for managing DHCP services through a command line.</p>
<p>The <strong>netsh dhcp server</strong> help says:</p>
<p><em>Switches the active command context to the specified DHCP server.</em></p>
<p><em>Syntax:<br />
dhcp&gt; server &lt;\\ServerName | ServerIP&gt;</em></p>
<p><em>Parameters:<br />
ServerName     &#8211; The NetBIOS or the DNS name of the DHCP server computer.<br />
ServerIP       &#8211; The IP address of the DHCP server computer.</em></p>
<p><em>Notes:         If a value for neither ServerName nor ServerIP is specified, the local computer is assumed.</em></p>
<p><em>Examples:      server \\DHCP-SRV1<br />
server \\dhcp-srv.microsoft.com<br />
server 10.0.0.1</em></p>
<p>Using this command and the additional options available to manage DHCP, I wrote a script to go out to each DHCP server, make a copy of all scopes on that server and write it to a central location. The script is shown below. A prerequisite to the script is to get a copy of the <a href="http://live.sysinternals.com/psexec.exe" target="_blank">psexec.exe tool f</a>rom Sysinternals (Microsoft). I could use the remote server format of the command but prefer running the command on the remote servers&#8217; command line.</p>
<p>The backup script is shown below. I named mine PS-dhcp-export.cmd</p>
<p>The first part of the script writes a batch file unique to each remote server.</p>
<p style="padding-left: 30px"><strong>:part1</strong></p>
<p style="padding-left: 30px"><strong>if exist get-dhcp.cmd del get-dhcp.cmd<br />
echo net use j: /d &gt; get-dhcp.cmd<br />
echo net use j: \\backupserver\c$ &gt;&gt; get-dhcp.cmd<br />
echo j: &gt;&gt; get-dhcp.cmd<br />
echo cd &#8220;\dhcpbackup&#8221; &gt;&gt; get-dhcp.cmd<br />
echo netsh dhcp server export j:%1.txt all &gt;&gt; get-dhcp.cmd</strong></p>
<p>Part2 actually runs the script on the remote computer and copies the get-dhcp.cmd file to the remote computer&#8217;s C:\ folder.</p>
<p style="padding-left: 30px"><strong>:part2<br />
psexec -c -w c:\ get-dhcp.cmd \\%1</strong></p>
<p>So, to run this against all remote site&#8217;s dhcp servers, I create a text file listing each remote authorized DHCP server. There is one server per line and looks something like this:</p>
<p><strong>us1dc01<br />
th6dc01<br />
us2dc01<br />
mx1dc01<br />
us9dc01<br />
us7dc02<br />
uk3dc01<br />
tw3dc01<br />
us4dc01</strong></p>
<p>This file is then read in and processed using the following backupdhcp.bat file:</p>
<p><strong>for /F &#8220;tokens=*&#8221; %%I in (sites.txt) do call ps-dhcp-export.cmd %%I</strong></p>
<p>Wait a few minutes and the backup is completed across all DHCP servers and a copy of the scopes is in one folder on another server.</p>
<p>If a scope needs restored or installed on a new DHCP server, use a command similar to the following:</p>
<p><strong>netsh dhcp server import backupfile.txt scopesubnet</strong></p>
<p>Where scopesubnet is either &#8220;ALL&#8221; or the subnet range like 10.2.0.0 or similar. More help can be found on the Microsoft Technet website for the <a href="http://technet.microsoft.com/en-us/library/cc787375(WS.10).aspx" target="_blank">netsh commands for DHCP</a>.</p>
<p>Hope this tip has been useful. Thanks for reading &amp; let&#8217;s continue to be good network citizens!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/it-trenches/using-net-shell-to-backuprestore-dhcp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandemic preparation, risk and business continuity</title>
		<link>http://itknowledgeexchange.techtarget.com/it-trenches/pandemic-preparation-risk-and-business-continuity/</link>
		<comments>http://itknowledgeexchange.techtarget.com/it-trenches/pandemic-preparation-risk-and-business-continuity/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 19:22:55 +0000</pubDate>
		<dc:creator>Troy Tate</dc:creator>
				<category><![CDATA[business continuity]]></category>
		<category><![CDATA[business continuity planning]]></category>
		<category><![CDATA[continuity planning]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[pandemic]]></category>
		<category><![CDATA[Pandemic planning]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[recovery]]></category>
		<category><![CDATA[remote access]]></category>
		<category><![CDATA[risk]]></category>
		<category><![CDATA[risk management]]></category>
		<category><![CDATA[risks]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/it-trenches/pandemic-preparation-risk-and-business-continuity/</guid>
		<description><![CDATA[I&#8217;m not the kind to run around thinking the sky is falling or that the swine or bird flu risk is non-existent. I take a lot of these warnings with a grain of salt. However, the pandemic watches of the past few years should obviously have organizations thinking about their risks and business continuity plans. [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m not the kind to run around thinking the sky is falling or that the swine or bird flu risk is non-existent. I take a lot of these warnings with a grain of salt. However, the pandemic watches of the past few years should obviously have organizations thinking about their risks and business continuity plans. In fact, my organization has a few sites in Mexico and along the border with Mexico. So, this situation has the potential to directly affect our employees.</p>
<p>I wanted to bring your attention to a recent posting on the excellent SANS organization website about the pandemic watch of 2009. This posting is titled <a title="SANS - Pandemic Watch April 2009" href="http://www.sans.edu/resources/leadershiplab/pandemic_watch2009.php" target="_blank">Pandemic Watch April 2009</a>. This has very good explanations of the current situation and the potential health risks.</p>
<p>The section that I think is most appropriate to IT folks (actually to everyone) describes a skeleton plan for companies to help deal with the situation. The following is an excerpt from the SANS website.</p>
<blockquote><p><em>Don’t Panic!</em></p>
<p><em>Initial monitoring stage (where we are right now)</em></p>
<p><em> * If you’re sick, stay home<br />
* Family is sick, stay home<br />
* Close contact with someone showing symptoms, stay home<br />
* Wash your hands, cover your cough</em></p>
<p><em>Then, if multiple cases in your area,</em></p>
<p><em> * Think about telling non-essential workers to stay home<br />
* Recommend workers take kids out of daycare</em></p>
<p><em>Pandemic stage</em></p>
<p><em> * Everyone will be staying home, how will you handle it?<br />
* Do you have enough laptops?<br />
* Can your VPN concentrators handle the load</em></p></blockquote>
<p>I would recommend taking some time to read the summary about the health risks of the various flu strains. Let&#8217;s continue to keep our thoughts and best wishes for those who have already been affected by this most recent health issue.</p>
<p>Thanks for reading and let&#8217;s continue to be good network citizens &#8211; stay healthy too and if you are not healthy, then please contact a health care organization as soon as you can. Get well soon!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/it-trenches/pandemic-preparation-risk-and-business-continuity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternatives to e-mail attachments &#8211; SharePoint is risky!</title>
		<link>http://itknowledgeexchange.techtarget.com/it-trenches/alternatives-to-e-mail-attachments/</link>
		<comments>http://itknowledgeexchange.techtarget.com/it-trenches/alternatives-to-e-mail-attachments/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 15:00:20 +0000</pubDate>
		<dc:creator>Troy Tate</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[Data security]]></category>
		<category><![CDATA[DataManagement]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Firewalls]]></category>
		<category><![CDATA[intellectual property]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Policy]]></category>
		<category><![CDATA[policy enforcement]]></category>
		<category><![CDATA[risk]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/it-trenches/alternatives-to-e-mail-attachments/</guid>
		<description><![CDATA[I&#8217;m looking for some help on this topic and have posted a question to the ITKE community. Hopefully someone out there has had some experience with this service for your organization and can provide some valuable insight. One group I participate in is a mailing list from SANS. If you have not attended a SANS [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m looking for some help on this topic and have posted <a href="http://itknowledgeexchange.techtarget.com/itanswers/alternatives-to-email-file-attachments/" target="_blank">a question to the ITKE community</a>. Hopefully someone out there has had some experience with this service for your organization and can provide some valuable insight.</p>
<p>One group I participate in is a mailing list from <a href="http://www.sans.org" target="_blank">SANS</a>. If you have not attended a SANS event or education, then you should try to get to one of their events. They are one, if not, the premier non-vendor related security and systems administration group in the IT industry. I posed the same question to this peer group and have had some very good responses. Some suggestions for solutions have come back and include:</p>
<p><!--[if gte mso 9]&amp;gt;     Normal   0               false   false   false      EN-US   X-NONE   X-NONE                                                     MicrosoftInternetExplorer4                                                   --><!--[if gte mso 9]&amp;gt;                                                                                                                                                                                                                                                                                                                                                                                                                                --> <!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;} @font-face 	{font-family:Verdana; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:536871559 0 0 0 415 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Verdana","sans-serif"; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman";} a:link, span.MsoHyperlink 	{mso-style-priority:99; 	color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{mso-style-noshow:yes; 	mso-style-priority:99; 	color:purple; 	mso-themecolor:followedhyperlink; 	text-decoration:underline; 	text-underline:single;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-size:10.0pt; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --> <!--[if gte mso 10]&amp;gt;   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;}  --><span>Microsoft Office SharePoint (<a href="http://www.microsoft.com/sharepoint/default.mspx">http://www.microsoft.com/sharepoint/default.mspx</a>)</span></p>
<p class="MsoNormal"><span>OpenText – Livelink (<a href="http://www.opentext.com/2/sol-products/sol-pro-llecm10.htm">http://www.opentext.com/2/sol-products/sol-pro-llecm10.htm</a>)</span></p>
<p class="MsoNormal"><span>Webex Connect – (<a href="http://webex.com/enterprise/index.html">http://webex.com/enterprise/index.html</a>) (There are other flavors for small &amp; medium business)</span></p>
<p class="MsoNormal"><span> Accellion &#8211; (http://www.accellion.com)</span></p>
<p class="MsoNormal">&nbsp;</p>
<p class="MsoNormal">These are very interesting solutions and I will certainly be looking at all potential candidates. One thing that bothers me about the SharePoint option is its security capabilities. SharePoint is typically Microsoft Active Directory integrated. This has major security implications and in fact CSO magazine has posted a recent article on this topic. I recommend that you read the article and understand what risks the SharePoint solution may open for your organization.</p>
<p class="MsoPlainText"><a href="http://cxolyris.cxomedia.com/t/2738521/795826/30002/0/" target="_blank">Why Security Pros Hate Microsoft SharePoint</a></p>
<p class="MsoPlainText">Microsoft&#8217;s SharePoint collaboration platform is all the rage in today&#8217;s business world, especially since third parties gained the ability to plug security holes. But managing it can still be a nightmare for IT security shops.</p>
<p class="MsoPlainText">I am still looking for more references and ideas for this solution, so please share what you are doing for your organization and it will be much appreciated by me and other readers.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/it-trenches/alternatives-to-e-mail-attachments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you see this? &#8211; Online tools/tutorials &#8211; RingOfSaturn</title>
		<link>http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-toolstutorials-ringofsaturn/</link>
		<comments>http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-toolstutorials-ringofsaturn/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 19:24:13 +0000</pubDate>
		<dc:creator>Troy Tate</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[awareness]]></category>
		<category><![CDATA[DataCenter]]></category>
		<category><![CDATA[DataManagement]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[diagnostics]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[IT education]]></category>
		<category><![CDATA[LAN]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[Metrics]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[network analysis]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[online identity]]></category>
		<category><![CDATA[packet capture]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[risk]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[WAN]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wireshark]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-toolstutorials-ringofsaturn/</guid>
		<description><![CDATA[Ok, I admit it. I&#8217;m a network tool junkie. I constantly look for neat tools to perform tasks in the easiest manner possible and give me reliable information. This website from RingofSaturn.com is definitely one of the cooler online tool websites. Check out the browser sniffer tool if you are curious about what information your [...]]]></description>
				<content:encoded><![CDATA[<p>Ok, I admit it. I&#8217;m a network tool junkie. I constantly look for neat tools to perform tasks in the easiest manner possible and give me reliable information. This <a href="http://networking.ringofsaturn.com/" target="_blank">website from RingofSaturn.com</a> is definitely one of the cooler online tool websites. Check out the <a href="http://networking.ringofsaturn.com/Tools/browser.php" target="_blank">browser sniffer tool</a> if you are curious about what information your browser gives up while surfing the web. You might be surprised!</p>
<p>Check out the <a href="http://networking.ringofsaturn.com/IP/howtrafficflows.php" target="_blank">TCP/IP tutorial</a>. It&#8217;s a quick easy read that you can share with those you are trying to explain how a network works.</p>
<p>Checkout this website. I guarantee that if networks are in your blood, you will find something of interest here.</p>
<p>Thanks for your time. Let’s be good network citizens together &amp; practice safe networking!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-toolstutorials-ringofsaturn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you see this? &#8211; Online e-book library</title>
		<link>http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-e-book-library/</link>
		<comments>http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-e-book-library/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 14:05:00 +0000</pubDate>
		<dc:creator>Troy Tate</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[awareness]]></category>
		<category><![CDATA[CIO]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[DataCenter]]></category>
		<category><![CDATA[DataManagement]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[IT education]]></category>
		<category><![CDATA[LAN]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Metrics]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[network analysis]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[WAN]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-e-book-library/</guid>
		<description><![CDATA[Check out this digital online library for IT professionals. Bet you can&#8217;t read just one! Thanks for your time. Let’s be good network citizens together &#38; practice safe networking!]]></description>
				<content:encoded><![CDATA[<p>Check out this <a href="http://nexus.realtimepublishers.com/mylibrary.asp?email=jabber%40mailinator%2Ecom&amp;key=22d641ed">digital online library</a> for IT professionals. Bet you can&#8217;t read just one!</p>
<p>Thanks for your time. Let’s be good network citizens together &amp; practice safe networking!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/it-trenches/did-you-see-this-online-e-book-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
