Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
Windows /
diagnostics /
system /
Printer /
[ HOME SHELL ]
Name
Size
Permission
Action
en-US
[ DIR ]
drwxrwxrwx
CL_Utility.ps1
19.68
KB
-rw-rw-rw-
DiagPackage.diagpkg
27.5
KB
-rw-rw-rw-
DiagPackage.dll
63
KB
-rw-rw-rw-
MF_PrinterDiagnostic.ps1
4.11
KB
-rw-rw-rw-
RS_CancelAllJobs.ps1
547
B
-rw-rw-rw-
RS_DeletePrintJobs.ps1
4
KB
-rw-rw-rw-
RS_HomeGroup.ps1
2.71
KB
-rw-rw-rw-
RS_NoPrinterInstalled.ps1
1
KB
-rw-rw-rw-
RS_PrinterDriver.ps1
555
B
-rw-rw-rw-
RS_PrinterTurnedOff.ps1
377
B
-rw-rw-rw-
RS_ProcessPrinterjobs.ps1
1.19
KB
-rw-rw-rw-
RS_RestartSpoolerService.ps1
663
B
-rw-rw-rw-
RS_SetSpoolerStartMode.ps1
490
B
-rw-rw-rw-
RS_SpoolerCrashing.ps1
1.96
KB
-rw-rw-rw-
RS_StartSpoolerService.ps1
1.05
KB
-rw-rw-rw-
RS_WrongDefaultPrinter.ps1
1.37
KB
-rw-rw-rw-
TS_CannotConnect.ps1
3.99
KB
-rw-rw-rw-
TS_DefaultPrinter.ps1
1.42
KB
-rw-rw-rw-
TS_HomeGroup.ps1
2.71
KB
-rw-rw-rw-
TS_NoPrinterInstalled.ps1
1.07
KB
-rw-rw-rw-
TS_OutOfPaper.ps1
663
B
-rw-rw-rw-
TS_OutOfToner.ps1
757
B
-rw-rw-rw-
TS_PaperJam.ps1
654
B
-rw-rw-rw-
TS_PrintJobsStuck.ps1
1.99
KB
-rw-rw-rw-
TS_PrinterDriver.ps1
746
B
-rw-rw-rw-
TS_PrinterDriverError.ps1
1.03
KB
-rw-rw-rw-
TS_PrinterTurnedOff.ps1
760
B
-rw-rw-rw-
TS_SetSpoolerMode.ps1
636
B
-rw-rw-rw-
TS_SpoolerCrashing.ps1
1.36
KB
-rw-rw-rw-
TS_SpoolerService.ps1
640
B
-rw-rw-rw-
UpdatePrinterDriver.dll
10.5
KB
-rw-rw-rw-
VF_PrinterTurnedOff.ps1
1.23
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MF_PrinterDiagnostic.ps1
# Copyright 2013, Microsoft Corporation. All rights reserved. # # The Printer diangosis global trouble shooter, we can control trouble shooter flow here. # . .\CL_Utility.ps1 # # Check the status of the spooler service. # .\TS_SetSpoolerMode.ps1 if((RunDiagnosticScript .\TS_SpoolerService.ps1) -eq $true) { return } # # Spooler service is functioning incorrectly # .\TS_SpoolerCrashing.ps1 [bool]$needCheckNoPrinterInstalled = $true # # Get name of non-virtual printer selected # [string]$printerName = "" $printers = Get-WmiObject Win32_Printer if($printers -ne $null) { # # Create hash of all printers # $htAllPrinter = @{} # # Create hash of non-virtual printers # $htPrinter = @{} foreach($printer in $printers) { $htAllPrinter.Add($printer.Name, $printer) if(-not (IsVirtualPrinter $printer.DeviceID)) { $htPrinter.Add($printer.Name, $printer) } } # # Build programmatic list of all printers. # $choices = New-Object System.Collections.ArrayList foreach($item in $htAllPrinter.keys) { $name = $htAllPrinter[$item].Name $description = $htAllPrinter[$item].Description $value = $htAllPrinter[$item].Name $choices += @{"Name" = "$name"; "Description" = "$description"; "Value" = "$value"} } # # Check if a printer to diagnose has been programmatically specified by an application # or metapackage (like DeviceCenter). # try { $printerName = Get-DiagInput -id IT_AutoSelectPrinter -choice $choices -ErrorAction SilentlyContinue $needCheckNoPrinterInstalled = $false } catch { # # If this question isn't answered, ask the user which printer to run from a filtered list # if($htPrinter.Count -eq 1) { $needCheckNoPrinterInstalled = $false foreach($item in $htPrinter.keys) { $printerName = $htPrinter[$item].Name } } elseif($htPrinter.Count -gt 1) { $needCheckNoPrinterInstalled = $false # # Ask the user which printer should be the default printer. # $choices = New-Object System.Collections.ArrayList foreach($item in $htPrinter.keys) { $name = $htPrinter[$item].Name $description = $htPrinter[$item].Description $value = $htPrinter[$item].Name $choices += @{"Name" = "$name"; "Description" = "$description"; "Value" = "$value"} } $printerName = Get-DiagInput -id "IT_SelectPrinter" -choice $choices if($printerName -eq "RESCAN") { $printerName = "" Update-DiagRootCause -id "RC_NoPrinterInstalled" -Detected $true -parameter @{ "DEVICEID" = "ScanOnly"; "PRINTERCOUNT"=$htPrinter.Count} return } } } } # # Check no non-virtual printer # if($needCheckNoPrinterInstalled) { .\TS_NoPrinterInstalled.ps1 } if(-not [string]::IsNullorEmpty($printerName)) { # # Check the default printer # .\TS_DefaultPrinter.ps1 $printerName # # Check the printer driver # .\TS_PrinterDriver.ps1 $printerName # # Check the default printer's connection. # .\TS_CannotConnect.ps1 $printerName # # Check printer power off # .\TS_PrinterTurnedOff.ps1 $printerName # # Check the low toner # .\TS_OutOfToner.ps1 $printerName # # Check the low paper # .\TS_OutOfPaper.ps1 $printerName # # Check the paper jammed # .\TS_PaperJam.ps1 $printerName # # Check the current user's print jobs. # .\TS_PrintJobsStuck.ps1 $printerName # # Check whether the local printer is shared on the Homegroup # .\TS_HomeGroup.ps1 $printerName # # Check whether the printer driver has encountered an error # .\TS_PrinterDriverError.ps1 $printerName }
Close