-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrintQueueScript.ps1
More file actions
426 lines (223 loc) · 14.1 KB
/
Copy pathPrintQueueScript.ps1
File metadata and controls
426 lines (223 loc) · 14.1 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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
#Seth Wagner - Computer Services Project Intern
#Print Queue Cleanup Script
#09/03/2019
#Import neccessary modules
Import-Module printmanagement
Import-Module Microsoft.Powershell.Management
#main - Grabs Timestamp of script runtime, calls user input functions and runs the selected Printer Removal Process.
function main{
#Get timestamp for script runtime, this is used to indicate when the operations in this script ran for accounting purposes.
$TimeStamp = Get-Date -Format o | ForEach-Object { $_ -replace ":", "." }
UserInput
#Pings the server to make sure it is up
TestConnect -ServerName $ServerName
#If the server is found, or user overrides, continue running script
if($ContOP -eq $true){
#If Printers with less than ten jobs is selected, It will prompt the user for the filepath of the PaperCut CSV report. It will find the printers that match these requirements, run an incremental backup and remove the printers.
if($WhichPrinters -eq 'Printers with less than ten jobs'){
PaperCutCSV
LtPrinters -CSV $CSV -ServerName $ServerName
IncrementalBackup -ToRemove $ToRemove -TimeStamp $TimeStamp -ServerName $ServerName
DeleteQueues -Printer $Name -ToRemove $ToRemove -ServerName $ServerName
CleanPapercut -ServerName $ServerName -TimeStamp $TimeStamp
Write-Host "Process complete. Printers with less than ten jobs have been removed. The list of printers removed and server backup can be found in C:\PrinterBackups on the target print server." -BackgroundColor Green
exit
}
elseif($WhichPrinters -eq 'Offline Printers'){
OfflinePrinters -ServerName $ServerName
IncrementalBackup -ToRemove $ToRemove -TimeStamp $TimeStamp -ServerName $ServerName
DeleteQueues -Printer $Name -ToRemove $ToRemove -ServerName $ServerName
CleanPapercut -ServerName $ServerName -TimeStamp $TimeStamp
write-host "Process complete. Offline printers have been removed. The list of printers removed and server backup can be found in C:\PrinterBackups on the target print server." -BackgroundColor Green
exit
}
}
}
#Provides a GUI window that prompts user for the FQDN of the print server to be cleaned and gives options for which printers will be removed
function UserInput{
param($ServerName,$WhichPrinters)
#Adds the neccessary assembly for th gui window
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
#Sets up the initial form screen
$form = New-Object System.Windows.Forms.Form
$form.Text = 'Print Server Cleanup'
$form.Size = New-Object System.Drawing.Size(300,225)
$form.StartPosition = 'CenterScreen'
#Adds the Ok Button
$OKButton = New-Object System.Windows.Forms.Button
$OKButton.Location = New-Object System.Drawing.Point(75,150)
$OKButton.Size = New-Object System.Drawing.Size(75,23)
$OKButton.Text = 'OK'
$OKButton.DialogResult = [System.Windows.Forms.DialogResult]::OK
$form.AcceptButton = $OKButton
$form.Controls.Add($OKButton)
#Adds the Cancel Button
$CancelButton = New-Object System.Windows.Forms.Button
$CancelButton.Location = New-Object System.Drawing.Point(150,150)
$CancelButton.Size = New-Object System.Drawing.Size(75,23)
$CancelButton.Text = 'Cancel'
$CancelButton.DialogResult = [System.Windows.Forms.DialogResult]::Cancel
$form.CancelButton = $CancelButton
$form.Controls.Add($CancelButton)
#Label for the text box that asks for the FQDN
$serverlabel = New-Object System.Windows.Forms.Label
$serverlabel.Location = New-Object System.Drawing.Point(10,20)
$serverlabel.Size = New-Object System.Drawing.Size(280,20)
$serverlabel.Text = 'FQDN of the target server:'
$form.Controls.Add($serverlabel)
#Text Box for the user's input
$textBox = New-Object System.Windows.Forms.TextBox
$textBox.Location = New-Object System.Drawing.Point(10,40)
$textBox.Size = New-Object System.Drawing.Size(260,20)
$form.Controls.Add($textBox)
#Label for the option menu
$methodlabel = New-Object System.Windows.Forms.Label
$methodlabel.Location = New-Object System.Drawing.Point(10,75)
$methodlabel.Size = New-Object System.Drawing.Size(280,20)
$methodlabel.Text = 'Printers to be removed:'
$form.Controls.Add($methodlabel)
#Option menu where user selects which criteria of printers should be removed
$listBox = New-Object System.Windows.Forms.ListBox
$listBox.Location = New-Object System.Drawing.Point(10,100)
$listBox.Size = New-Object System.Drawing.Size(260,20)
$listBox.Height = 30
#Option menu selections
[void] $listBox.Items.Add('Printers with less than ten jobs')
[void] $listBox.Items.Add('Offline Printers')
#Options for showing the
$form.Controls.Add($listBox)
$form.Add_Shown({$textBox.Select()})
$form.Topmost = $true
#Collects which button (OK, Cancel) the user chooses.
$result = $form.ShowDialog()
#If user clicks OK, set variables to the provided inputs, else, generate an error
if ($result -eq [System.Windows.Forms.DialogResult]::OK){
if([String]$textbox.Text -ne "" -and [String]$listbox.SelectedItem -ne ""){
$script:ServerName = $textBox.Text
$script:WhichPrinters = $listBox.SelectedItem
}
else{
Write-Error 'Please enter the FQDN and select the type of printers to be removed!'
exit
}
}
#If user selects cancel, terminates script
elseif($result -eq [System.Windows.Forms.DialogResult]::Cancel){
exit
}
return $ServerName, $WhichPrinters
}
#Tests connection to the Provided print server, allows override if ICMP is not allowed.
function TestConnect{
param($ServerName)
$CanReach = Test-Connection -ComputerName $ServerName -Quiet
if($CanReach -eq $true){
write-host "Server Found! Continuing operation." -ForegroundColor Green
$script:ContOP = $true
}
else{
$msgBoxInput = [System.Windows.MessageBox]::Show('Server Unreachable! Check the FQDN you entered. If the server is up and ICMP is disabled, click OK to continue','Warning!','OKCancel','Warning')
switch($msgBoxInput){
'OK'{
$script:ContOP = $True
}
'Cancel'{
write-host "Script exited by user." -ForegroundColor Red -BackgroundColor Black
exit
}
}
}
}
#Opens the file explorer and prompts for the PaperCut CSV needed for the less then ten jobs function
function PaperCutCSV{
param($CSV)
#Opens a file explorer window that only allows for .csv files
$openFileDialog = New-Object windows.forms.openfiledialog
$openFileDialog.initialDirectory = [System.IO.Directory]::GetCurrentDirectory()
$openFileDialog.title = "Select PaperCut CSV File to Import"
$openFileDialog.filter = "CSV Files (*.csv*)|*.csv*"
$openFileDialog.ShowHelp = $True
Write-Host 'This option requires the "Printer usage - Summary" CSV report exported from Papercut on the print server. Please select the CSV file. (see FileOpen Dialog)' -ForegroundColor Green
$result = $openFileDialog.ShowDialog()
$result
#When the user selects a file, checks to ensure it exists and filters to a new .csv this program can read.
if($result -eq "OK"){
$OpenFileDialog.filename
$OpenFileDialog.CheckFileExists
#Powershell uses the first line of a .csv for the headers, Papercut uses the first two lines for descriptive information. This line takes the content of the papercut csv, omits the first two lines and puts the data from a string variable into a new .csv powershell can recognise.
$script:CSV = Get-Content -Path $openFileDialog.FileName |Select-Object -Skip 2 | Out-String | ConvertFrom-Csv
Write-Host "PaperCut CSV File Imported!" -ForegroundColor Green
}
else{ Write-Host "PaperCut CSV File Import Cancelled!" -ForegroundColor Red
}
}
#LtPrinters - filters out which Queues we are ready to delete based on a set of criteria, in this case,
#we want printers that have had less than ten jobs in a month. This is based off the .csv exported from Papercut
function LtPrinters{
param($CSV,$ServerName)
#Remove Printers that have less than ten jobs based on the papercut csv.
$script:ToRemove = foreach($Printer in $CSV){
#If amount of jobs is less than ten, Get-Printer from rrcclafp02
if($Printer.Jobs -lt 10){
Get-Printer -ComputerName $ServerName -Name $Printer."Printer Name"
}
}
return $ToRemove
}
function OfflinePrinters{
param($ServerName)
$PrintStatus = Get-Printer -ComputerName $ServerName | select printerstatus, name, computername
$script:ToRemove = foreach($Printer in $PrintStatus){
#If printer is offline, add it to the $ToRemove List
if($Printer.printerstatus -eq 'offline'){
Get-Printer -ComputerName $ServerName -Name $Printer.name
}
}
return $ToRemove
}
#IncrementalBackup - Creates a .csv listing the printers removed by this script, can run an incremental backup of the server as well. This part has been commented out due to us already running backups on the print server.
function IncrementalBackup{
param($ToRemove,$TimeStamp,$ServerName)
#Checks to see if the filepath C:\PrinterBackups exists to write the backup to. Creates it if it does not exist.
if( ( Invoke-Command -ComputerName $ServerName -ScriptBlock {Test-Path -EA Stop C:\PrintBackups})){
#Export a list of the deleted printers to a .csv file in the PrinterBackups folder. Timestamp will be included on the filename.
$ToRemove | Invoke-Command -ComputerName $ServerName -ScriptBlock {Export-Csv -Path C:\PrinterBackups\RemovedPrinters$using:TimeStamp.csv}
#Run a Backup of the File Server. Timestamp will be included in the filename of the backup file. !This will only work if the account running the script has the neccessary permissions!
Invoke-Command -ComputerName $ServerName -ScriptBlock {C:\Windows\System32\spool\tools\PrintBrm.exe -B -S \\$using:ServerName -F C:\PrinterBackups\printserverbackup$using:TimeStamp.printerExport}
Write-Host "Backup saved to C:\PrinterBackups on the Print Server" -ForegroundColor Green
}
else {
Invoke-Command -ComputerName $ServerName -ScriptBlock {New-Item -ItemType directory -Path C:\PrinterBackups}
$ToRemove | Invoke-Command -ComputerName $ServerName -ScriptBlock {Export-Csv -Path C:\PrinterBackups\RemovedPrinters$using:TimeStamp.csv}
Invoke-Command -ComputerName $ServerName -ScriptBlock {C:\Windows\System32\spool\tools\PrintBrm.exe -B -S \\$using:ServerName -F C:\PrinterBackups\printserverbackup$using:TimeStamp.printerExport}
Write-Host "Backup saved to C:\PrinterBackups on the Print Server" -ForegroundColor Green
}
return
}
#DeleteQueues - Deletes print queues based on the filtered output from main{}.
function DeleteQueues{
param($Printer,$ToRemove,$ServerName)
#For Each Loop that deletes printers from rrcclafp02
foreach($Printer in $ToRemove){
#Remove Printer from rrcclafp02
Remove-Printer -ComputerName $ServerName -Name $Printer.name
}
return
}
#Function that checks with papercut and the print server and removes printers that no longer exist from papercut.
function CleanPapercut{
param($ServerName, $TimeStamp)
$Papercut = Invoke-Command -ComputerName $ServerName -ScriptBlock{ & "C:\Program Files\PaperCut NG\server\bin\win\server-command " list-printers } | Out-String
$PapercutPrinters = $Papercut -replace ".*\\" | ConvertFrom-csv
$PrintServer = Get-Printer -ComputerName $ServerName
#Creates a new list that contains printers from $PapercutPrinters that do not exist in $PrintServer
$NotExist = $PapercutPrinters | ? {$PrintServer.Name -notcontains $_."!!templateprinter!!"}
#Exports a copy of the list of removed Papercut printers to the backup folder
$NotExist | Invoke-Command -ComputerName $ServerName -ScriptBlock {Export-Csv -Path C:\PrinterBackups\RemovedPapercut$using:TimeStamp.csv}
#Foreach loop removes each printer in the list from papercut
foreach($Printer in $NotExist."!!templateprinter!!"){
Invoke-Command -ComputerName $ServerName -ScriptBlock{ & "C:\Program Files\PaperCut NG\server\bin\win\server-command " delete-printer $using:ServerName $using:Printer}
}
}
main