Protect-WindowsSecurity.psm1

Function Protect-WindowsSecurity { 
    # Import functions
    . "$psscriptroot\Functions.ps1"    
            
    # Apply the hardening measures from the local file
    & "$psscriptroot\Harden-Windows-Security.ps1"

    <#
.SYNOPSIS
Applies the hardening measures
 
.LINK
https://github.com/HotCakeX/Harden-Windows-Security
 
.DESCRIPTION
Applies the hardening measures
 
.COMPONENT
PowerShell
 
.FUNCTIONALITY
Applies the hardening measures
 
#>
 
}