-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFind-TaskServiceUser.ps1
More file actions
330 lines (313 loc) · 16.7 KB
/
Find-TaskServiceUser.ps1
File metadata and controls
330 lines (313 loc) · 16.7 KB
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
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 Strict
Find tasks, services by exact username.
.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 objectsr 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 ExportJSON
Enable exporting results as JSON object.
.PARAMETER ExportJSONpath
File name path for JSON export.
.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.
.PARAMETER OpenProjectSite
The switch opens the project web page on GitHub and ends the script operation.
.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 computer "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
My post on reddit to request for comments: https://www.reddit.com/r/PowerShell/comments/fzzf1u/i_would_like_to_show_off_my_first_module_to_find/
Weekend Scripter: Welcome to the PowerShell Information Stream: https://devblogs.microsoft.com/scripting/weekend-scripter-welcome-to-the-powershell-information-stream/
#>
[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 = 'Turns on the search after the exact username.')]
[switch]$Strict,
[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.')]
[Alias('Count','CountOnly')]
[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 = 'Enable exporting to JSON file.')]
[switch]$ExportJSON,
[parameter(Mandatory = $false, HelpMessage = 'Enter path to export JSON file.')]
[string]$ExportJSONpath = [Environment]::GetFolderPath("MyDocuments") + "\Find-TaskServiceUser.json",
[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",
[parameter(Mandatory = $false, HelpMessage = 'Opens the project page on GitHub.')]
[Switch]$OpenProjectSite
)
Begin {
$computer_local = $false
if ($computer -eq $env:COMPUTERNAME) {
$computer_local = $true
}
if ($OpenProjectSite) {
Start-Process 'https://github.com/voytas75/Find-TaskServiceUser'
return
}
if (!$service -and !$task) {
$Service = $Task = $true
}
if (-not $Minimal) {
if ($user -eq "Administrator") {
Write-Output "Set default user: ""ADMINISTRATOR"""
}
if ($computer_local) {
Write-Output "Set default computer: ""$($env:COMPUTERNAME.toupper())"" (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 "User search" -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 computer" -status "$item" -percentComplete ($j++ / $Computer.count * 100)
#Tasks
if ($task) {
if (!$Minimal) {
if ($computer_local) {
Write-Output "Find scheduled tasks with the author or principal as ""$($user_item.toupper())"" on the computer ""$($item.toupper())"" (localhost)."
} else {
Write-Output "Find scheduled tasks with the author or principal as ""$($user_item.toupper())"" on the computer ""$($item.toupper())""."
}
}
if ($Log) {
if ($computer_local) {
Write-Log "$(Get-Date): Find scheduled tasks with the author or principal as ""$($user_item.toupper())"" on the computer ""$($item.toupper())"" (localhost)."
} else {
Write-Log "$(Get-Date): Find scheduled tasks with the author or principal as ""$($user_item.toupper())"" on the computer ""$($item.toupper())""."
}
}
if ($Strict) {
$tasks = Find-TaskUser -server $item -user $user_item -Strict | Sort-Object taskname
} else {
$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) {
#1.6.0. Write-Log "$(Get-Date): No scheduled tasks or no data from ""$item"" for user ""$user_item"""
Write-Log "$(Get-Date): No scheduled tasks found (or no data)."
}
if ($Minimal) {
$tasks_count = $t
}
else {
#1.6.0. Write-Output "No scheduled tasks or no data from ""$item"" for user ""$user_item"""
Write-Output "No scheduled tasks found (or no data)."
}
}
}
#Service
if ($service) {
if (-not $Minimal) {
if ($computer_local) {
Write-Output "Find system services with the logon account as ""$($user_item.toupper())"" on the computer ""$($item.toupper())"" (localhost)."
} else {
Write-Output "Find system services with the logon account as ""$($user_item.toupper())"" on the computer ""$($item.toupper())""."
}
}
if ($Log) {
if ($computer_local) {
Write-Log "$(Get-Date): Find system services with the logon account as ""$($user_item.toupper())"" on the computer ""$($item.toupper())"" (localhost)."
} else {
Write-Log "$(Get-Date): Find system services with the logon account as ""$($user_item.toupper())"" on the computer ""$($item.toupper())""."
}
}
# https://www.reddit.com/r/PowerShell/comments/fzzf1u/i_would_like_to_show_off_my_first_module_to_find/fn731ab?utm_source=share&utm_medium=web2x
if ($Strict){
Write-Verbose -Message "Find-ServiceUser with -Strict"
$services = Find-ServiceUser -computer $item -user $user_item -strict
} else {
$services = Find-ServiceUser -computer $item -user $user_item
}
$out_variable = (Get-Variable services).Value
Write-Debug -message "Data from 'Find-ServiceUser': $out_variable" -InformationAction Continue
if ($services) {
# services found
$services = $services | Sort-Object name
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) {
#1.6.0. Write-Log "$(Get-Date): No services found or no data from ""$item"" for user ""$user_item"""
Write-Log "$(Get-Date): No system services found (or no data)."
}
if ($Minimal) {
$services_count = $s
}
else {
#1.6.0. Write-Output "No system services or no data from ""$item"" for user ""$user_item"""
Write-Output "No system services found (or no data)."
}
}
}
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 -or $ExportJSON) {
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 XML File: $($Exportpath)" -InformationAction Continue
Write-Information -MessageData "Export XML File: You can import file using 'Import-Clixml `"$($Exportpath)`"'" -InformationAction Continue
$task_all_unique = $tasks_all | Sort-Object taskname -Unique
#$services_all_unique = $services_all | Sort-Object 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
}
if ($ExportJSON) {
Write-Information -MessageData "Export JSON File: $($Exportjsonpath)" -InformationAction Continue
Write-Information -MessageData "Export JSON File: You can import file using '`$json_data = Get-Content -Raw -Path `"$($Exportjsonpath)`" | ConvertFrom-Json'" -InformationAction Continue
$task_all_unique = $tasks_all | Sort-Object taskname -Unique
#$services_all_unique = $services_all | Sort-Object name -Unique
$export_data = @{"Tasks" = $task_all_unique; "Services" = $services_all }
$export_data | ConvertTo-Json | out-file $Exportjsonpath
}
} # end END block
} # end Find-TaskServiceUser function