我用powershell解压时,如何列出运行中的文件

When I use powershell perform decompression, how to list the files in the running

如题, 当我使用PowerShell解压时,命令行window只显示

这样的命令
'powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('X:\XXX\XXX.zip', '.'); }"'

但是我想知道解压的是哪个文件

我不确定是否可以在该命令中添加任何参数? 或者只是我使用了不正确的参数导致日志没有显示?

ExtractToDirectory method doesn't provide any outputs or logs. You may have to use a third party tool like 7-Zip or use the COM-Object Shell.Application 打开 Zip 并自行复制每个项目,您还可以在其中添加所需的输出。