I'm using Expand-Archive to extract a zip file and it's writing all the extracted contents out to console, in exactly the same format as gci would (mode, lastWriteTime,length,name columns).
Is there any way to suppress the output? This is PS 5.1. I have tried the below without any success:
1: | out-null
2: >$null
3: $unzip = expand-archive.......