├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PowerShell Scanners ├── Battery Status │ ├── Battery Status.ps1 │ ├── README.md │ └── Scan Profile.xml ├── BitLocker Information │ ├── BitLocker Information.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Cellular Adapter Info │ ├── Cellular Adapter Info.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Certificates │ ├── Certificates.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Chromium-based Browser Extensions │ ├── Chromium-based Browser Extensions.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Cipher Suite Detection │ ├── Cipher Suite Detection.ps1 │ ├── README.md │ └── Scan Profile.xml ├── DNS Servers │ ├── DNS Servers.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Dell BIOS Information │ ├── Dell BIOS Information.ps1 │ ├── README.md │ └── Scan Profile.xml ├── File Hash │ ├── File Hash.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Get Available Windows Updates │ ├── Get Available Windows Updates.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Get CDP Neighbor Data │ ├── Get CDP Neighbor Data.ps1 │ ├── PSDiscoveryProtocol.psm1 │ ├── README.md │ └── Scan Profile.xml ├── Get Chocolatey Packages │ ├── Get-ChocolateyPackageData.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Get Windows Update History │ ├── Get Windows Update History.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Get-ScheduledTasksActions │ ├── Get-ScheduledTasksActions.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Hardware Hash │ ├── Hardware Hash.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Hosts File │ ├── Hosts File.ps1 │ ├── README.md │ └── Scan Profile.xml ├── IIS App Pools │ ├── IIS App Pools.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Important Events │ ├── Important Events.ps1 │ ├── README.md │ └── Scan Profile.xml ├── LLMNR Enabled │ ├── LLMNR Enabled.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Mapped Drives │ ├── Mapped Drives.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Mapped Printers │ ├── Mapped Printers.ps1 │ ├── README.md │ └── Scan Profile.xml ├── Mozilla Firefox Extensions │ ├── Mozilla Firefox Extensions.ps1 │ ├── README.md │ └── Scan Profile.xml ├── New-Scanner.ps1 ├── PowerShell Modules │ ├── PowerShell Modules.ps1 │ ├── README.md │ └── Scan Profile.xml ├── RDP Last Logoff │ ├── RDP Last Logoff.ps1 │ ├── README.md │ └── Scan Profile.xml ├── RSOP (Basic GPO Information) │ ├── RSOP (Basic GPO Information).ps1 │ ├── Readme.md │ └── Scan Profile.xml ├── SMB Connections │ ├── README.md │ ├── SMB Connections.ps1 │ └── Scan Profile.xml ├── SQL Server Databases │ ├── README.md │ ├── SQL Server Databases.ps1 │ └── Scan Profile.xml ├── System Stability │ ├── README.md │ ├── Scan Profile.xml │ └── System Stability.ps1 ├── Unsigned Drivers │ ├── README.md │ ├── Scan Profile.xml │ └── Unsigned Drivers.ps1 ├── User AD Groups │ ├── README.md │ ├── Scan Profile.xml │ └── User AD Groups.ps1 ├── User Last Logged On │ ├── README.md │ ├── Scan Profile.xml │ └── User Last Logged On.ps1 ├── User Profile Size │ ├── README.md │ ├── Scan Profile.xml │ └── User Profile Size.ps1 ├── User Sessions │ ├── README.md │ ├── Scan Profile.xml │ └── User Sessions.ps1 ├── Windows Defender Information │ ├── README.md │ ├── Scan Profile.xml │ └── Windows Defender Information.ps1 ├── Windows Defender Threats │ ├── README.md │ ├── Scan Profile.xml │ └── Windows Defender Threat Detection.ps1 ├── Windows Firewall Rules │ ├── README.md │ ├── Scan Profile.xml │ └── Windows Firewall Rules.ps1 ├── Windows Update Last Installed │ ├── README.md │ ├── Scan Profile.xml │ └── Windows Update Last Installed.ps1 ├── WizTree - Largest Files │ ├── README.md │ ├── Scan Profile.xml │ └── WizTree - Largest Files.ps1 ├── WizTree - User Profiles │ ├── README.md │ ├── Scan Profile.xml │ └── WizTree - User Profiles.ps1 ├── _Shared │ ├── Install and Import Module.ps1 │ └── WizTree Functions.ps1 └── _Template │ ├── README.md │ ├── Scan Profile.xml │ └── Template.ps1 ├── README.md ├── STYLE_GUIDE.md └── _config.yml /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShell Scanners/Battery Status/Battery Status.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Battery Status/Battery Status.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Battery Status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Battery Status/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Battery Status/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Battery Status/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/BitLocker Information/BitLocker Information.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/BitLocker Information/BitLocker Information.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/BitLocker Information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/BitLocker Information/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/BitLocker Information/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/BitLocker Information/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Cellular Adapter Info/Cellular Adapter Info.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Cellular Adapter Info/Cellular Adapter Info.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Cellular Adapter Info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Cellular Adapter Info/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Cellular Adapter Info/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Cellular Adapter Info/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Certificates/Certificates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Certificates/Certificates.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Certificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Certificates/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Certificates/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Certificates/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Chromium-based Browser Extensions/Chromium-based Browser Extensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Chromium-based Browser Extensions/Chromium-based Browser Extensions.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Chromium-based Browser Extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Chromium-based Browser Extensions/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Chromium-based Browser Extensions/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Chromium-based Browser Extensions/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Cipher Suite Detection/Cipher Suite Detection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Cipher Suite Detection/Cipher Suite Detection.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Cipher Suite Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Cipher Suite Detection/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Cipher Suite Detection/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Cipher Suite Detection/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/DNS Servers/DNS Servers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/DNS Servers/DNS Servers.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/DNS Servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/DNS Servers/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/DNS Servers/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/DNS Servers/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Dell BIOS Information/Dell BIOS Information.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Dell BIOS Information/Dell BIOS Information.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Dell BIOS Information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Dell BIOS Information/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Dell BIOS Information/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Dell BIOS Information/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/File Hash/File Hash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/File Hash/File Hash.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/File Hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/File Hash/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/File Hash/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/File Hash/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Get Available Windows Updates/Get Available Windows Updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Available Windows Updates/Get Available Windows Updates.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Get Available Windows Updates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Available Windows Updates/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Get Available Windows Updates/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Available Windows Updates/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Get CDP Neighbor Data/Get CDP Neighbor Data.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get CDP Neighbor Data/Get CDP Neighbor Data.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Get CDP Neighbor Data/PSDiscoveryProtocol.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get CDP Neighbor Data/PSDiscoveryProtocol.psm1 -------------------------------------------------------------------------------- /PowerShell Scanners/Get CDP Neighbor Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get CDP Neighbor Data/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Get CDP Neighbor Data/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get CDP Neighbor Data/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Get Chocolatey Packages/Get-ChocolateyPackageData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Chocolatey Packages/Get-ChocolateyPackageData.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Get Chocolatey Packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Chocolatey Packages/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Get Chocolatey Packages/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Chocolatey Packages/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Get Windows Update History/Get Windows Update History.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Windows Update History/Get Windows Update History.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Get Windows Update History/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Windows Update History/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Get Windows Update History/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get Windows Update History/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Get-ScheduledTasksActions/Get-ScheduledTasksActions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get-ScheduledTasksActions/Get-ScheduledTasksActions.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Get-ScheduledTasksActions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get-ScheduledTasksActions/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Get-ScheduledTasksActions/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Get-ScheduledTasksActions/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Hardware Hash/Hardware Hash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Hardware Hash/Hardware Hash.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Hardware Hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Hardware Hash/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Hardware Hash/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Hardware Hash/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Hosts File/Hosts File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Hosts File/Hosts File.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Hosts File/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Hosts File/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Hosts File/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Hosts File/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/IIS App Pools/IIS App Pools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/IIS App Pools/IIS App Pools.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/IIS App Pools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/IIS App Pools/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/IIS App Pools/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/IIS App Pools/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Important Events/Important Events.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Important Events/Important Events.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Important Events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Important Events/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Important Events/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Important Events/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/LLMNR Enabled/LLMNR Enabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/LLMNR Enabled/LLMNR Enabled.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/LLMNR Enabled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/LLMNR Enabled/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/LLMNR Enabled/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/LLMNR Enabled/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Mapped Drives/Mapped Drives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mapped Drives/Mapped Drives.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Mapped Drives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mapped Drives/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Mapped Drives/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mapped Drives/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Mapped Printers/Mapped Printers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mapped Printers/Mapped Printers.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Mapped Printers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mapped Printers/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Mapped Printers/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mapped Printers/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Mozilla Firefox Extensions/Mozilla Firefox Extensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mozilla Firefox Extensions/Mozilla Firefox Extensions.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Mozilla Firefox Extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mozilla Firefox Extensions/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Mozilla Firefox Extensions/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Mozilla Firefox Extensions/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/New-Scanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/New-Scanner.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/PowerShell Modules/PowerShell Modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/PowerShell Modules/PowerShell Modules.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/PowerShell Modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/PowerShell Modules/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/PowerShell Modules/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/PowerShell Modules/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/RDP Last Logoff/RDP Last Logoff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/RDP Last Logoff/RDP Last Logoff.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/RDP Last Logoff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/RDP Last Logoff/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/RDP Last Logoff/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/RDP Last Logoff/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/RSOP (Basic GPO Information)/RSOP (Basic GPO Information).ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/RSOP (Basic GPO Information)/RSOP (Basic GPO Information).ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/RSOP (Basic GPO Information)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/RSOP (Basic GPO Information)/Readme.md -------------------------------------------------------------------------------- /PowerShell Scanners/RSOP (Basic GPO Information)/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/RSOP (Basic GPO Information)/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/SMB Connections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/SMB Connections/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/SMB Connections/SMB Connections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/SMB Connections/SMB Connections.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/SMB Connections/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/SMB Connections/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/SQL Server Databases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/SQL Server Databases/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/SQL Server Databases/SQL Server Databases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/SQL Server Databases/SQL Server Databases.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/SQL Server Databases/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/SQL Server Databases/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/System Stability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/System Stability/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/System Stability/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/System Stability/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/System Stability/System Stability.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/System Stability/System Stability.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Unsigned Drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Unsigned Drivers/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Unsigned Drivers/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Unsigned Drivers/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Unsigned Drivers/Unsigned Drivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Unsigned Drivers/Unsigned Drivers.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/User AD Groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User AD Groups/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/User AD Groups/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User AD Groups/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/User AD Groups/User AD Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User AD Groups/User AD Groups.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/User Last Logged On/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Last Logged On/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/User Last Logged On/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Last Logged On/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/User Last Logged On/User Last Logged On.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Last Logged On/User Last Logged On.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/User Profile Size/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Profile Size/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/User Profile Size/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Profile Size/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/User Profile Size/User Profile Size.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Profile Size/User Profile Size.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/User Sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Sessions/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/User Sessions/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Sessions/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/User Sessions/User Sessions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/User Sessions/User Sessions.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Defender Information/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Defender Information/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Defender Information/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Defender Information/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Defender Information/Windows Defender Information.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Defender Information/Windows Defender Information.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Defender Threats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Defender Threats/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Defender Threats/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Defender Threats/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Defender Threats/Windows Defender Threat Detection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Defender Threats/Windows Defender Threat Detection.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Firewall Rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Firewall Rules/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Firewall Rules/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Firewall Rules/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Firewall Rules/Windows Firewall Rules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Firewall Rules/Windows Firewall Rules.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Update Last Installed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Update Last Installed/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Update Last Installed/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Update Last Installed/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/Windows Update Last Installed/Windows Update Last Installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/Windows Update Last Installed/Windows Update Last Installed.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/WizTree - Largest Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/WizTree - Largest Files/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/WizTree - Largest Files/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/WizTree - Largest Files/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/WizTree - Largest Files/WizTree - Largest Files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/WizTree - Largest Files/WizTree - Largest Files.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/WizTree - User Profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/WizTree - User Profiles/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/WizTree - User Profiles/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/WizTree - User Profiles/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/WizTree - User Profiles/WizTree - User Profiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/WizTree - User Profiles/WizTree - User Profiles.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/_Shared/Install and Import Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/_Shared/Install and Import Module.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/_Shared/WizTree Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/_Shared/WizTree Functions.ps1 -------------------------------------------------------------------------------- /PowerShell Scanners/_Template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/_Template/README.md -------------------------------------------------------------------------------- /PowerShell Scanners/_Template/Scan Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/PowerShell Scanners/_Template/Scan Profile.xml -------------------------------------------------------------------------------- /PowerShell Scanners/_Template/Template.ps1: -------------------------------------------------------------------------------- 1 | [CmdletBinding()] 2 | param ( 3 | 4 | ) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/README.md -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdqcom/PowerShell-Scanners/HEAD/_config.yml --------------------------------------------------------------------------------