<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.wiki.jochen-sacher.de/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://www.wiki.jochen-sacher.de/feed.php">
        <title>Jochen&#039;s Wiki wiki:programmierung:powershell</title>
        <description></description>
        <link>https://www.wiki.jochen-sacher.de/</link>
        <image rdf:resource="https://www.wiki.jochen-sacher.de/lib/tpl/jochenwiki/images/favicon.ico" />
       <dc:date>2026-04-16T13:51:32+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:mitglieder_ad_gruppe_auslesen_powershell&amp;rev=1668606350&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:mitglieder_ad_ou_auslesen_powershell&amp;rev=1668606542&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:verbindungsprofile_anzeigen&amp;rev=1668437556&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:verbindungsprofile_auf_private_setzen&amp;rev=1668437364&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.wiki.jochen-sacher.de/lib/tpl/jochenwiki/images/favicon.ico">
        <title>Jochen's Wiki</title>
        <link>https://www.wiki.jochen-sacher.de/</link>
        <url>https://www.wiki.jochen-sacher.de/lib/tpl/jochenwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:mitglieder_ad_gruppe_auslesen_powershell&amp;rev=1668606350&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-11-16T14:45:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Mitglieder einer AD Gruppe per PowerShell auslesen</title>
        <link>https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:mitglieder_ad_gruppe_auslesen_powershell&amp;rev=1668606350&amp;do=diff</link>
        <description>Mitglieder einer AD Gruppe per PowerShell auslesen
Get-ADGroupMember -Identity &quot;&lt;AD-GRUPPENNAME&gt;&quot; | where objectClass -eq &quot;user&quot;
Mit diesem Befehl werden, bedingt durch die „where“-Klausel, nur Benutzer ausgelesen, keine verschachtelten Gruppen.</description>
    </item>
    <item rdf:about="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:mitglieder_ad_ou_auslesen_powershell&amp;rev=1668606542&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-11-16T14:49:02+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Mitglieder einer AD OU PowerShell auslesen</title>
        <link>https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:mitglieder_ad_ou_auslesen_powershell&amp;rev=1668606542&amp;do=diff</link>
        <description>Mitglieder einer AD OU PowerShell auslesen
$OUpath = &quot;OU=&lt;UNTER-OU&gt;,OU=&lt;UNTER-OU&gt;,OU=&lt;OU&gt;,DC=&lt;DOMAIN&gt;,DC=&lt;DOMAIN-ENDUNG&gt;&quot;
$OUusers = Get-ADUser -Filter * -SearchBase $OUpath 
Mit diesem Befehl werden alle Benutzer in der OU ausgelesen.



Werden für die Weiterverarbeitung der Benutzer-Objekte allen Attribute benötigt, dann kann wie folgt vorgegangen werden:</description>
    </item>
    <item rdf:about="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:verbindungsprofile_anzeigen&amp;rev=1668437556&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-11-14T15:52:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Verbindungsprofile anzeigen</title>
        <link>https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:verbindungsprofile_anzeigen&amp;rev=1668437556&amp;do=diff</link>
        <description>Verbindungsprofile anzeigen

Der folgende PowerShell-Befehl zeigt alle Verbindungsprofile an:
Get-NetConnectionProfile
Siehe hierzu auch:

&lt;https://docs.microsoft.com/de-de/powershell/module/netconnection/get-netconnectionprofile?view=windowsserver2022-ps&gt;</description>
    </item>
    <item rdf:about="https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:verbindungsprofile_auf_private_setzen&amp;rev=1668437364&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-11-14T15:49:24+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Verbindungsprofile auf &quot;Private&quot; setzen</title>
        <link>https://www.wiki.jochen-sacher.de/doku.php?id=wiki:programmierung:powershell:verbindungsprofile_auf_private_setzen&amp;rev=1668437364&amp;do=diff</link>
        <description>Verbindungsprofile auf &quot;Private&quot; setzen

Der folgende PowerShell-Befehl setzt alle Verbindungsprofile auf „Private“:
Get-NetConnectionProfile | Set-NetConnectionProfile -NetworkCategory Private
Siehe hierzu auch:

&lt;https://docs.microsoft.com/de-de/powershell/module/netconnection/set-netconnectionprofile?view=windowsserver2022-ps&gt;</description>
    </item>
</rdf:RDF>
