<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: VB.Net: Remotely Authenticate to Access Network Share</title>
	<atom:link href="http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/</link>
	<description>Audio, Video and Data Consulting</description>
	<lastBuildDate>Wed, 28 Dec 2011 19:50:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Chris Larsen</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/comment-page-1/#comment-267</link>
		<dc:creator>Chris Larsen</dc:creator>
		<pubDate>Wed, 28 Dec 2011 19:50:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=59#comment-267</guid>
		<description>Good point Daniel, this should probably be used more for a server situation where only admins have the ability to logon, not for desktops.</description>
		<content:encoded><![CDATA[<p>Good point Daniel, this should probably be used more for a server situation where only admins have the ability to logon, not for desktops.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/comment-page-1/#comment-266</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 28 Dec 2011 12:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=59#comment-266</guid>
		<description>This is good option to get access to network folders, the only disadvantage of this, is that when You open connection for example to \\172.21.7.218\ShareTest , user on the computer in which You did it has also full acces to that folder (not only program he runs), although he shouldn&#039;t. This is a bit risky.</description>
		<content:encoded><![CDATA[<p>This is good option to get access to network folders, the only disadvantage of this, is that when You open connection for example to \\172.21.7.218\ShareTest , user on the computer in which You did it has also full acces to that folder (not only program he runs), although he shouldn&#039;t. This is a bit risky.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elliot</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/comment-page-1/#comment-120</link>
		<dc:creator>Elliot</dc:creator>
		<pubDate>Wed, 10 Aug 2011 16:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=59#comment-120</guid>
		<description>Fantastic!
Works great where other methods failed.
&#160;
&#160;</description>
		<content:encoded><![CDATA[<p>Fantastic!<br />
Works great where other methods failed.<br />
&nbsp;<br />
&nbsp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Larsen</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/comment-page-1/#comment-56</link>
		<dc:creator>Chris Larsen</dc:creator>
		<pubDate>Tue, 10 Aug 2010 13:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=59#comment-56</guid>
		<description>Hi Leon, That&#039;s strange as it looks like you&#039;re using it correctly. If you run the NetUseWithCredentials, does it connect properly and can you see the connection from a command line using NET USE? Make sure the name under NET USE is exactly the same as what you put in NetUseDel. I&#039;m guessing it may drop the dollar sign for some reason.</description>
		<content:encoded><![CDATA[<p>Hi Leon, That&#8217;s strange as it looks like you&#8217;re using it correctly. If you run the NetUseWithCredentials, does it connect properly and can you see the connection from a command line using NET USE? Make sure the name under NET USE is exactly the same as what you put in NetUseDel. I&#8217;m guessing it may drop the dollar sign for some reason.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/comment-page-1/#comment-55</link>
		<dc:creator>Leon</dc:creator>
		<pubDate>Fri, 06 Aug 2010 12:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=59#comment-55</guid>
		<description>Dear Chris,
	
	Thank you SOOO much for the code and explanation about accessing network shares on non domain servers and passing the username and password to obtain access. &#160;
	
	I&#039;d been looking for several days for something like this.&#160; I had found C#, C and C++ examples, but am completely illiterate with those languages.
	
	It took me some time, but finally I got the part on gaining access to the network share working.&#160; The problem at the moment for me is that I get error 2250, network share does not exist, when trying to use NetUseDel to disconnect the share.
	
	-I know it&#039;s much to ask, but might you have some suggestions?
	
	The code I use calling the function in your class is as follows.:
	NetUseWithCredentials(&quot;\\172.21.7.218\ShareTest$&quot;, &quot;Username&quot;, Nothing, &quot;Password&quot;)
	
	The code using NetUseDel, and giving error 2250, is the following:
	NetUseDel(Nothing, &quot;\\172.21.7.218\ShareTest$&quot;, ForceCond.USE_LOTS_OF_FORCE)
	
	From your comments I understand that this should be correct.
	
	Using net use from a command window does show the share, and using net use from that same command prompt to remove the share works properly.
	
	I hope you might have some suggestions.
	
	Thanks for your kind help and patience.
	
	Best regards,
	
	Leon
	
	droopy928gt@yahoo.com</description>
		<content:encoded><![CDATA[<p>Dear Chris,</p>
<p>	Thank you SOOO much for the code and explanation about accessing network shares on non domain servers and passing the username and password to obtain access. &nbsp;</p>
<p>	I&#039;d been looking for several days for something like this.&nbsp; I had found C#, C and C++ examples, but am completely illiterate with those languages.</p>
<p>	It took me some time, but finally I got the part on gaining access to the network share working.&nbsp; The problem at the moment for me is that I get error 2250, network share does not exist, when trying to use NetUseDel to disconnect the share.</p>
<p>	-I know it&#039;s much to ask, but might you have some suggestions?</p>
<p>	The code I use calling the function in your class is as follows.:<br />
	NetUseWithCredentials(&quot;\\172.21.7.218\ShareTest$&quot;, &quot;Username&quot;, Nothing, &quot;Password&quot;)</p>
<p>	The code using NetUseDel, and giving error 2250, is the following:<br />
	NetUseDel(Nothing, &quot;\\172.21.7.218\ShareTest$&quot;, ForceCond.USE_LOTS_OF_FORCE)</p>
<p>	From your comments I understand that this should be correct.</p>
<p>	Using net use from a command window does show the share, and using net use from that same command prompt to remove the share works properly.</p>
<p>	I hope you might have some suggestions.</p>
<p>	Thanks for your kind help and patience.</p>
<p>	Best regards,</p>
<p>	Leon</p>
<p>	<a href="mailto:droopy928gt@yahoo.com">droopy928gt@yahoo.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

