Powershell query- Azuredevops

Copper Contributor

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.

5 Replies
Hey friend, if you know the script please help me asap.

In Cloud Shell you can use
get-childitem *.dll, *.pdb -Recurse | Compress-Archive -DestinationPath /home/username/subfolder/collection.zip

Did this work out for you?

thanks @Harm_Veenstra for your response. It works :thumbs_up::thumbs_up:

Glad to hear that, please mark my answer as solution to mark it as solved.