Answers:
Dir C:\ -Force -Recurse -ErrorAction 'silentlycontinue' |
Where { $_.Attributes -match "ReparsePoint"}
-Force
包括隐藏文件和系统文件-Recurse
获取所有子项-ErrorAction 'silentlycontinue'
禁止访问XYZ路径被拒绝错误Where { $_.Attributes -match "ReparsePoint"}
检查文件夹和文件是否连接模式属性说明†:
还有一个方便的程序,叫做NTFSLinksView。
编辑:还有SageLinks,这也检查有效性。
我知道这个答案来晚了,但是可能与您正在寻找的东西更接近:
dir /AL /S C:\ | find "SYMLINK"
SYMLINK
名称中包含的文件和目录。