Share via


PowerShell script for copying dll's

Question

Monday, September 17, 2018 1:54 AM

Hi,

I need a Powershell script to copy only certain DLL's from one folder to another folder on the Windows Server. Please let me know.

Thanks,

info2m

All replies (3)

Monday, October 8, 2018 5:43 AM ✅Answered

Hi,

Was your issue resolved?

If you resolved it using our solution, please "mark it as answer" to help other community members find the helpful reply quickly.

Best Regards,

Lee

Just do it.


Monday, September 17, 2018 2:08 AM

Please carefully review the following links to set your expectation for posting in  technical forums.

This Forum is for Scripting Questions Rather than script requests

\(ツ)_/


Monday, September 17, 2018 6:49 AM

Hi,

Thanks for your question.

As jrv sir said, you can't post your script requests in this forum.

You can use "Copy-Item" cmdlet to help you solve it.

Copy-Item help file

Copy-Item -Path $path\*.dll -Destination $dest

Best Regards,

Lee

Just do it.