2025-12-08 10:32:49 +01:00
@ {
# Script module or binary module file associated with this manifest
2026-01-07 18:46:14 +01:00
RootModule = 'EdgeHardening.psm1'
2025-12-08 10:32:49 +01:00
# Version number of this module
2026-01-07 18:46:14 +01:00
ModuleVersion = '2.2.3'
2025-12-08 10:32:49 +01:00
# ID used to uniquely identify this module
2026-01-07 18:46:14 +01:00
GUID = '8e3f4c2a-9b1d-4e7a-a2c5-6f8b3d9e1a4c'
2025-12-08 10:32:49 +01:00
# Author of this module
2026-01-07 18:46:14 +01:00
Author = 'NexusOne23'
2025-12-08 10:32:49 +01:00
# Company or vendor of this module
2026-01-07 18:46:14 +01:00
CompanyName = 'Open Source Project'
2025-12-08 10:32:49 +01:00
# Copyright statement for this module
2026-01-07 18:46:14 +01:00
Copyright = '(c) 2025 NexusOne23. Licensed under GPL-3.0.'
2025-12-08 10:32:49 +01:00
# Description of the functionality provided by this module
2026-01-07 18:46:14 +01:00
Description = 'Microsoft Edge Security Hardening based on MS Edge v139 Security Baseline. Applies 24 security policies to harden Microsoft Edge browser using native PowerShell (no LGPO.exe dependency). Includes SmartScreen enforcement, site isolation, SSL/TLS hardening, extension blocking, and IE mode restrictions.'
2025-12-08 10:32:49 +01:00
# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '5.1'
# Modules that must be imported into the global environment prior to importing this module
2026-01-07 18:46:14 +01:00
RequiredModules = @ ( )
2025-12-08 10:32:49 +01:00
# Functions to export from this module
Function sToExport = @ (
'Invoke-EdgeHardening' ,
'Test-EdgeHardening'
)
# Cmdlets to export from this module
2026-01-07 18:46:14 +01:00
CmdletsToExport = @ ( )
2025-12-08 10:32:49 +01:00
# Variables to export from this module
VariablesToExport = @ ( )
# Aliases to export from this module
2026-01-07 18:46:14 +01:00
AliasesToExport = @ ( )
2025-12-08 10:32:49 +01:00
# Private data to pass to the module specified in RootModule/ModuleToProcess
2026-01-07 18:46:14 +01:00
PrivateData = @ {
2025-12-08 10:32:49 +01:00
PSData = @ {
2026-01-07 18:46:14 +01:00
Tags = @ ( 'Security' , 'Edge' , 'Browser' , 'Hardening' , 'Baseline' , 'Windows11' , 'Privacy' )
LicenseUri = ''
ProjectUri = ''
2025-12-08 10:32:49 +01:00
ReleaseNotes = @"
2026-01-07 18:46:14 +01:00
v2 . 2 . 3 - Production Release
2025-12-08 10:32:49 +01:00
- Microsoft Edge v139 Security Baseline implementation
- 20 security policies ( native PowerShell , no LGPO . exe )
- SmartScreen enforcement with override prevention
- Site isolation ( SitePerProcess ) enabled
- SSL / TLS error override blocking
- Extension blocklist ( block all by default )
- IE Mode restrictions
- Spectre / Meltdown mitigations ( SharedArrayBuffer )
- Application-bound encryption
- Backup and restore function ality
- Compliance testing
" @
}
}
}