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.
Apr 11, 2022
In Cloud Shell you can use
get-childitem *.dll, *.pdb -Recurse | Compress-Archive -DestinationPath /home/username/subfolder/collection.zip