vote up 3 vote down star
2

I'm using the CTP of powershell v2. I have a script written that needs to go out to various network shares in our dmz and copy some files. However, the issue I have is that evidently powershell's cmdlets such as copy-item, test-path, etc do not support alternate credentials...

Anyone have a suggestion on how best to accomplish my task..?

flag

27% accept rate
Here is a similar question. stackoverflow.com/questions/10313/… – notandy Mar 4 at 19:19

5 Answers

vote up 0 vote down

This question addresses a very related issue that may help using network shares in powershell.

link|flag
vote up 2 vote down

I would try to map a drive to the remote system (using 'net use' or WshNetwork.MapNetworkDrive, both methods support credentials) and then use copy-item.

link|flag
This is the best answer because the filesystem provider (and thus copy-item) does not support credentials. – halr9000 Jun 10 at 13:35
vote up 0 vote down

Here is a post where someone got it to work. It looks like it requires a registry change.

link|flag
That guy is double hopping within the same domain. I need to be able to specify an account as I am accessing files on a different domain altogether... – Jason Mar 4 at 19:46
vote up 0 vote down

You should be able to pass whatever credentials you want to the -Credential parameter. So something like:

$cred = Get-Credential

[Enter the credentials]

Copy-Item -Path $from -Destination $to -Credential $cred

link|flag
I keep receiving a error message stating -credential is not supported – Jason Mar 4 at 19:26
I suspect it is an issue with unc pathing then. – EBGreen Mar 4 at 19:31
well, this is the error... Test-Path : Cannot retrieve the dynamic parameters for the cmdlet. The provider does not support the use of credentials. Please perform the operation again without specifying credentials. – Jason Mar 4 at 19:36
and the UNC looks like this... \\ip\Logs – Jason Mar 4 at 19:36
vote up 0 vote down

that evidently powershell's cmdlets such as copy-item, test-path, etc do not support alternate credentials...

It looks like they do here, copy-item certainly includes a -Credential parameter.

PS C:\> gcm -syn copy-item
Copy-Item [-Path] <String[]> [[-Destination] <String>] [-Container] [-Force] [-Filter <String>] [-I
nclude <String[]>] [-Exclude <String[]>] [-Recurse] [-PassThru] [-Credential <PSCredential>] [...]
link|flag
I keep receiving a error message stating -credential is not supported – Jason Mar 4 at 19:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.