Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Selected Reading
How to copy Items to the destination path with the differentncredentials in PowerShell?
To copy the items with the different credentials you need to use the credential parameter in the Copy-Item cmdlet.
For example,
Copy-Item C:\temp\* -Destination \Remoteshare\c$\temp -Credential (Get- Credential)
Or
$creds = (Get-Credential) Copy-Item C:\temp\* -Destination \Remoteshare\c$\temp -Credential $creds
Advertisements
