Connecting to a network folder with username/password in Powershell - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T23:48:10Zhttp://stackoverflow.com/feeds/question/303045http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/303045/connecting-to-a-network-folder-with-username-password-in-powershell2Connecting to a network folder with username/password in Powershelleddiegroves2008-11-19T19:27:26Z2008-11-20T15:59:52Z
<p>I often access shared network folders in Powershell to grab files etc. But if the share requires a username/password, Powershell does not prompt me for these, unlike Windows Explorer. If I connect to the folder first in Windows Explorer, Powershell will then allow me to connect. </p>
<p>How can I authenticate myself in Powershell?</p>
http://stackoverflow.com/questions/303045/connecting-to-a-network-folder-with-username-password-in-powershell/303229#3032294Answer by Anon for Connecting to a network folder with username/password in PowershellAnon2008-11-19T20:23:44Z2008-11-19T20:23:44Z<p>This is not a PowerShell-specific answer, but you could authenticate against the share using "NET USE" first:</p>
<pre><code>net use \\server\share /user:<domain\username> <password>
</code></pre>
<p>And then do whatever you need to do in PowerShell...</p>
http://stackoverflow.com/questions/303045/connecting-to-a-network-folder-with-username-password-in-powershell/305791#3057914Answer by Scott Saad for Connecting to a network folder with username/password in PowershellScott Saad2008-11-20T15:59:52Z2008-11-20T15:59:52Z<p>At first glance one really wants to use <a href="http://technet.microsoft.com/en-us/library/bb978543.aspx" rel="nofollow">New-PSDrive</a> supplying it credentials. </p>
<pre><code>> New-PSDrive -name myShare -Psprovider FileSystem -root \\server\share -credential domain\user
</code></pre>
<h3>Fails!</h3>
<pre>New-PSDrive : Cannot retrieve the dynamic parameters for the cmdlet. Dynamic parameters for NewDrive cannot be retrieved for the 'FileSystem' provider. The provider does not support the use of credentials. Please perform the operation again without specifying credentials.</pre>
<p>The documentation states that you can provide a PSCredential object but if you look closer the cmdlet does not support this yet. Maybe in the next version I guess. </p>
<p>Therefore you can either use <strong>net use</strong> or the WScript.Network object, calling the <a href="http://msdn.microsoft.com/en-us/library/8kst88h6(VS.80).aspx" rel="nofollow">MapNetworkDrive</a> function:</p>
<pre><code>$net = new-object -ComObject WScript.Network
$net.MapNetworkDrive("u:", "\\server\share", $false, "domain\user", "password")
</code></pre>