PSModule_SpeculationControl.psd1
|
# # Module manifest for PSModule_SpeculationControl module. # # Generated by: Krishnaramana.S # Generated on: 2026-08-13 # @{ # Script module or binary module file associated with this manifest. RootModule = 'PSModule_SpeculationControl.psm1' # Version number of this module. ModuleVersion = '1.0.0' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890' # Author of this module Author = 'Krishnaramana.S' # Company or vendor of this module CompanyName = '' # Copyright statement for this module Copyright = 'No restriction in use or modify. Tested in Dev Environment only. Test this module in your Dev Environment first before using in Production. User must make changes if required on their own risk.' # Description of the functionality provided by this module Description = 'Comprehensive remediation for speculative execution vulnerabilities on Windows. Includes registry-based mitigations, KB installation, and integration with Check-SpeculativeMitigations.ps1 XML output.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Minimum version of the Windows PowerShell host required by this module # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module # DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module # CLRVersion = '' # Processor architecture (None, X86, Amd64) ProcessorArchitecture = 'None' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @() # Assemblies that must be loaded prior to importing this module RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module. ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess NestedModules = @() # Functions to export from this module FunctionsToExport = @( 'Start-SpeculativeMitigation', 'Get-SpeculativeMitigationStatus', 'Restore-SpeculativeMitigationRegistry', 'Test-SpeculativeMitigationAdministrator', 'Get-VulnerableCvesFromXml' ) # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @() # List of all modules packaged with this module ModuleList = @() # List of all files packaged with this module FileList = @( 'PSModule_SpeculationControl.psm1', 'PSModule_SpeculationControl.psd1', 'Fix-SpeculativeMitigations.ps1', 'Check-SpeculativeMitigations.ps1', 'Fix-SpeculativeMitigations.Tests.ps1' ) # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ PSData = @{ Tags = @('SpeculativeExecution','Spectre','Meltdown','BHI','CVE-2022-0001','Security','Windows','Registry','Mitigation','HyperThreading','Compliance') LicenseUri = '' ProjectUri = '' IconUri = '' ReleaseNotes = 'Initial release with CVE-2022-0001 BHI mitigation, Hyper-Threading validation, KB installation, and XML scan integration.' } } # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |