gpt4 book ai didi

powershell - 设置PDF文件为只读

转载 作者:行者123 更新时间:2023-12-03 00:14:28 25 4
gpt4 key购买 nike

目前,我的只读功能未将PDF文件设置为只读。

function SetFolderItemsReadOnly{
Param([string]$Path)
$files = Get-ChildItem $Path -File -ErrorAction SilentlyContinue
foreach($file in $files) {
Set-ItemProperty -Path $file.FullName -Name IsReadOnly -Value $true

}
}

如何处理pdf文件?

最佳答案

在get-childitem和set-itemproperty中都使用-literalpath

积分:@wOxxOm

关于powershell - 设置PDF文件为只读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39205032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com