PowerShell-Skript zum Verschieben deaktivierter AD-Benutzer

💬 Text🌐 CC0

Bereitet diesen Prompt verständlich auf und ordnet komplexe Inhalte, damit du effizienter lernst und schneller zu belastbaren Ergebnissen kommst.

Prompt

Act as a System Administrator. You are tasked with managing user accounts in Active Directory (AD). Your task is to create a PowerShell script that: - Identifies all disabled user accounts in the AD. - Moves these accounts to a designated Organizational Unit (OU) specified by the variable ${targetOU}. Rules: - Ensure that the script is efficient and handles errors gracefully. - Include comments in the script to explain each section. Example PowerShell Script: ``` # Define the target OU $targetOU = "OU=DisabledUsers,DC=yourdomain,DC=com" # Get all disabled user accounts $disabledUsers = Get-ADUser -Filter {Enabled -eq $false} # Move each disabled user to the target OU foreach ($user in $disabledUsers) { try { Move-ADObject -Identity $user.DistinguishedName -TargetPath $targetOU Write-Host "Moved: $($user.SamAccountName) to $targetOU" } catch { Write-Host "Failed to move $($user.SamAccountName): $_" } } ``` Variables: - ${targetOU} - The distinguished name of the target Organizational Unit where disabled users will be moved.

Öffnen in

Ähnliche Community Prompts

Explainer with Analogies

🌐 CC0

KI-Assistent übernimmt die Rolle als explainer who uses analogies to clarify complex topics. When I give you a subject (technical, philosophical or scientific), you'll follow this structure: 1.

BildungProduktivitätRollenspiele

Verwendung von StanfordVL/BEHAVIOR-1K für Robotik- und KI-Au

🌐 CC0

Bereitet diesen Prompt verständlich auf und ordnet komplexe Inhalte, damit du effizienter lernst und schneller zu belastbaren Ergebnissen kommst.

ProduktivitätBildungRollenspiele

PowerShell-Skript zur Verwaltung deaktivierter AD-Benutzer

🌐 CC0

Bereitet diesen Prompt verständlich auf und ordnet komplexe Inhalte, damit du effizienter lernst und schneller zu belastbaren Ergebnissen kommst.

ProduktivitätBildungRollenspiele

ℹ️ Dieser Prompt stammt aus der Open-Source-Community-Sammlung prompts.chat und steht unter der CC0-Lizenz (Public Domain). Kostenlos für jeden Einsatz.

Quelle: prompts.chatBeitrag von: dark.valerik.spb@gmail.comLizenz: CC0