<?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>Networknet.nl &#187; test-path</title>
	<atom:link href="http://www.networknet.nl/apps/wp/archives/tag/test-path/feed" rel="self" type="application/rss+xml" />
	<link>http://www.networknet.nl/apps/wp</link>
	<description>Stay Connected</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:46:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PowerShell: How to check list of computers for a specific remote file ?</title>
		<link>http://www.networknet.nl/apps/wp/archives/936</link>
		<comments>http://www.networknet.nl/apps/wp/archives/936#comments</comments>
		<pubDate>Sun, 31 Jan 2010 09:34:03 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[test-path]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/936</guid>
		<description><![CDATA[The following PowerShell script recipe will help you check a remote file based on a list of computers stored in a text file. During the session a PowerShell function will be created which will be piped into the text file with computers. In the following PowerShell example I will check if install.exe exists on the remote systems and echo the computername if the file is there. Create new text file named C:\Scripts\Active_Computers.txt and populate the file with computer names. function check-remotefile {     PROCESS {                 $file = "\\$_\c$\install.exe"                 if (test-path $file)                 {                 echo "$_ file install.exe exists"                 }             } } Get-Content  C:\Scripts\Active_Computers.txt &#124; check-remotefile]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/936/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

