Compare commits
1 Commits
macosintel
...
unrec
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d49d5c81c1 |
@@ -2572,60 +2572,89 @@ actions:
|
|||||||
code: reg add HKLM\SOFTWARE\Policies\Mozilla\Firefox /v DisableTelemetry /t REG_DWORD /d 1 /f
|
code: reg add HKLM\SOFTWARE\Policies\Mozilla\Firefox /v DisableTelemetry /t REG_DWORD /d 1 /f
|
||||||
revertCode: reg add HKLM\SOFTWARE\Policies\Mozilla\Firefox /v DisableTelemetry /t REG_DWORD /d 0 /f
|
revertCode: reg add HKLM\SOFTWARE\Policies\Mozilla\Firefox /v DisableTelemetry /t REG_DWORD /d 0 /f
|
||||||
-
|
-
|
||||||
name: Disable Google update service
|
category: Disable background update check services
|
||||||
recommend: standard
|
# Reduces frequent requests to third party servers
|
||||||
docs:
|
# Those request reveal information like machine information (such as software version and IP address) and usage behavior
|
||||||
- https://websetnet.net/how-to-disable-google-chrome-automatic-updates-in-windows-10/
|
# Once disabled, applications only check for updates and notify when they're being used
|
||||||
- https://www.bleepingcomputer.com/startups/GoogleUpdate.exe-25791.html #gupdate
|
children:
|
||||||
- https://www.bleepingcomputer.com/startups/GoogleUpdate.exe-26582.html #gupdatem
|
|
||||||
call:
|
|
||||||
-
|
-
|
||||||
function: RunInlineCode
|
name: Disable Google update service
|
||||||
parameters:
|
recommend: strict
|
||||||
code: |-
|
docs:
|
||||||
schtasks /change /disable /tn "GoogleUpdateTaskMachineCore"
|
- https://websetnet.net/how-to-disable-google-chrome-automatic-updates-in-windows-10/
|
||||||
schtasks /change /disable /tn "GoogleUpdateTaskMachineUA"
|
- https://www.bleepingcomputer.com/startups/GoogleUpdate.exe-25791.html #gupdate
|
||||||
revertCode: |-
|
- https://www.bleepingcomputer.com/startups/GoogleUpdate.exe-26582.html #gupdatem
|
||||||
schtasks /Change /enable /tn "GoogleUpdateTaskMachineCore"
|
call:
|
||||||
schtasks /change /enable /tn "GoogleUpdateTaskMachineUA"
|
-
|
||||||
|
function: RunInlineCode
|
||||||
|
parameters:
|
||||||
|
code: |-
|
||||||
|
schtasks /change /disable /tn "GoogleUpdateTaskMachineCore"
|
||||||
|
schtasks /change /disable /tn "GoogleUpdateTaskMachineUA"
|
||||||
|
revertCode: |-
|
||||||
|
schtasks /Change /enable /tn "GoogleUpdateTaskMachineCore"
|
||||||
|
schtasks /change /enable /tn "GoogleUpdateTaskMachineUA"
|
||||||
|
-
|
||||||
|
function: DisableService
|
||||||
|
parameters:
|
||||||
|
serviceName: gupdate # Check: (Get-Service -Name gupdate).StartType
|
||||||
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
|
-
|
||||||
|
function: DisableService
|
||||||
|
parameters:
|
||||||
|
serviceName: gupdatem # Check: (Get-Service -Name gupdatem).StartType
|
||||||
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
-
|
-
|
||||||
function: DisableService
|
name: Disable Adobe Acrobat update service
|
||||||
parameters:
|
recommend: strict
|
||||||
serviceName: gupdate # Check: (Get-Service -Name gupdate).StartType
|
call:
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
-
|
||||||
|
function: DisableService
|
||||||
|
parameters:
|
||||||
|
serviceName: AdobeARMservice # Check: (Get-Service -Name AdobeARMservice).StartType
|
||||||
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
|
-
|
||||||
|
function: DisableService
|
||||||
|
parameters:
|
||||||
|
serviceName: adobeupdateservice # Check: (Get-Service -Name adobeupdateservice).StartType
|
||||||
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
|
-
|
||||||
|
function: DisableService
|
||||||
|
parameters:
|
||||||
|
serviceName: adobeflashplayerupdatesvc # Check: (Get-Service -Name adobeflashplayerupdatesvc).StartType
|
||||||
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
|
-
|
||||||
|
function: RunInlineCode
|
||||||
|
parameters:
|
||||||
|
code: |-
|
||||||
|
schtasks /change /tn "Adobe Acrobat Update Task" /disable
|
||||||
|
schtasks /change /tn "Adobe Flash Player Updater" /disable
|
||||||
|
revertCode: |-
|
||||||
|
schtasks /change /tn "Adobe Acrobat Update Task" /enable
|
||||||
|
schtasks /change /tn "Adobe Flash Player Updater" /enable
|
||||||
-
|
-
|
||||||
function: DisableService
|
name: Disable Dropbox auto update service
|
||||||
parameters:
|
recommend: strict
|
||||||
serviceName: gupdatem # Check: (Get-Service -Name gupdatem).StartType
|
call:
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
-
|
||||||
-
|
function: DisableService
|
||||||
name: Disable Adobe Acrobat update service
|
parameters:
|
||||||
recommend: standard
|
serviceName: dbupdate # Check: (Get-Service -Name 'dbupdate').StartType
|
||||||
call:
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
-
|
-
|
||||||
function: DisableService
|
function: DisableService
|
||||||
parameters:
|
parameters:
|
||||||
serviceName: AdobeARMservice # Check: (Get-Service -Name AdobeARMservice).StartType
|
serviceName: dbupdatem # Check: (Get-Service -Name 'dbupdatem').StartType
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
-
|
-
|
||||||
function: DisableService
|
function: RunInlineCode
|
||||||
parameters:
|
parameters:
|
||||||
serviceName: adobeupdateservice # Check: (Get-Service -Name adobeupdateservice).StartType
|
code: |-
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
schtasks /Change /DISABLE /TN "DropboxUpdateTaskMachineCore"
|
||||||
-
|
schtasks /Change /DISABLE /TN "DropboxUpdateTaskMachineUA"
|
||||||
function: DisableService
|
revertCode: |-
|
||||||
parameters:
|
schtasks /Change /ENABLE /TN "DropboxUpdateTaskMachineCore"
|
||||||
serviceName: adobeflashplayerupdatesvc # Check: (Get-Service -Name adobeflashplayerupdatesvc).StartType
|
schtasks /Change /ENABLE /TN "DropboxUpdateTaskMachineUA"
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
|
||||||
-
|
|
||||||
function: RunInlineCode
|
|
||||||
parameters:
|
|
||||||
code: |-
|
|
||||||
schtasks /change /tn "Adobe Acrobat Update Task" /disable
|
|
||||||
schtasks /change /tn "Adobe Flash Player Updater" /disable
|
|
||||||
revertCode: |-
|
|
||||||
schtasks /change /tn "Adobe Acrobat Update Task" /enable
|
|
||||||
schtasks /change /tn "Adobe Flash Player Updater" /enable
|
|
||||||
-
|
-
|
||||||
name: Disable Razer Game Scanner Service
|
name: Disable Razer Game Scanner Service
|
||||||
recommend: standard
|
recommend: standard
|
||||||
@@ -2642,29 +2671,7 @@ actions:
|
|||||||
parameters:
|
parameters:
|
||||||
serviceName: LogiRegistryService # Check: (Get-Service -Name 'LogiRegistryService').StartType
|
serviceName: LogiRegistryService # Check: (Get-Service -Name 'LogiRegistryService').StartType
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
||||||
-
|
|
||||||
name: Disable Dropbox auto update service
|
|
||||||
recommend: standard
|
|
||||||
call:
|
|
||||||
-
|
|
||||||
function: DisableService
|
|
||||||
parameters:
|
|
||||||
serviceName: dbupdate # Check: (Get-Service -Name 'dbupdate').StartType
|
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
|
||||||
-
|
|
||||||
function: DisableService
|
|
||||||
parameters:
|
|
||||||
serviceName: dbupdatem # Check: (Get-Service -Name 'dbupdatem').StartType
|
|
||||||
defaultStartupMode: Automatic # Allowed values: Automatic | Manual
|
|
||||||
-
|
|
||||||
function: RunInlineCode
|
|
||||||
parameters:
|
|
||||||
code: |-
|
|
||||||
schtasks /Change /DISABLE /TN "DropboxUpdateTaskMachineCore"
|
|
||||||
schtasks /Change /DISABLE /TN "DropboxUpdateTaskMachineUA"
|
|
||||||
revertCode: |-
|
|
||||||
schtasks /Change /ENABLE /TN "DropboxUpdateTaskMachineCore"
|
|
||||||
schtasks /Change /ENABLE /TN "DropboxUpdateTaskMachineUA"
|
|
||||||
-
|
-
|
||||||
category: Disable Media Player data collection
|
category: Disable Media Player data collection
|
||||||
children:
|
children:
|
||||||
|
|||||||
Reference in New Issue
Block a user