clear
 $j=@()
 $i=Get-PSDrive
 foreach($j in $i)
 {
 $j=$j.Name+(":")
 $j
 if($j -match "cert"){
 Set-Location $j
 Get-ChildItem -Recurse
 }
 }

Advertisement