Apr 07 2022 02:48 AM - edited Apr 07 2022 02:50 AM
I need to write a power Shell script to pull out all the dll and pdb file from default azure directory and zip them in a folder.
Apr 07 2022 03:04 AM
Apr 11 2022 01:27 PM - edited Apr 11 2022 01:28 PM
In Cloud Shell you can use
get-childitem *.dll, *.pdb -Recurse | Compress-Archive -DestinationPath /home/username/subfolder/collection.zip
Apr 18 2022 10:46 PM
thanks @Harm_Veenstra for your response. It works 👍👍
Apr 18 2022 11:17 PM - edited May 14 2022 03:23 AM
Glad to hear that, please mark my answer as solution to mark it as solved.