Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
894 >> Den Namen des aktuellen Benutzers auslesen { adsiPath += domainName + "/" + machineName + ",computer"; } else if (machineName != null) { adsiPath += machineName + ",computer"; } else if (domainName != null) { adsiPath += domainName + ",domain"; } DirectoryEntry computerEntry = new DirectoryEntry(adsiPath, authenticationUser, authenticationPassword); // DirectoryEntry-Objekt für die Gruppe erzeugen adsiPath = "WinNT://" + (domainName != null ? domainName + "/": "") + (machineName != null ? machineName + "/": "") + groupName + ",group"; DirectoryEntry groupEntry = new DirectoryEntry(adsiPath, authenticationUser, authenticationPassword); // Gruppe vom Computer bzw. von der Domäne entfernen computerEntry.Children.Remove(groupEntry); }