PoshCode Archive  Artifact [132e77d692]

Artifact 132e77d69280a6e99b51841bc4371d40d640a60210481caa25361336483619f3:

  • File Delete-LocalAccount.ps1 — part of check-in [101127f68c] at 2018-06-10 13:16:21 on branch trunk — This script searches ActiveDirectory for computer accounts, for each computer account it removes the specified user account. (user: Jeff Patton size: 3934)

# encoding: ascii
# api: powershell
# title: Delete-LocalAccount
# description: This script searches ActiveDirectory for computer accounts, for each computer account it removes the specified user account.
# version: 0.1
# type: script
# author: Jeff Patton
# license: CC0
# x-poshcode-id: 2869
# x-archived: 2016-01-09T21:27:09
# x-published: 2012-07-28T14:29:00
#
#
<#
    .SYNOPSIS
        A script that removes a local user account
    .DESCRIPTION
        This script searches ActiveDirectory for computer accounts, for each
        computer account it removes the specified user account.
    .PARAMETER ADSPath
        The ActiveDirectory namespace to search for computers
    .PARAMETER UserName
        The username to remove from each computer
    .EXAMPLE
        .\Delete-LocalAccount.ps1 -ADSPath "LDAP://OU=workstations,DC=company,DC=com" -LocalUser delete `
        | Export-Csv .\sample.csv -NoTypeInformation

        Description
        -----------
        This example shows all parameters and piping the output to export-csv 
    .NOTES
        This script requires the ComputerManagement and ActiveDirectoryManagement libraries
        The script registers it's name as an event-source on the source computer and writes
        events to the application log.
        This script assumes the includes folder is a subfolder of the current directory, if that
        is not the case you may receive a FullyQualifiedErrorId : CommandNotFoundException when
        attempting to dot-source in the libraries.
    .LINK
        http://scripts.patton-tech.com/wiki/PowerShell/Production/DeleteLocalAccount
    .LINK
        http://scripts.patton-tech.com/wiki/PowerShell/ComputerManagemenet
    .LINK
        http://scripts.patton-tech.com/wiki/PowerShell/ActiveDirectoryManagement
#>
    Param
        (
            [Parameter(Mandatory=$true)]
            [string]$ADSPath,
            [Parameter(Mandatory=$true)]
            [string]$LocalUser
        )
Begin
    {
        $ScriptName = $MyInvocation.MyCommand.ToString()
        $LogName = "Application"
        $ScriptPath = $MyInvocation.MyCommand.Path
        $Username = $env:USERDOMAIN + "\" + $env:USERNAME

    	New-EventLog -Source $ScriptName -LogName $LogName -ErrorAction SilentlyContinue
    	
    	$Message = "Script: " + $ScriptPath + "`nScript User: " + $Username + "`nStarted: " + (Get-Date).toString()
    	Write-EventLog -LogName $LogName -Source $ScriptName -EventID "100" -EntryType "Information" -Message $Message 
    	
    	. .\includes\ComputerManagement.ps1
        . .\includes\ActiveDirectoryManagement.ps1
    }
Process
    {    
        $Workstations = Get-ADObjects -ADSPath $ADSPath
        $Jobs = @()
    	foreach ($Workstation in $Workstations)
            {
                [string]$ThisWorkstation = $Workstation.Properties.name
                [string]$RetVal = Remove-LocalUser -ComputerName $Workstation.Properties.name -UserName $LocalUser
                $ThisJob = New-Object PSobject

                Add-Member -InputObject $ThisJob -MemberType NoteProperty -Name "ComputerName" -Value $ThisWorkstation
                Add-Member -InputObject $ThisJob -MemberType NoteProperty -Name "UserName" -Value $LocalUser
                Add-Member -InputObject $ThisJob -MemberType NoteProperty -Name "Status" -Value $RetVal.Trim()
                $Jobs += $ThisJob
                $ThisJob
                }

        $Message = [system.string]::Join("`n",($Jobs))
        Write-EventLog -LogName $LogName -Source $ScriptName -EventId "101" -EntryType "Information" -Message $Message
    }
End
    {    
    	$Message = "Script: " + $ScriptPath + "`nScript User: " + $Username + "`nFinished: " + (Get-Date).toString()
    	Write-EventLog -LogName $LogName -Source $ScriptName -EventID "100" -EntryType "Information" -Message $Message	
    }