• Stars
    star
    527
  • Rank 84,091 (Top 2 %)
  • Language
    PowerShell
  • License
    MIT License
  • Created over 5 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Testimo is a PowerShell module for running health checks for Active Directory against a bunch of different tests

Testimo - PowerShell Module

Testimo is a PowerShell Module to help with basic/more advanced testing of Active Directory and maybe in future other types of servers. Testimo is an alpha product and as such things do change. It's goal is to be fully automated solution where one can run the command and get results without executing 50 little functions.

If you're new to Testimo you should read this blog post!

Note: At present this module is not supported in PowerShell Core/PowerShell 7. This is because the Testimo module depends on other Microsoft moodules that are also not supported in PowerShell 7, including GroupPolicy and ServerManager. There is an issue tracking this compatibiity which you can follow: #110.

Things to know:

  • Configuration hash is not written in stone and can change rapidly as Testimo gets tested
  • Ideas are VERY welcome
  • There's a big mess in files/function names - I'm still testing things out creating some random names, will be cleaned up later on
  • There are lots of details missing for tests, and some things may not work as you want - please report issues or if you know how, fix them
  • I don't know EVERYTHING - I'm very open to help with making Testimo more robust, detailed and easy to use
  • This module works great in Windows PowerShell!

Known Issues / By Design

  • Requirements for Sources work differently then for Tests
    • For Sources when Requirements are not met Testimo skips it totally from output
    • For Tests when Requirements are not met Testimo marks it as skipped

Installation

Install-Module -Name Testimo -AllowClobber -Force

Force and AllowClobber aren't really nessecary but they do skip errors in case some appear.

Updates

Update-Module -Name Testimo

Alternatively, rerunnng Install-Module with force will trigger reinstallation or update

Install-Module -Name Testimo -AllowClobber -Force

That's it. Whenever there's new version you simply run the command and you can enjoy it. Remember, that you may need to close, reopen PowerShell session if you have already used module before updating it.

The important thing is if something works for you on production, keep using it till you test the new version on a test computer. I do changes that may not be big, but big enough that auto-update will break your code. For example, small rename to a parameter and your code stops working! Be responsible!

Usage

With output to screen and HTML

Invoke-Testimo

Generate all tests but display content only in PowerShell

Invoke-Testimo -HideHTML

Image Image Image

Please keep in mind that there is currently known issue that running all tests while works correctly generated HTML is very very slow when switching Tabs. It's advised to run seperate tests which will generate smaller file which will be more responsive

Invoke-Testimo -Source 'ForestOptionalFeatures','DomainWellKnownFolders','ForestSubnets' -Online -ReportPath $PSScriptRoot\Reports\TestimoSummary.html -AlwaysShowSteps

There are also other parameters available With option to be able to process output - for example to email

Invoke-Testimo -ReturnResults

Using Invoke-Testimo with non-default configuration

Following configuration allows you to:

  • Edit default TestImo configuration with some other values
  • Exclude one of the domains
  • Return Results for future processing
  • Limit sources to only 4 types (you could also limit that via Hashtable but this way is quicker for Adhoc enabling/disabling)
Import-Module Testimo

$OutputOrderedDictionary = Get-TestimoConfiguration
$OutputOrderedDictionary.ForestOptionalFeatures.Tests.RecycleBinEnabled.Enable = $false
$OutputOrderedDictionary.ForestOptionalFeatures.Tests.LapsAvailable.Enable = $true
$OutputOrderedDictionary.ForestOptionalFeatures.Tests.LapsAvailable.Parameters.ExpectedValue = $false

$Sources = @(
    'ForestFSMORoles'
    'ForestOptionalFeatures'
    'ForestBackup'
    'ForestOrphanedAdmins'
    'DomainPasswordComplexity'
    'DomainKerberosAccountAge'
    'DomainDNSScavengingForPrimaryDNSServer'
    'DCWindowsUpdates'
)

$TestResults = Invoke-Testimo -PassThru -ExcludeDomains 'ad.evotec.pl' -Sources $Sources -Configuration $OutputOrderedDictionary
$TestResults | Format-Table -AutoSize *

Be sure to checkout Examples section for more How-To.

Changing default configuration

Testimo comes with preset rules that may not apply to your environment. You may want to change some things like disabling some tests or changing some values (to an extent). There are 3 ways to do it. Depending on how you want to save/edit/pass configuration to TestIMO - I leave it up to you.

Straight to FILE/JSON

Get-TestimoConfiguration -FilePath $PSScriptRoot\Configuration\TestimoConfiguration.json

Straight to JSON

Get-TestimoConfiguration -AsJson

Output to Hashtable so you can edit it freely and keep in ps1

$OutputOrderedDictionary = Get-TestimoConfiguration
$OutputOrderedDictionary.ForestOptionalFeatures.Tests.RecycleBinEnabled.Enable = $false
$OutputOrderedDictionary.ForestOptionalFeatures.Tests.LapsAvailable.Enable = $true
$OutputOrderedDictionary.ForestOptionalFeatures.Tests.LapsAvailable.Parameters.ExpectedValue = $false

Comments

Keep in mind not all tests apply to each environment. I'm adding those to be flexible and be able to test things as needed. Each of those tests will need additional description and recommendation, most likely with links and steps to fix. Some of the tests are very basic and will need feedback, work on making it a robust test. Nothing is written in stone for now. Things can change day by day.

Things to consider

  • Criticality of Tests - some tests are critical, some are less critical, some are informative only
  • Recommended, Default, Sane - not all tests are equal or make sense in all conditions

Tests are based on:

Type Name Area Description
Forest Backup Backup Verify last backup time should be [less than X days]
Forest Replication Connectivity Verify each DC in replication site can [reach other replication members]
Forest Replication using Repadmin Connectivity Verify each DC in replication site can [reach other replication members]
Forest Optional Features Features Verify Optional Feature Recycle Bin should be [Enabled]
Forest Optional Features Features Verify Optional Feature Privileged Access Management Feature should be [Enabled]
Forest Optional Features Features Verify Optional Feature Laps should be enabled [Configured]
Forest Sites Verification Sites Verify each site has at least [one subnet configured]
Forest Sites Verification Sites Verify each site has at least [one domain controller configured]
Forest Site Links Site Links Verify each site link is automatic
Forest Site Links Site Links Verify each site link uses notifications
Forest Site Links Site Links Verify each site link does not use notifications
Forest Roles Connectivity Verify each FSMO holder is [reachable]
Forest Orphaned/Empty Admins Security Verify there are no Orphaned Admins (users/groups/computers)
Forest Tombstone Lifetime Features Verify Tombstone lifetime is greater or equal 180 days
Domain Roles Connectivity Verify each FSMO holder is [reachable]
Domain Password Complexity Requirements Password Verify Password Complexity Policy should be [Enabled]
Domain Password Complexity Requirements Password Verify Password Length should be [greater than X]
Domain Password Complexity Requirements Password Verify Password Threshold should be [greater than X]
Domain Password Complexity Requirements Password Verify Password Lockout Duration should be [greater than X minutes]
Domain Password Complexity Requirements Password Verify Password Lockout Observation Window should be [greater than X minutes]
Domain Password Complexity Requirements Password Verify Password Minimum Age should be [greater than X]
Domain Password Complexity Requirements Password Verify Password History Count should be [greater than X]
Domain Password Complexity Requirements Password Verify Password Reversible Encryption should be [Disabled]
Domain Trust Availability Connectivity Verify each Trust status is OK
Domain Trust Unconstrained TGTDelegation Security Verify each Trust TGTDelegation is set to True
Domain Kerberos Account Age Security Verify Kerberos Last Password Change Should be less than 180 days
Domain Groups: Account Operators Security Verify Group is empty
Domain Groups: Schema Admins Security Verify Group is empty
Domain User: Administrator Security Verify Last Password Change should be less than 360 days or account disabled
Domain DNS Forwarders DNS Verify DNS Forwarders are identical on all DNS nodes
Domain DNS Scavenging - Primary DNS Server DNS Verify DNS Scavenging is set to [X days]
Domain DNS Scavenging - Primary DNS Server DNS Verify DNS Scavenging State is set to True
Domain DNS Scavenging - Primary DNS Server DNS Verify DNS Scavenging Time is less than [X days]
Domain DNS Zone Aging DNS Verify DNS Zone Aging is set
Domain DNS Zones Forest 0ADEL Configuration/DNS Verify owner is not 0ADEL
Domain DNS Zones Domain 0ADEL Configuration/DNS Verify owner is not 0ADEL
Domain Well known folder - UsersContainer WellKnownFolders Verify folder is not at it's defaults.
Domain Well known folder - ComputersContainer WellKnownFolders Verify folder is not at it's defaults.
Domain Well known folder - DomainControllersContainer WellKnownFolders Verify folder is at it's defaults.
Domain Well known folder - DeletedObjectsContainer WellKnownFolders Verify folder is at it's defaults.
Domain Well known folder - SystemsContainer WellKnownFolders Verify folder is at it's defaults.
Domain Well known folder - LostAndFoundContainer WellKnownFolders Verify folder is at it's defaults.
Domain Well known folder - QuotasContainer WellKnownFolders Verify folder is at it's defaults.
Domain Well known folder - ForeignSecurityPrincipalsContainer WellKnownFolders Verify folder is at it's defaults.
Domain Orphaned Foreign Security Principals Cleanup Verify there are no orphaned FSP objects.
Domain Orphaned/Empty Organizational Units Cleanup Verify there are no orphaned Organizational Units
Domain Group Policy Missing Permissions Configuration Verify Authenticated Users/Domain Computers are on each and every Group Policy
Domain DFSR Sysvol Configuration Verify SYSVOL is DFSR
Domain NTDS Parameters Configuration Verify Domain Controller is writable (DSA Not Writable)
Domain Controller Information Configuration Verify Is enabled
Domain Controller Information Configuration Verify Is global catalog
Domain Controller Service Status Services Verify all {Services} are [running]
Domain Controller Service Status Services Verify all {Services} are set to [automatic startup]
Domain Controller Service Status (Print Spooler) Security Verify Print Spooler Service is set to disabled
Domain Controller Service Status (Print Spooler) Security Verify Print Spooler Service is stopped
Domain Controller Ping Connectivity Connectivity Verify DC is [reachable]
Domain Controller Ports Connectivity Verify Following ports 53, 88, 135, 139, 389, 445, 464, 636, 3268, 3269, 9389 are open
Domain Controller RDP Ports Connectivity Verify Following ports 3389 (RDP) is open
Domain Controller RDP Security Connectivity Verify NLA is enabled
Domain Controller LDAP Connectivity Connectivity Verify all {LDAP Ports} are open]
Domain Controller LDAP Connectivity Connectivity Verify all {LDAP SSL Ports} are open]
Domain Controller Windows Firewall Connectivity Verify windows firewall is enabled for all network cards
Domain Controller Windows Remote Management Connectivity Verify Windows Remote Management identification requests are managed
Domain Controller Resolves internal DNS queries DNS Verify DNS on DC [resolves Internal DNS]
Domain Controller Resolves external DNS queries DNS Verify DNS on DC [resolves External DNS]
Domain Controller Name servers for primary domain zone DNS Verify DNS Name servers for primary zone are identical
Domain Controller Responds to PowerShell Queries PowerShell Verify DC responds to PowerShell queries
Domain Controller TimeSettings Time Verify PDC should [sync time to external source]
Domain Controller TimeSettings Time Verify Non-PDC should [sync time to PDC emulator]
Domain Controller TimeSettings Time Verify Virtualized DCs should [sync to hypervisor during boot time only]
Domain Controller Time Synchronization Internal Time Verify Time Synchronization Difference to PDC [less than X seconds]
Domain Controller Time Synchronization External Time Verify Time Synchronization Difference to pool.ntp.org [less than X seconds]
Domain Controller Disk Free Computer Verify OS partition Free space is [at least X %]
Domain Controller Disk Free Computer Verify NTDS partition Free space is [at least X %]
Domain Controller Operating System Computer Verify Windows Operating system is Windows 2012 or higher
Domain Controller Windows Updates Computer Verify Last patch was installed less than 60 days ago
Domain Controller SMB Protocols Security Verify SMB v1 protocol is disabled
Domain Controller SMB Protocols Security Verify SMB v2 protocol is enabled
Domain Controller SMB Shares Security Verify default SMB shares NETLOGON/SYSVOL are visible
Domain Controller DFSR AutoRecovery Security Verify DFSR AutoRecovery is enabled
Domain Controller Windows Roles and Features Security Verify Windows Features for AD/DNS/File Services are enabled

Dependencies

  • PowerShell 5.1 - I know, bummer right?
  • RSAT if run externally from Windows 10 machine

When you use the Install-Module option what happens in the backgrouns is that Windows will use PowershellGallery (hosted by Microsoft) to download Testimo and any dependencies this module needs. As it stands all dependencies except one (DSInternals) are my other PowerShell Modules. Why I am using it this way? Because I don't want to write multiple times the same code over and over.

  • Testimo - this module
    • PSWinDocumentation.AD - PowerShell Module that's main purpose is deliver formmated/compressive Active Directory data for documentation purposes. It's read only.
      • DSInternals - Directory Services Internals PowerShell Module and Framework by Michael Grafnetter - it's main purpose is to verify Active Directory Passwords
    • PSWinDocumentation.DNS - PowerShell Module that's main purpose is deliver formmated/compressive DNS data for documentation purposes (it's a bit unfinished product but it works as far Testimo is concerned). It's read only.
    • ADEssentials - PowerShell Module that's supposed to hold a bunch of useful Get/Set tools for Active Directory.
    • PSSharedGoods - PowerShell Module with lots of different, helpfull functions that I have gathered over the years
      • PSWriteColor - PowerShell Module responsible for Console Colors
      • Connectimo - PowerShell Module responsible for Connecting to O365 - while it's not in use in this project PSSharedGoods depends on it, so it's here. No function is used from it.
    • PSWriteHTML - PowerShell Module that creates nice looking reports. Responsible for visual HTML reporting.
    • Emailimo - PowerShell Module that creates nice looking emails. Responsible for emails in Testimo.

In Testimo I'm using internal functions from some of the modules without any real documentation.

Portability

There are times where you may want to use Testimo in Portable way. Following function when executed will download all modules to given path and load them for you. Following blog post shows the way. It was written specifically for Testimo.

Initialize-ModulePortable -Name 'Testimo' -Path "$PSScriptRoot\TestimoPortable" -Download

After that,, you can use Invoke-Testimo as you normally would. You can also skip Download parameter if you already downloaded all the modules before. This function is also available as part of PSSharedGoods module.

Removal

In case you decide that Testimo is not for you, you can easily clean it up. Unfortunetly since Testimo uses all those dependencies as mentioned above you will have to remove all those modules one by one. Additionally if you have been using Testimo and you update it using Update-Module command and other modules got updated as well, it's possible there will be more then 1 version of said modules. Keep in mind that if you already use some of my modules some of the stuff may be already there and needed for different modules. Be careful when removing PowerShellModules.

Option 1

  • Finding where modules are stored (Get-Module -ListAvailable Testimo).ModuleBase
  • Manually deleting all folders Testimo, and other dependant modules

Option 2

  • Run Uninstall-Module
$Modules = @('Testimo', 'PSWinDocumentation.AD','PSWinDocumentation.DNS','ADEssentials', 'PSSharedGoods','PSWriteColor', 'Connectimo', 'DSInternals','Emailimo','PSWriteHTML' )
foreach ($Module in $Modules) {
    Uninstall-Module $Module -Force -AllVersions
}

Due to multiple versions per each module you may need to rerun this couple of times to remove all those mdoules in case there are some problems.

More Repositories

1

GPOZaurr

Group Policy Eater is a PowerShell module that aims to gather information about Group Policies but also allows fixing issues that you may find in them.
PowerShell
847
star
2

PSWriteHTML

PSWriteHTML is PowerShell Module to generate beautiful HTML reports, pages, emails without any knowledge of HTML, CSS or JavaScript. To get started basics PowerShell knowledge is required.
PowerShell
816
star
3

PSWinReporting

This PowerShell Module has multiple functionalities, but one of the signature features of this module is the ability to parse Security logs on Domain Controllers providing easy to use access to AD Events.
PowerShell
704
star
4

ADEssentials

PowerShell Active Directory helper functions to manage healthy Active Directory
PowerShell
425
star
5

PSTeams

PSTeams is a PowerShell Module working on Windows / Linux and Mac. It allows sending notifications to Microsoft Teams via WebHook Notifications. It's pretty flexible and provides a bunch of options. Initially, it only supported one sort of Team Cards but since version 2.X.X it supports Adaptive Cards, Hero Cards, List Cards, and Thumbnail Cards. All those new cards have their own cmdlets and the old version of creating Teams Cards stays as-is for compatibility reasons.
PowerShell
408
star
6

OfficeIMO

Fast and easy to use cross-platform .NET library that creates or modifies Microsoft Word (DocX) and later also Excel (XLSX) files without installing any software. Library is based on Open XML SDK
C#
279
star
7

PSWinDocumentation

PowerShell Module that creates Word/Excel/SQL documentation from Active Directory (AD), AWS, Office 365 and others. It's a work in progress!
PowerShell
243
star
8

PSWriteWord

PSWriteWord is powershell module to create Microsoft Word documents without Microsoft Word installed...
PowerShell
229
star
9

PSSharedGoods

PSSharedGoods is little PowerShell Module that primary purpose is to be useful for multiple tasks, unrelated to each other. I've created this module as “a glue” between my other modules.
PowerShell
212
star
10

PSWritePDF

PowerShell Module to create, edit, split, merge PDF files on Windows / Linux and MacOS
PowerShell
187
star
11

PSWriteColor

Write-Color is a wrapper around Write-Host allowing you to create nice looking scripts, with colorized output.
PowerShell
163
star
12

Mailozaurr

Mailozaurr is a PowerShell module that aims to provide SMTP, POP3, IMAP and probably some other ways to interact with Email. Underneath it uses MimeKit and MailKit libraries written by Jeffrey Stedfast.
PowerShell
146
star
13

O365Essentials

A module that helps to manage some tasks on Office 365/Azure via undocumented API
PowerShell
124
star
14

PSWinDocumentation.AD

PowerShell module delivering a lot of Active Directory Forest/Domain information
PowerShell
121
star
15

PSEventViewer

PSEventViewer (Get-Events) is really useful PowerShell wrapper around Get-WinEvent. One of the features you may be interested in is a simple way of getting “hidden” events data
C#
105
star
16

Dashimo

Dashimo is very simple, intuitive PowerShell generated HTML file. That's right. A single, static HTML file that you can send to email or host on a website.
HTML
105
star
17

PSWriteOffice

Experimental PowerShell Module to create and edit Microsoft Word, Microsoft Excel, and Microsoft PowerPoint documents without having Microsoft Office installed.
PowerShell
104
star
18

PowerBGInfo

PowerBGInfo is a PowerShell module that is used to generate background information for Windows machines. It's a replacement for BGInfo that doesn't require installation and is much more flexible.
PowerShell
103
star
19

PasswordSolution

This module allows the creation of password expiry emails for users, managers, administrators, and security according to defined templates. It's able to work with different rules allowing to fully customize who gets the email and when.
PowerShell
101
star
20

Statusimo

PowerShell Generated Status Page
PowerShell
95
star
21

PSParseHTML

PSParseHTML is PowerShell module that's main purpose is to be a helper module for PSWriteHTML. However it's functionality can be utilized in other projects, not related to PSWriteHTML, therefore it's available as a separate module.
PowerShell
71
star
22

PSAutomator

This PowerShell Module is new approach to onboarding, offboarding and business as usual processes running in companies infrastructure.
PowerShell
67
star
23

ImagePlayground

ImagePlayground is a PowerShell module that provides a set of functions for image processing. Among other things it can create QRCodes, BarCodes, Charts, and do image processing that can help with daily tasks.
C#
66
star
24

Emailimo

Small project that simplifies (according to me) sending colorful emails in PowerShell
PowerShell
64
star
25

PSWriteExcel

PSWriteExcel is very basic (at the moment) PowerShell module to create Microsoft Excel workbooks without Microsoft Excel installed.
PowerShell
61
star
26

CleanupMonster

This module provides an easy way to cleanup Active Directory from dead/old objects based on various criteria. It can also disable, move or delete objects. It can utilize Azure AD, Intune and Jamf to get additional information about objects before deleting them.
PowerShell
60
star
27

PSPGP

PSPGP is a PowerShell module that provides PGP functionality in PowerShell. It allows encrypting and decrypting files/folders and strings using PGP.
PowerShell
55
star
28

Transferetto

Small PowerShell module with FTPS/SFTP functionality
PowerShell
55
star
29

PSBlackListChecker

Basic functionality of this module is ability to quickly verify if given IP address is on any of over 80 defined DNSBL lists. Below code will return results only if IP is on any of the lists. Advanced functionality of this module is ability to send reports to your email when things get bad on one of those 80 defined DNSBL listrs.
PowerShell
55
star
30

PSDiscord

Simple PowerShell module allowing to send messages to Discord Channel over webhooks
PowerShell
47
star
31

PowerShellManager

Little PowerShell module to extract PowerShell scripts that no longer exists on disk but were run and are still in Event Logs.
PowerShell
40
star
32

PSPasswordExpiryNotifications

Following PowerShell Module provides different approach to scheduling password notifications for expiring Active Directory based accounts. While most of the scripts require knowledge on HTML... this one is just one config file and a bit of tingling around with texts. Whether this is good or bad it's up to you to decide. I do plan to add an option to use external HTML template if there will be requests for that.
PowerShell
39
star
33

PSLansweeper

PowerShell Module to interact with Lansweeper Database
TSQL
31
star
34

VirusTotalAnalyzer

PowerShell module that intearacts with the VirusTotal service using a VirusTotal API (free)
PowerShell
30
star
35

PSPublishModule

This module is a module builder helper that helps build PowerShell modules "Evotec way". It allows us to make sure our modules are built the same way every time making the process really easy to build and publish new versions.
PowerShell
28
star
36

PSWinDocumentation.O365HealthService

PSWinDocumentation.O365HealthService is a Powershell module that has a single goal of getting Office 365 Health Status
PowerShell
23
star
37

IISParser

IISParser is a PowerShell module to read IIS logs. It's very fast and easy to use. This module is based on IISLogParser library that does all the heavy lifting.
PowerShell
22
star
38

O365Synchronizer

O365Synchronizer is a PowerShell module that allows you to synchronize users/contacts to user mailboxes contact list. It can also be used to synchronize users between tenants as contacts or guests.
PowerShell
19
star
39

ConsoleMonster

ConsoleMonster is a PowerShell module to build cool GUI applications using Spectre Console and Terminal GUI.
PowerShell
18
star
40

DesktopManager

DesktopManager is a C# library and PowerShell module that allows to get and set wallpapers to given monitor.
PowerShell
15
star
41

UnifiStockTracker

UnifiStockTracker is a PowerShell module to get current stock on Europe, Brazil or USA Ubiquiti stores. Since I was constantly checking stock on Ubiquiti store waiting for specific products I decided to automate it.
PowerShell
14
star
42

PSWebToolbox

Simple PowerShell Module to get RSS feeds
PowerShell
13
star
43

SecurityPolicy

Provides a way to configure user rights assignments in local security policies using PowerShell without using secedit.exe.
PowerShell
13
star
44

Documentimo

This PowerShell module allows you to create Microsoft Word documents without Word being installed on the machine
PowerShell
13
star
45

Connectimo

PowerShell
11
star
46

PSOutlookProfile

Tool to manage (to some degree) Outlook Profile in PowerShell
PowerShell
10
star
47

DnsClientX

DnsClientX is an async C# library for DNS over UDP, TCP, HTTPS (DoH), and TLS (DoT). It also has a PowerShell module that can be used to query DNS records. It provides a simple way to query DNS records using multiple DNS providers. It supports multiple DNS record types and parallel queries.
C#
10
star
48

PSPulsewayManager

Following is an easy to use Powershell module to control some of Pulseway Manager functionality. While Pulseway Manager offers GUI for enterprise deployments configuring some things from GUI is time consuming and not always easy.
PowerShell
9
star
49

Excelimo

PowerShell
8
star
50

PSWinDocumentation.O365

PowerShell
8
star
51

PowerInfoblox

PowerInfoblox is a PowerShell module to interact with Infoblox service
PowerShell
7
star
52

Graphimo

Small PowerShell module that helps with Microsoft GraphApi calls. It's a legacy module that I still use across some of my code bases. Shouldn't be used for new deployments
PowerShell
6
star
53

PSMyPassword

This little PowerShell module provides a simple way to change password of any user account if you know it. This is very useful for situations when you can't login to RDP
PowerShell
6
star
54

PSFreshService

PowerShell Module to control FreshService via their api (https://freshservice.com/)
PowerShell
6
star
55

PSWinDocumentation.DNS

PowerShell
5
star
56

PSWinDocumentation.AzureHealthService

PowerShell module that helps providing Azure Health as PowerShell data.
PowerShell
5
star
57

AuditPolicy

AuditPolicy module aims to replace auditpol.exe to get or set Auditing Policies in Windows in more native PowerShell way
PowerShell
5
star
58

PowerFederatedDirectory

PowerFederatedDirectory is a PowerShell module to interact with service https://www.federated.directory/. This module uses API exposed by Federated Directory and allows to Add, Get, Set and Remove users from Federated Directory.
PowerShell
5
star
59

LittleInfrastructureManager

PowerShell
5
star
60

DelegationModel

DelegationModel PowerShell module provides a simplified way to manage delegation in Active Directory. It's based on ADEssentials module and builts on top of it.
PowerShell
5
star
61

LocalSecurityEditor

.NET library for managing local security policy (User Rights Assignment).
C#
4
star
62

PSWinDocumentation.AWS

PSWinDocumentation.AWS is a PowerShell module that has a single goal of getting AWS Information
PowerShell
4
star
63

PSUnifi

PowerShell
4
star
64

DomainDetective

Domain Detective is a C# library, Tool and PowerShell module in one project. It is designed to help you find interesting information about a domain name.
C#
4
star
65

MarkdownPrince

PowerShell module that helps converting HTML files into Markdown
PowerShell
4
star
66

evotecit.github.io

HTML
3
star
67

PSWinDocumentation.DHCP

PowerShell
3
star
68

homebridge-siegenia

Small homebridge plugin supporting Siegenia Windows
TypeScript
3
star
69

PSFilePermissions

PowerShell
3
star
70

O365EmailAddressPolicy

O365EmailAddressPolicy PowerShell module replicates Exchange On-Premise functionality when it comes to Email Address Policy allowing cloud-only environments. Office 365 doesn't provide an option to autogenerate email addresses for users. This module enables the creation of email addresses for users based on their first name and last name.
PowerShell
3
star
71

TheDashboard

TheDashboard is a PowerShell module that generates nice HTML dashboard that's main goal is to integrate multiple reports created by other PowerShell modules. It's main goal is to provide a single place to see all the information you need. It's not meant to be a replacement for other modules.
PowerShell
3
star
72

PSWordPress

PSWordPress is PowerShell Module that allows interacting with WordPress using PowerShell via Rest API. It allows to list, create, edit or remove posts, pages, etc.
PowerShell
2
star
73

PSManageService

Proof of concept for reading services (Get-Service -ComputerName -Name ) with runspaces (parallel processing)
PowerShell
2
star
74

PSWindowsUpdates

PowerShell
2
star
75

CDN

This is a support project for PSWriteHTML to be able to provide CDN functionality for its own code, or code modified for PSWriteHTML needs.
JavaScript
2
star
76

PSWinDocumentation.Azure

PowerShell
2
star
77

PSDevSummary

PowerShell
2
star
78

PSWriteHTML.Maps

PSWriteHTML.Maps is an example plugin/extension to PSWriteHTML that adds ability to display MAPS in PSWriteHTML reports. This is proof of concept and good example for adding a single functionality to PSWriteHTML.
PowerShell
2
star
79

DbaClientX

DbaClientX is a small PowerShell module that allows running queries against Sql Server
PowerShell
2
star
80

PSWinDocumentation.ADConnect

1
star
81

PSWinDocumentation.Exchange

PowerShell
1
star
82

PowerQualys

PowerQualys is a PowerShell module to interact with Qualys API in easy and efficient way
PowerShell
1
star
83

PowerShellRunFromCSharp

This is demo project for testing things out as I need and when I need. Nothing to see here :-)
C#
1
star
84

PowerShellBinaryDemo

This is demo project for testing things out as I need and when I need. Nothing to see here :-)
C#
1
star
85

HtmlForgeX

HtmlForgeX is a .NET library that simplifies the creation of HTML documents, pages and reports. It provides a fluent API to create HTML / CSS / JavaScript without knowing any of it. It is designed to be simple and easy to use, and to provide a way to create HTML content in a more readable and maintainable way.
C#
1
star