设置为"显示/隐藏项目"在存储的特定文件夹上?
我希望能够以编程方式更改它,希望在Powershell中。
答案 0 :(得分:2)
所以试试这个:
$file = "c:\temp\t.txt"
# Hidde $file
Set-ItemProperty -Path $file -Name attributes -Value ([io.fileattributes]::Hidden)
# Remove Hidden if set
Set-ItemProperty -Path $file -Name attributes -Value ((Get-ItemProperty $file).attributes -bxor ([io.fileattributes]::Hidden))
答案 1 :(得分:0)
我尝试您是代码,但这部分不起作用:
Set-ItemProperty -Path $file -Name attributes -Value ((Get-ItemProperty $file).attributes -bxor ([io.fileattributes]::Hidden))
我只是将“ hiden”替换为“ normal”而已:
Set-ItemProperty -Path $file -Name attributes -Value ([io.fileattributes]::Normal)
谢谢。