
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to copy Items to the destination path with the different\\ncredentials 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