Connecting to a network folder with username/password in Powershell - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:48:10Z http://stackoverflow.com/feeds/question/303045 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/303045/connecting-to-a-network-folder-with-username-password-in-powershell 2 Connecting to a network folder with username/password in Powershell eddiegroves 2008-11-19T19:27:26Z 2008-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#303229 4 Answer by Anon for Connecting to a network folder with username/password in Powershell Anon 2008-11-19T20:23:44Z 2008-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:&lt;domain\username&gt; &lt;password&gt; </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#305791 4 Answer by Scott Saad for Connecting to a network folder with username/password in Powershell Scott Saad 2008-11-20T15:59:52Z 2008-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>&gt; 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>