text 查找备用数据流Powershell

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 查找备用数据流Powershell相关的知识,希望对你有一定的参考价值。


#Grabs the path you wish to search 
$getPath = Read-Host "What is the path you would like to search (example: c:\temp)"

#recursively searches through a path and grabs the data streams 
$getItem = Get-ChildItem -Path $getPath -Recurse | Get-Item -Stream * 


foreach($item in $getItem) {

    #outputs the information to the console 
    Write-Host "Path: " $item.PSPath -ForegroundColor Green 
    Write-Host "Parent Path: " $item.PSParentPath -ForegroundColor Yellow
    Write-Host "PSChildName: " $item.PSChildName -ForegroundColor Yellow 
    Write-Host "PSProvider: " $item.PSProvider -ForegroundColor Yellow
    Write-Host "PSIsContainer: " $item.PSIsContainer -ForegroundColor Yellow
    Write-Host "Filename: " $item.FileName -ForegroundColor Yellow
    Write-Host "Stream: " $item.Stream -ForegroundColor Red
    Write-Host "Length: " $item.Length -ForegroundColor Yellow
    Write-Host "`n"

}

以上是关于text 查找备用数据流Powershell的主要内容,如果未能解决你的问题,请参考以下文章

Powershell 获得备用许可证

当带有单引号的文件通过脚本传递时,Powershell 脚本失败。备用批处理文件也因 & 和 ! 而失败人物

使用powershell在一个csv列中查找并替换

NTFS 备用数据流

为 Kubernetes 中的 Keycloak 指定重定向和内部查找的备用 URL

powershell Get-MetaData旨在从文件中获取元数据......最初用于查找.mp3的比特率。