Find-TaskServiceUser.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
Function Find-TaskServiceUser { <# .SYNOPSIS Finding scheduled tasks, system services on computer by user name. .DESCRIPTION Finding scheduled tasks, system services on local or remote computer by given user name. 'Administrator' and local computer are default values. The results can be redirected to the log file (see 'log' parameter). .PARAMETER User User name to find scheduled tasks or system services. Default value is 'Administrator'. .PARAMETER Computer Computer to find tasks/services. Default value is 'localhost' ($env:COMPUTERNAME). .PARAMETER Task A Switch to look for scheduled tasks where user name is matched. .PARAMETER Service A Switch to look for system services where user name is matched. .PARAMETER Minimal A switch to enable minimalistic results. Object containing the computer name, number of tasks and/or number of services only. With -Log information about log file path is displayed but log file is not minimal. The return value is en object. .PARAMETER Export Enable exporting results objects to file (using "Export-Clixml"). Export file path is defined in "Exportpath" parameter. .PARAMETER Exportpath File name path to export results finding scheduled tasks and/or system services. .PARAMETER Log A switch to enable logging of output data to a log file. The log file with the path is defined in "LogFile" parameter. .PARAMETER Logfile Path with file name where logging output. Default value is [$env:TEMP]\find-taskserviceuser.log. Works only with Log switch. .EXAMPLE PS> Find-TaskServiceUser -Computer "WSRV00" -User "BobbyK" -Service -Task -Log Description ----------- Find system services and scheduled tasks on "WSRV00" for user name is matched "BobbyK". Logging is enabled. .EXAMPLE PS> "WSRV01","WSRV02" | Find-TaskServiceUser -Service -Task Description ----------- Find system services and scheduled tasks on computers "WSRV01", "WSRV02" where user name is matched "Administrator". .EXAMPLE PS> $data = Find-TaskServiceUser -Task -Service -Server "WSRV04" -User "SYSTEM" -Minimal PS> $data Description ----------- Find tasks and services on server "WSRV04" for "SYSTEM" user and return a minimalistic result as custom object `$data`. .EXAMPLE PS> "WSRV01","WSRV10" | Find-TaskServiceUser -Service -Task -Export PS> $data = Import-Clixml "C:\Users\test_user\Documents\Find-TaskServiceUser.XML" PS> $data.Tasks | Format-Table -Autosize PS> $data.Services | Format-Table -Autosize Description ----------- Find system services and scheduled tasks on computers "WSRV01", "WSRV10" where user name is matched "Administrator". Results are exported to XML file and then imported to $data variable. Results are displayed. .LINK https://github.com/voytas75/Find-TaskServiceUser .LINK https://www.powershellgallery.com/packages/Find-TaskServiceUser .NOTES ICON CREDITS: Module icon made by [Freepik](https://www.freepik.com/) from [Flaticon](https://www.flaticon.com/) is licensed [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/) DONATION: If you want to support my work https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ZQJXFYKHL7JUA¤cy_code=PLN&source=url #> [CmdletBinding()] Param( [parameter(mandatory=$false, position=0, valuefrompipeline = $true, ValueFromPipelineByPropertyName=$true, HelpMessage='Computer NetBIOS, DNS name or IP.')] [Alias('MachineName','Server')] [string[]]$Computer=$env:COMPUTERNAME, [parameter(Mandatory=$false, HelpMessage='User(s) or group name(s) to find scheduled tasks and/or services. Group is used for the security context of the scheduled task only, not system services.')] [string[]]$User='Administrator', [parameter(Mandatory=$false, HelpMessage='Switch to find system services.')] [switch]$Service, [parameter(Mandatory=$false, HelpMessage='Switch to find scheduled tasks.')] [switch]$Task, [parameter(Mandatory=$false, HelpMessage='Minimalistic results. Object containing the computer name, number of tasks and/or number of services only. with -Log info about log file is displayed but log file is not minimal.')] [switch]$Minimal, [parameter(Mandatory=$false, HelpMessage= 'Enable exporting to file.')] [switch]$Export, [parameter(Mandatory=$false, HelpMessage= 'Enter path to export file.')] [string]$Exportpath = [Environment]::GetFolderPath("MyDocuments")+"\Find-TaskServiceUser.XML", [parameter(Mandatory=$false, HelpMessage='Switch to enable logging.')] [switch]$Log, [parameter(Mandatory=$false, HelpMessage='Log file path. Default is ''[$env:TEMP]\Find-TaskServiceUser.log''.')] [string]$Logfile="$env:TEMP\Find-TaskServiceUser.log" ) Begin { if (!$service -and !$task) { $Service = $Task = $true } # Write-output "You must provide 'service' or/and 'task' parameter`n" # Write-output 'Examples:' # Write-output ' Find-TaskServiceUser -Computer "WSRV00" -User "BobbyK" -Service -Task' # Write-output ' Find-TaskServiceUser -Computer "WSRV01" -User "BobbyK" -Task -Log' # Write-output ' "WSRV00","WSRV03" | Find-TaskServiceUser -Service -Task' # Write-output ' "WSRV04" | Find-TaskServiceUser -Service' # Write-output ' $object = Find-TaskServiceUser -Service -Task -Computer "WSRV04" -User "SYSTEM" -Minimal' if (-not $Minimal) { if ($user -eq "Administrator") { Write-Output "Set default user: Administrator" } if ($computer -eq $env:COMPUTERNAME) { Write-output "Set default computer: $env:COMPUTERNAME (localhost)" } } else { Write-Verbose "Initializing minimalistic results." $minimal_obj = @() $s=0 $t=0 $services_count = $s $tasks_count = $t } if ($Log) { Write-Log "---------$(get-date)---------" } $i=1 #write-progress } # end BEGIN block Process { foreach ($user_item in $User) { $user_item = $user_item.trim() write-progress -id 1 -activity "Searching user" -status "$user_item" -percentComplete ($i++ / $user.Count * 100) $j=1 #write-progress foreach ($item in $Computer) { $item = $item.trim() write-progress -parentId 1 -activity "Searching on server" -status "$item" -percentComplete ($j++ / $Computer.count * 100) #Tasks if ($task) { if (!$Minimal) { Write-output "Finding tasks with user: ""$($user_item.toupper())"" on machine: ""$($item.toupper())""" } if ($Log) { Write-Log "$(get-date): Finding tasks with user: ""$($user_item.toupper())"" on machine: ""$($item.toupper())""" } $tasks = Find-TaskUser -server $item -user $user_item | Sort-Object taskname #$tasks if ($tasks) { # tasks found Write-Verbose "Task result not null" if ($Log) { Write-Log "$(get-date): Scheduled tasks:" } $tasksdata = $tasks | Select-Object Hostname, Taskname, Author, "Run as user", URI if ($Minimal) { $tasks_count = ($tasks | Measure-Object).count } else { Write-output "Found scheduled task(s) where ""$user_item"" matches task author or 'run as user'" $tasksdata | Format-Table -AutoSize } if ($Log) { $tasksdata | ForEach-Object { Write-Log $_ } } } else { # tasks not found if ($Log) { Write-Log "$(get-date): No scheduled tasks or no data from ""$item"" for user ""$user_item""" } if ($Minimal) { $tasks_count = $t } else { Write-output "No scheduled tasks or no data from ""$item"" for user ""$user_item""" } } } #Services if ($service) { if (-not $Minimal) { Write-output "Finding system services with user: ""$($user_item.toupper())"" on machine: ""$($item.toupper())""" } if ($Log) { Write-Log "$(get-date): Finding services with user: ""$($user_item.toupper())"" on machine: ""$($item.toupper())""" } $services = Find-ServiceUser -computer $item -user $user_item | Sort-Object name if ($services) { # services found Write-Verbose "Services result not null" if ($Log) { Write-Log "$(get-date): System services:" } $output1 = $services | select-object SystemName,Name, StartName,State if ($Minimal) { $services_count = ($services | Measure-Object).count } else { Write-output "Found system service(s) where ""$user_item"" matches 'Service Logon Account'" $output1 | Format-Table -AutoSize } if ($Log) { $output1 | ForEach-Object { Write-Log $_ } } } else { # services not found Write-Verbose "Services result is null" if ($Log) { Write-Log "$(get-date): No services found or no data from ""$item"" for user ""$user_item""" } if ($Minimal) { $services_count = $s } else { Write-output "No system services or no data from ""$item"" for user ""$user_item""" } } } if (-not $tasks -and (-not $task -and $service)) { $tasks_count = $null } if (-not $services -and (-not $service -and $task)) { $services_count = $null } if ($Minimal) { $minimal_obj += [PSCustomObject]@{ UserName = $user_item ComputerName = $item ServicesCount = $services_count TasksCount = $tasks_count } $services_count = $s $tasks_count = $t } if ($Export) { Write-Verbose -Message "Building objects with all results" if ($tasks) { $tasks_all += $tasks } if ($services) { $services_all += $services } } } # end foreach $Computer } # end foreach $User } # end PROCESS block End { if ($Log -and -not $Minimal) { Write-output "Log File: $($Logfile)" } elseif($minimal -and $Log) { Write-Information -MessageData "Log File: $($Logfile)" -InformationAction Continue $minimal_obj } elseif ($minimal -and -not $log) { $minimal_obj } if ($export) { Write-Information -MessageData "Export File: $($Exportpath)" -InformationAction Continue Write-Information -MessageData "Export File: You can import faile using 'Import-Clixml `"$($Exportpath)`"'" -InformationAction Continue $task_all_unique = $tasks_all | sort taskname -Unique $services_all_unique = $services_all | sort name -Unique $export_data = @{"Tasks"=$task_all_unique;"Services"=$services_all} #Add-Content -LiteralPath $Exportpath -Value $export_data -PassThru Export-Clixml -LiteralPath $Exportpath -InputObject $export_data } } # end END block } # end Find-TaskServiceUser function |