<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.it-kb.ru/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.it-kb.ru/feed.php">
        <title>Вики IT-KB - powershell:file-system</title>
        <description>Пошаговые руководства, шпаргалки, полезные ссылки...</description>
        <link>https://wiki.it-kb.ru/</link>
        <image rdf:resource="https://wiki.it-kb.ru/_media/wiki/logo.png" />
       <dc:date>2026-05-01T13:52:41+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.it-kb.ru/powershell/file-system/find-directories-with-specific-security-group-in-acl-using-powershell"/>
                <rdf:li rdf:resource="https://wiki.it-kb.ru/powershell/file-system/list-of-dirs-with-owners"/>
                <rdf:li rdf:resource="https://wiki.it-kb.ru/powershell/file-system/shortcut-target-checking-with-powershell"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.it-kb.ru/_media/wiki/logo.png">
        <title>Вики IT-KB</title>
        <link>https://wiki.it-kb.ru/</link>
        <url>https://wiki.it-kb.ru/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://wiki.it-kb.ru/powershell/file-system/find-directories-with-specific-security-group-in-acl-using-powershell">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-10T10:53:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Поиск каталогов с определённой группой безопасности в ACL</title>
        <link>https://wiki.it-kb.ru/powershell/file-system/find-directories-with-specific-security-group-in-acl-using-powershell</link>
        <description>Поиск каталогов с определённой группой безопасности в ACL

# Путь до каталогов которые обрабатываются скриптом
$RootPath = &quot;\\path\to\dir&quot;
# Искомая группа доступа
$TargetGroup = &quot;group&quot;
# Максимальная глубина рекурсии
$MaxDepth = 3

function Check-AclForGroup {
    param (
        [string]$Path,
       [string]$Group
    )
      
        # Проверка существования пути
    if (-Not (Test-Path -Path $Path)) {
        Write-Output &quot;Путь &#039;$Path&#039; не существует.&quot;
        return
    }

    $acl = Get-A…</description>
    </item>
    <item rdf:about="https://wiki.it-kb.ru/powershell/file-system/list-of-dirs-with-owners">
        <dc:format>text/html</dc:format>
        <dc:date>2019-06-05T08:18:27+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>PowerShell - Получить список каталогов с информацией о владельце</title>
        <link>https://wiki.it-kb.ru/powershell/file-system/list-of-dirs-with-owners</link>
        <description>PowerShell - Получить список каталогов с информацией о владельце

Скриптоблок для быстрого получения списка подкаталогов с информацией о владельце каждого подкаталога. Для доступа к информации о владельце на уровне NTFS должны иметься соответствующие права.</description>
    </item>
    <item rdf:about="https://wiki.it-kb.ru/powershell/file-system/shortcut-target-checking-with-powershell">
        <dc:format>text/html</dc:format>
        <dc:date>2023-04-04T16:25:16+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>PowerShell - Проверка ярлыков *.lnk на предмет поломанных ссылок</title>
        <link>https://wiki.it-kb.ru/powershell/file-system/shortcut-target-checking-with-powershell</link>
        <description>PowerShell - Проверка ярлыков *.lnk на предмет поломанных ссылок

Пример функции для пакетной проверки множества ярлыков *.lnk на предмет поломанных ссылок:</description>
    </item>
</rdf:RDF>
