28 lines
811 B
PowerShell
28 lines
811 B
PowerShell
@{
|
|
RootModule = 'GuruScan.psm1'
|
|
ModuleVersion = '1.0.0'
|
|
GUID = 'a3f2c1d4-8e5b-4a7f-9c2e-1b3d5f7a9e0c'
|
|
Author = 'Arizona Computer Guru'
|
|
CompanyName = 'Arizona Computer Guru LLC'
|
|
Description = 'Multi-engine malware scan orchestrator for GuruRMM'
|
|
PowerShellVersion = '5.1'
|
|
|
|
FunctionsToExport = @(
|
|
'Invoke-GuruScan',
|
|
'Invoke-Remediation',
|
|
'Get-ScanSummary',
|
|
'Invoke-PostRebootCleanup'
|
|
)
|
|
|
|
CmdletsToExport = @()
|
|
VariablesToExport = @()
|
|
AliasesToExport = @()
|
|
|
|
PrivateData = @{
|
|
PSData = @{
|
|
Tags = @('malware', 'scanner', 'remediation', 'msp', 'security')
|
|
ProjectUri = 'https://git.azcomputerguru.com/azcomputerguru/claudetools'
|
|
}
|
|
}
|
|
}
|