├── .gitignore ├── Compiler.ps1 ├── CompilerR2.ps1 ├── LICENSE ├── QA-Settings-Configurator.ps1 ├── README.md ├── _images ├── README.md ├── wizard-1-300x263.png ├── wizard-2-300x263.png ├── wizard-3-300x263.png └── wizard-4-300x263.png ├── checks ├── _retired │ ├── CompilerRS.ps1 │ ├── Main-EngineRS.ps1 │ ├── x-vmw-98-check-vosot-registry.ps1 │ └── x-vmw-99-check-vosot-services-tasks.ps1 ├── accounts │ ├── c-acc-01-local-users.ps1 │ ├── c-acc-02-local-account-names.ps1 │ ├── c-acc-03-local-admins.ps1 │ ├── c-acc-04-local-groups.ps1 │ ├── c-acc-05-service-logon-accounts.ps1 │ ├── c-acc-06-guest-account.ps1 │ ├── c-acc-07-builtin-group-members-1.ps1 │ ├── c-acc-08-builtin-group-members-2.ps1 │ └── c-acc-09-builtin-group-members-3.ps1 ├── compliance │ ├── c-com-01-mcafee-antivirus-installed.ps1 │ ├── c-com-02-scom-monitoring-installed.ps1 │ ├── c-com-03-sccm-installed.ps1 │ ├── c-com-04-netbackup-agent-installed.ps1 │ ├── c-com-05-last-patch-date.ps1 │ ├── c-com-06-wsus-server.ps1 │ ├── c-com-07-sentinel-agent-installed.ps1 │ ├── c-com-08-bladelogic-agent-installed.ps1 │ ├── c-com-09-trend-antivirus-installed.ps1 │ ├── c-com-10-software-installed.ps1 │ ├── c-com-11-services-installed.ps1 │ └── c-com-12-only-one-server-role.ps1 ├── drives │ ├── c-drv-01-system-drive-size.ps1 │ ├── c-drv-02-min-drive-freespace.ps1 │ ├── c-drv-03-pagefile-size-location.ps1 │ ├── c-drv-04-cd-dvd-drive.ps1 │ ├── c-drv-05-shared-folders.ps1 │ ├── c-drv-06-san-storage.ps1 │ ├── c-drv-07-disk-management-agent.ps1 │ ├── c-drv-08-drive-ntfs-format.ps1 │ └── c-drv-09-partition-type.ps1 ├── hyper-v-host │ ├── c-hvh-01-server-core.ps1 │ ├── c-hvh-02-no-other-server-roles.ps1 │ ├── c-hvh-03-vm-location.ps1 │ ├── c-hvh-04-integration-services.ps1 │ ├── c-hvh-05-jumbo-frames.ps1 │ └── c-hvh-06-generation-type.ps1 ├── network │ ├── c-net-01-ipv6-status.ps1 │ ├── c-net-02-unused-network-interfaces.ps1 │ ├── c-net-03-network-adapter-labels.ps1 │ ├── c-net-04-binding-order.ps1 │ ├── c-net-05-network-speed-duplex.ps1 │ ├── c-net-06-network-agent.ps1 │ ├── c-net-07-network-teaming.ps1 │ ├── c-net-08-management-adapter.ps1 │ ├── c-net-09-static-routes.ps1 │ ├── c-net-10-power-management.ps1 │ ├── c-net-11-dns-settings.ps1 │ ├── c-net-12-fileprint-services.ps1 │ └── c-net-13-netbios-setting.ps1 ├── regional │ ├── c-reg-01-local-time.ps1 │ ├── c-reg-02-timezone.ps1 │ ├── c-reg-03-location.ps1 │ └── c-reg-04-language.ps1 ├── security │ ├── c-sec-01-schannel-p1-ciphers.ps1 │ ├── c-sec-02-schannel-p2-hashes.ps1 │ ├── c-sec-03-schannel-p3-keyexchangealgorithms.ps1 │ ├── c-sec-04-schannel-p4-protocols.ps1 │ ├── c-sec-05-schannel-p5-cipher-order.ps1 │ ├── c-sec-06-reject-enumerate-accounts.ps1 │ ├── c-sec-07-reject-enumerate-shares.ps1 │ ├── c-sec-08-domain-credential-caching.ps1 │ ├── c-sec-09-request-admin-elevated.ps1 │ ├── c-sec-10-anonymous-pipe-share-access.ps1 │ ├── c-sec-11-iis-default-page.ps1 │ ├── c-sec-12-smb-signing-on.ps1 │ ├── c-sec-13-rsa-authentication.ps1 │ ├── c-sec-14-firewall-rules.ps1 │ ├── c-sec-15-firewall-state.ps1 │ ├── c-sec-16-open-ports.ps1 │ ├── c-sec-17-smb1-disabled.ps1 │ └── c-sec-18-speculative-execution.ps1 ├── system │ ├── c-sys-01-pending-reboot.ps1 │ ├── c-sys-02-windows-license.ps1 │ ├── c-sys-03-services-not-started.ps1 │ ├── c-sys-04-services-not-stopped.ps1 │ ├── c-sys-05-system-event-log.ps1 │ ├── c-sys-06-application-event-log.ps1 │ ├── c-sys-07-devices-status.ps1 │ ├── c-sys-08-custom-event-log.ps1 │ ├── c-sys-09-scheduled-tasks.ps1 │ ├── c-sys-10-print-spooler.ps1 │ ├── c-sys-11-autorun-disabled.ps1 │ ├── c-sys-12-snmp-configuration.ps1 │ ├── c-sys-13-domain-member.ps1 │ ├── c-sys-14-power-plan.ps1 │ ├── c-sys-15-hibernation.ps1 │ ├── c-sys-16-remote-desktop.ps1 │ ├── c-sys-17-terminal-services-licenced.ps1 │ ├── c-sys-18-check-current-ou.ps1 │ ├── c-sys-19-hp-smh-version.ps1 │ ├── c-sys-20-dell-oma-version.ps1 │ ├── c-sys-21-gold-image.ps1 │ └── c-sys-22-all-ram-visible.ps1 └── virtual │ ├── c-vmw-01-tools-version.ps1 │ ├── c-vmw-02-time-sync.ps1 │ ├── c-vmw-03-nic-type.ps1 │ ├── c-vmw-04-lsi-sas-controller.ps1 │ ├── c-vmw-05-scsi-drive-count.ps1 │ ├── c-vmw-06-total-vm-size.ps1 │ ├── c-vmw-07-cd-dvd-floppy-mounted.ps1 │ └── c-vmw-08-failover-clustering.ps1 ├── documentation ├── QA Checks - Developers Guide v3.17.pdf └── QA Checks - User Guide v3.17.pdf ├── engine ├── Check-DomainController.ps1 ├── Check-HyperV.ps1 ├── Check-NameSpace.ps1 ├── Check-Port.ps1 ├── Check-Software.ps1 ├── Check-TerminalServer.ps1 ├── Check-VMware.ps1 ├── Main-Engine-r2.ps1 ├── Main-Engine.ps1 └── Process-Start.ps1 ├── i18n ├── IMPORTANT-Please Read.txt ├── en-gb_help.ps1 └── en-gb_text.ini ├── report-example-new.html ├── report-example-original.html └── settings └── default-settings.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/.gitignore -------------------------------------------------------------------------------- /Compiler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/Compiler.ps1 -------------------------------------------------------------------------------- /CompilerR2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/CompilerR2.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/LICENSE -------------------------------------------------------------------------------- /QA-Settings-Configurator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/QA-Settings-Configurator.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/README.md -------------------------------------------------------------------------------- /_images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/_images/README.md -------------------------------------------------------------------------------- /_images/wizard-1-300x263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/_images/wizard-1-300x263.png -------------------------------------------------------------------------------- /_images/wizard-2-300x263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/_images/wizard-2-300x263.png -------------------------------------------------------------------------------- /_images/wizard-3-300x263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/_images/wizard-3-300x263.png -------------------------------------------------------------------------------- /_images/wizard-4-300x263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/_images/wizard-4-300x263.png -------------------------------------------------------------------------------- /checks/_retired/CompilerRS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/_retired/CompilerRS.ps1 -------------------------------------------------------------------------------- /checks/_retired/Main-EngineRS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/_retired/Main-EngineRS.ps1 -------------------------------------------------------------------------------- /checks/_retired/x-vmw-98-check-vosot-registry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/_retired/x-vmw-98-check-vosot-registry.ps1 -------------------------------------------------------------------------------- /checks/_retired/x-vmw-99-check-vosot-services-tasks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/_retired/x-vmw-99-check-vosot-services-tasks.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-01-local-users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-01-local-users.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-02-local-account-names.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-02-local-account-names.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-03-local-admins.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-03-local-admins.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-04-local-groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-04-local-groups.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-05-service-logon-accounts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-05-service-logon-accounts.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-06-guest-account.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-06-guest-account.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-07-builtin-group-members-1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-07-builtin-group-members-1.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-08-builtin-group-members-2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-08-builtin-group-members-2.ps1 -------------------------------------------------------------------------------- /checks/accounts/c-acc-09-builtin-group-members-3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/accounts/c-acc-09-builtin-group-members-3.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-01-mcafee-antivirus-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-01-mcafee-antivirus-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-02-scom-monitoring-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-02-scom-monitoring-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-03-sccm-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-03-sccm-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-04-netbackup-agent-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-04-netbackup-agent-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-05-last-patch-date.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-05-last-patch-date.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-06-wsus-server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-06-wsus-server.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-07-sentinel-agent-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-07-sentinel-agent-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-08-bladelogic-agent-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-08-bladelogic-agent-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-09-trend-antivirus-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-09-trend-antivirus-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-10-software-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-10-software-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-11-services-installed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-11-services-installed.ps1 -------------------------------------------------------------------------------- /checks/compliance/c-com-12-only-one-server-role.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/compliance/c-com-12-only-one-server-role.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-01-system-drive-size.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-01-system-drive-size.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-02-min-drive-freespace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-02-min-drive-freespace.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-03-pagefile-size-location.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-03-pagefile-size-location.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-04-cd-dvd-drive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-04-cd-dvd-drive.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-05-shared-folders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-05-shared-folders.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-06-san-storage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-06-san-storage.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-07-disk-management-agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-07-disk-management-agent.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-08-drive-ntfs-format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-08-drive-ntfs-format.ps1 -------------------------------------------------------------------------------- /checks/drives/c-drv-09-partition-type.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/drives/c-drv-09-partition-type.ps1 -------------------------------------------------------------------------------- /checks/hyper-v-host/c-hvh-01-server-core.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/hyper-v-host/c-hvh-01-server-core.ps1 -------------------------------------------------------------------------------- /checks/hyper-v-host/c-hvh-02-no-other-server-roles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/hyper-v-host/c-hvh-02-no-other-server-roles.ps1 -------------------------------------------------------------------------------- /checks/hyper-v-host/c-hvh-03-vm-location.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/hyper-v-host/c-hvh-03-vm-location.ps1 -------------------------------------------------------------------------------- /checks/hyper-v-host/c-hvh-04-integration-services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/hyper-v-host/c-hvh-04-integration-services.ps1 -------------------------------------------------------------------------------- /checks/hyper-v-host/c-hvh-05-jumbo-frames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/hyper-v-host/c-hvh-05-jumbo-frames.ps1 -------------------------------------------------------------------------------- /checks/hyper-v-host/c-hvh-06-generation-type.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/hyper-v-host/c-hvh-06-generation-type.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-01-ipv6-status.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-01-ipv6-status.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-02-unused-network-interfaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-02-unused-network-interfaces.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-03-network-adapter-labels.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-03-network-adapter-labels.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-04-binding-order.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-04-binding-order.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-05-network-speed-duplex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-05-network-speed-duplex.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-06-network-agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-06-network-agent.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-07-network-teaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-07-network-teaming.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-08-management-adapter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-08-management-adapter.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-09-static-routes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-09-static-routes.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-10-power-management.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-10-power-management.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-11-dns-settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-11-dns-settings.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-12-fileprint-services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-12-fileprint-services.ps1 -------------------------------------------------------------------------------- /checks/network/c-net-13-netbios-setting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/network/c-net-13-netbios-setting.ps1 -------------------------------------------------------------------------------- /checks/regional/c-reg-01-local-time.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/regional/c-reg-01-local-time.ps1 -------------------------------------------------------------------------------- /checks/regional/c-reg-02-timezone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/regional/c-reg-02-timezone.ps1 -------------------------------------------------------------------------------- /checks/regional/c-reg-03-location.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/regional/c-reg-03-location.ps1 -------------------------------------------------------------------------------- /checks/regional/c-reg-04-language.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/regional/c-reg-04-language.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-01-schannel-p1-ciphers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-01-schannel-p1-ciphers.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-02-schannel-p2-hashes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-02-schannel-p2-hashes.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-03-schannel-p3-keyexchangealgorithms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-03-schannel-p3-keyexchangealgorithms.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-04-schannel-p4-protocols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-04-schannel-p4-protocols.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-05-schannel-p5-cipher-order.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-05-schannel-p5-cipher-order.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-06-reject-enumerate-accounts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-06-reject-enumerate-accounts.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-07-reject-enumerate-shares.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-07-reject-enumerate-shares.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-08-domain-credential-caching.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-08-domain-credential-caching.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-09-request-admin-elevated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-09-request-admin-elevated.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-10-anonymous-pipe-share-access.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-10-anonymous-pipe-share-access.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-11-iis-default-page.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-11-iis-default-page.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-12-smb-signing-on.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-12-smb-signing-on.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-13-rsa-authentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-13-rsa-authentication.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-14-firewall-rules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-14-firewall-rules.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-15-firewall-state.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-15-firewall-state.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-16-open-ports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-16-open-ports.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-17-smb1-disabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-17-smb1-disabled.ps1 -------------------------------------------------------------------------------- /checks/security/c-sec-18-speculative-execution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/security/c-sec-18-speculative-execution.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-01-pending-reboot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-01-pending-reboot.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-02-windows-license.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-02-windows-license.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-03-services-not-started.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-03-services-not-started.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-04-services-not-stopped.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-04-services-not-stopped.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-05-system-event-log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-05-system-event-log.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-06-application-event-log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-06-application-event-log.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-07-devices-status.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-07-devices-status.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-08-custom-event-log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-08-custom-event-log.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-09-scheduled-tasks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-09-scheduled-tasks.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-10-print-spooler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-10-print-spooler.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-11-autorun-disabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-11-autorun-disabled.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-12-snmp-configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-12-snmp-configuration.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-13-domain-member.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-13-domain-member.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-14-power-plan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-14-power-plan.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-15-hibernation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-15-hibernation.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-16-remote-desktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-16-remote-desktop.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-17-terminal-services-licenced.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-17-terminal-services-licenced.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-18-check-current-ou.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-18-check-current-ou.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-19-hp-smh-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-19-hp-smh-version.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-20-dell-oma-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-20-dell-oma-version.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-21-gold-image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-21-gold-image.ps1 -------------------------------------------------------------------------------- /checks/system/c-sys-22-all-ram-visible.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/system/c-sys-22-all-ram-visible.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-01-tools-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-01-tools-version.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-02-time-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-02-time-sync.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-03-nic-type.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-03-nic-type.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-04-lsi-sas-controller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-04-lsi-sas-controller.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-05-scsi-drive-count.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-05-scsi-drive-count.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-06-total-vm-size.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-06-total-vm-size.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-07-cd-dvd-floppy-mounted.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-07-cd-dvd-floppy-mounted.ps1 -------------------------------------------------------------------------------- /checks/virtual/c-vmw-08-failover-clustering.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/checks/virtual/c-vmw-08-failover-clustering.ps1 -------------------------------------------------------------------------------- /documentation/QA Checks - Developers Guide v3.17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/documentation/QA Checks - Developers Guide v3.17.pdf -------------------------------------------------------------------------------- /documentation/QA Checks - User Guide v3.17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/documentation/QA Checks - User Guide v3.17.pdf -------------------------------------------------------------------------------- /engine/Check-DomainController.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Check-DomainController.ps1 -------------------------------------------------------------------------------- /engine/Check-HyperV.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Check-HyperV.ps1 -------------------------------------------------------------------------------- /engine/Check-NameSpace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Check-NameSpace.ps1 -------------------------------------------------------------------------------- /engine/Check-Port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Check-Port.ps1 -------------------------------------------------------------------------------- /engine/Check-Software.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Check-Software.ps1 -------------------------------------------------------------------------------- /engine/Check-TerminalServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Check-TerminalServer.ps1 -------------------------------------------------------------------------------- /engine/Check-VMware.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Check-VMware.ps1 -------------------------------------------------------------------------------- /engine/Main-Engine-r2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Main-Engine-r2.ps1 -------------------------------------------------------------------------------- /engine/Main-Engine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Main-Engine.ps1 -------------------------------------------------------------------------------- /engine/Process-Start.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/engine/Process-Start.ps1 -------------------------------------------------------------------------------- /i18n/IMPORTANT-Please Read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/i18n/IMPORTANT-Please Read.txt -------------------------------------------------------------------------------- /i18n/en-gb_help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/i18n/en-gb_help.ps1 -------------------------------------------------------------------------------- /i18n/en-gb_text.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/i18n/en-gb_text.ini -------------------------------------------------------------------------------- /report-example-new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/report-example-new.html -------------------------------------------------------------------------------- /report-example-original.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/report-example-original.html -------------------------------------------------------------------------------- /settings/default-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/My-Random-Thoughts/Server-QA-Checks/HEAD/settings/default-settings.ini --------------------------------------------------------------------------------