Forum Discussion
Saurabh-gig
Apr 07, 2022Copper Contributor
Powershell query- Azuredevops
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
Sort By
In Cloud Shell you can use
get-childitem *.dll, *.pdb -Recurse | Compress-Archive -DestinationPath /home/username/subfolder/collection.zip- Saurabh-gigCopper ContributorHey friend, if you know the script please help me asap.
- Did this work out for you?
- Saurabh-gigCopper Contributor
thanks Harm_Veenstra for your response. It works 👍👍