-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppLockerEx.psd1
25 lines (25 loc) · 1.1 KB
/
AppLockerEx.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@{
RootModule = 'AppLockerEx.psm1';
ModuleVersion = '1.0.0';
GUID = 'a735e702-e122-458e-ac05-57353dab35b2';
Author = 'Iain Brighton';
CompanyName = 'Virtual Engine';
Copyright = '(c) 2019 Virtual Engine Limited. All rights reserved.';
Description = 'Programmatcally create AppLocker Policy (XML) documents with PowerShell.';
PowerShellVersion = '3.0';
FunctionsToExport = @(
'Add-AppLockerPolicyComment',
'Add-AppLockerPolicyHashRule',
'Add-AppLockerPolicyPathRule',
'Add-AppLockerPolicyPublisherRule',
'New-AppLockerPolicyDocument',
'Set-AppLockerPolicyEnforcementMode'
);
PrivateData = @{
PSData = @{
Tags = @('VirtualEngine','Virtual','Engine','PowerShell','AppLocker','Extension');
LicenseUri = 'https://github.com/VirtualEngine/AppLockerEx/blob/master/LICENSE';
ProjectUri = 'https://github.com/VirtualEngine/AppLockerEx';
}
}
}