More ESET settings
This commit is contained in:
parent
8c3b6865e6
commit
29b54a7b85
2 changed files with 12 additions and 3 deletions
|
|
@ -245,8 +245,9 @@ def install_eset_nod32_av(msp=False):
|
|||
config_file='eset-config-msp' if msp else 'eset-config',
|
||||
**global_vars)
|
||||
|
||||
# Apply user configuration
|
||||
write_registry_settings(SETTINGS_ESET, all_users=False)
|
||||
# Registry settings
|
||||
write_registry_settings(SETTINGS_ESET_SYSTEM, all_users=True)
|
||||
write_registry_settings(SETTINGS_ESET_USER, all_users=False)
|
||||
|
||||
# Install
|
||||
cmd = [
|
||||
|
|
|
|||
|
|
@ -69,10 +69,18 @@ SETTINGS_CLASSIC_START = {
|
|||
}
|
||||
|
||||
# ESET
|
||||
SETTINGS_ESET = {
|
||||
SETTINGS_ESET_SYSTEM = {
|
||||
r'Software\ESET\ESET Security\CurrentVersion\Settings\LiveGrid': {
|
||||
'DWORD Items': {
|
||||
'LiveGridFeedbackEnabled': 1,
|
||||
},
|
||||
},
|
||||
}
|
||||
SETTINGS_ESET_USER = {
|
||||
r'Software\ESET\ESET Security\CurrentVersion\gui\UI_CONFIG': {
|
||||
'DWORD Items': {
|
||||
'FullScreenMode': 0,
|
||||
'ShowAlertStatus': 0x40000000,
|
||||
'ShowDesktopAlert': 0,
|
||||
'ShowSplash': 0,
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue