0

如果 foder 的名称以“_S”结尾,我的目标是自定义所有文件夹图标所以我编写了一个 PowerShell 函数,但自定义不起作用。

我的灵感来自:
Website to set attribute on desktop.ini
设置自定义文件夹图标的功能

function Set-icon_Folder_S($path) 
{

$ini = '[.ShellClassInfo]
        IconIndex =  0
        IconResource=C:\private.ico,0
        ConfirmFileOp = 0       
        DefaultDropEffect = 1'


    Set-Location $path
    #List all folder end with _S
    $items = Get-ChildItem -Recurse | Where-Object {($_.Attributes -match "Directory") -and ($_.Name.EndsWith("_S"))} | Select-Object -ExpandProperty FullName

    #For each folder _S ...
    foreach ($item in $items)
    {
        Set-Location $item

        #Init. Delete desktop.ini if exist
        try {
            Remove-Item desktop.ini -Force -erroraction stop
        }
        catch {         
        }

        #Write desktop.ini
        Write-Host "Go to $($item)"
        $ini | Out-File desktop.ini -Force
        Set-ItemProperty desktop.ini -Name Attributes -Value “ReadOnly,System,Hidden”

    }
}

我没有发现错误。

4

1 回答 1

1

desktop.ini以下调整后的脚本对我有用:在tail 中添加一个空行本身就可以解决问题(调用attrib.exe我已经尝试过,所以它可能是多余的):

function Set-icon_Folder_S($path) 
{
$ini = '[.ShellClassInfo]
        IconIndex =  0
        IconResource=D:\Remote\icons\folderBlue.ico,0
        ConfirmFileOp = 0       
        DefaultDropEffect = 1
        '                          ### empty line: important

    Push-Location "$path"          ### Push-Location instead of Set-Location
    #List all folder end with _S
    $items = Get-ChildItem -Recurse | 
        Where-Object {
          ($_.Attributes -match "Directory") -and ($_.Name.EndsWith("es"))} | 
        Select-Object -ExpandProperty FullName                   ### ↑↑  change!!!

    #For each folder _S ...
    foreach ($item in $items)
    {
        Push-Location "$item"      ### Push-Location instead of Set-Location

        #Init. Delete desktop.ini if exist
        try {
            Remove-Item desktop.ini -Force -erroraction stop
        }
        catch {                    ### Write-Host "error removing $($item)"
        }

        #Write desktop.ini
        Write-Host "Go to $($item)"
        $ini | Out-File desktop.ini -Force
        Set-ItemProperty desktop.ini -Name Attributes -Value “ReadOnly,System,Hidden”
        Pop-Location               ### Pop-Location for corresponding Push-Location
        attrib.exe +R +S "$item"   ### Follow DESKTOP.INI CUSTOMIZATIONS DO NOT …
    }
    Pop-Location                   ### Pop-Location for corresponding Push-Location
}

Set-icon_Folder_S "D:\PShell"      ### call function declared above

使用### 注释(除外 )在上面的代码中描述了更改IconResource

### another IconResource used to match my testing environment
### empty line: important
### Push-Location instead of Set-Location
### used `"es"` suffix instead of `"_S"` one to match my testing environment
### Pop-Location for corresponding Push-Location
attrib.exe +R +S "$item"           ### Follow DESKTOP.INI CUSTOMIZATIONS DO NOT TAKE EFFECT
Set-icon_Folder_S "D:\PShell"      ### call function declared above
于 2017-02-02T16:58:40.013 回答