在 Windows 7 中创建符号链接的权限?

在 Windows 7 中创建符号链接的权限?

如何授予特定用户在 Windows 7 中创建符号链接的权限?

我已经搜索过“组策略”和 Google,但没有找到任何东西。

另外,有没有办法搜索组策略编辑器中的所有内容?过滤器似乎只对特定子树有效。我实际上从未使用过滤器找到任何东西。

答案1

  1. 打开本地组策略编辑器: Run> gpedit.msc. 如果不起作用,请尝试secpol.msc(笔记,Windows 家庭版用户可能需要启用组策略编辑器第一的)。

  2. 转到(Windows Pro 用户可能看不到前两项):

    Computer configuration → Windows SettingsSecurity Settings → Local Policies → User Rights Assignment并编辑Create symbolic links

    在此处输入图片描述

  3. 添加您想要允许创建符号链接的用户或组。

  4. 如果你添加了自己的用户帐户,则需要退出并登录重新加入以使更改生效。

笔记:此设置对属于管理员组的用户帐户无效。这些用户将总是必须mklink在提升的环境中运行(以管理员身份)因为 UAC 在创建非提升访问令牌时会删除特权。有一个方便的 Excel 参考表可用于查找组策略设置:Windows 和 Windows Server 的组策略设置参考

答案2

某些 Windows 配置缺失gpedit.msc。在这种情况下,您可以尝试以下替代方法:

  1. 运行此 PowerShell 脚本从这里
    function addSymLinkPermissions($accountToAdd){
        Write-Host "Checking SymLink permissions.."
        $sidstr = $null
        try {
            $ntprincipal = new-object System.Security.Principal.NTAccount "$accountToAdd"
            $sid = $ntprincipal.Translate([System.Security.Principal.SecurityIdentifier])
            $sidstr = $sid.Value.ToString()
        } catch {
            $sidstr = $null
        }
        Write-Host "Account: $($accountToAdd)" -ForegroundColor DarkCyan
        if( [string]::IsNullOrEmpty($sidstr) ) {
            Write-Host "Account not found!" -ForegroundColor Red
            exit -1
        }
        Write-Host "Account SID: $($sidstr)" -ForegroundColor DarkCyan
        $tmp = [System.IO.Path]::GetTempFileName()
        Write-Host "Export current Local Security Policy" -ForegroundColor DarkCyan
        secedit.exe /export /cfg "$($tmp)" 
        $c = Get-Content -Path $tmp 
        $currentSetting = ""
        foreach($s in $c) {
            if( $s -like "SECreateSymbolicLinkPrivilege*") {
                $x = $s.split("=",[System.StringSplitOptions]::RemoveEmptyEntries)
                $currentSetting = $x[1].Trim()
            }
        }
        if( $currentSetting -notlike "*$($sidstr)*" ) {
            Write-Host "Need to add permissions to SymLink" -ForegroundColor Yellow

            Write-Host "Modify Setting ""Create SymLink""" -ForegroundColor DarkCyan

            if( [string]::IsNullOrEmpty($currentSetting) ) {
                $currentSetting = "*$($sidstr)"
            } else {
                $currentSetting = "*$($sidstr),$($currentSetting)"
            }
            Write-Host "$currentSetting"
        $outfile = @"
    [Unicode]
    Unicode=yes
    [Version]
    signature="`$CHICAGO`$"
    Revision=1
    [Privilege Rights]
    SECreateSymbolicLinkPrivilege = $($currentSetting)
    "@
        $tmp2 = [System.IO.Path]::GetTempFileName()
            Write-Host "Import new settings to Local Security Policy" -ForegroundColor DarkCyan
            $outfile | Set-Content -Path $tmp2 -Encoding Unicode -Force
            Push-Location (Split-Path $tmp2)
            try {
                secedit.exe /configure /db "secedit.sdb" /cfg "$($tmp2)" /areas USER_RIGHTS 
            } finally { 
                Pop-Location
            }
        } else {
            Write-Host "NO ACTIONS REQUIRED! Account already in ""Create SymLink""" -ForegroundColor DarkCyan
            Write-Host "Account $accountToAdd already has permissions to SymLink" -ForegroundColor Green
            return $true;
        }
    }
  1. 下载 polsedit它看起来像 gpedit.msc 的免费替代品

然后运行gpupdate /force立即应用更改

相关内容