214 lines
7 KiB
Python
214 lines
7 KiB
Python
# Wizard Kit: Settings - Setup
|
|
|
|
import os
|
|
import winreg
|
|
|
|
# General
|
|
HKU = winreg.HKEY_USERS
|
|
HKCR = winreg.HKEY_CLASSES_ROOT
|
|
HKCU = winreg.HKEY_CURRENT_USER
|
|
HKLM = winreg.HKEY_LOCAL_MACHINE
|
|
OTHER_RESULTS = {
|
|
'Error': {
|
|
'CalledProcessError': 'Unknown Error',
|
|
'FileNotFoundError': 'File not found',
|
|
},
|
|
'Warning': {},
|
|
}
|
|
|
|
# Browsers
|
|
MOZILLA_FIREFOX_UBO_PATH = r'{}\{}\ublock_origin.xpi'.format(
|
|
os.environ.get('PROGRAMFILES'),
|
|
r'Mozilla Firefox\distribution\extensions')
|
|
SETTINGS_GOOGLE_CHROME = {
|
|
r'Software\Google\Chrome\Extensions\cjpalhdlnbpafiamejdnhcphjbkeiagm': {
|
|
'SZ Items': {
|
|
'update_url': 'https://clients2.google.com/service/update2/crx'},
|
|
'WOW64_32': True,
|
|
},
|
|
r'Software\Google\Chrome\Extensions\pgdnlhfefecpicbbihgmbmffkjpaplco': {
|
|
'SZ Items': {
|
|
'update_url': 'https://clients2.google.com/service/update2/crx'},
|
|
'WOW64_32': True,
|
|
},
|
|
}
|
|
SETTINGS_MOZILLA_FIREFOX_32 = {
|
|
r'Software\Mozilla\Firefox\Extensions': {
|
|
'SZ Items': {
|
|
'uBlock0@raymondhill.net': MOZILLA_FIREFOX_UBO_PATH},
|
|
'WOW64_32': True,
|
|
},
|
|
}
|
|
SETTINGS_MOZILLA_FIREFOX_64 = {
|
|
r'Software\Mozilla\Firefox\Extensions': {
|
|
'SZ Items': {
|
|
'uBlock0@raymondhill.net': MOZILLA_FIREFOX_UBO_PATH},
|
|
},
|
|
}
|
|
|
|
# Classic Start
|
|
SETTINGS_CLASSIC_START = {
|
|
r'Software\IvoSoft\ClassicShell\Settings': {},
|
|
r'Software\IvoSoft\ClassicStartMenu': {
|
|
'DWORD Items': {'ShowedStyle2': 1},
|
|
},
|
|
r'Software\IvoSoft\ClassicStartMenu\MRU': {},
|
|
r'Software\IvoSoft\ClassicStartMenu\Settings': {
|
|
'DWORD Items': {'SkipMetro': 1},
|
|
'SZ Items': {
|
|
'MenuStyle': 'Win7',
|
|
'RecentPrograms': 'Recent',
|
|
},
|
|
},
|
|
}
|
|
|
|
# ESET
|
|
SETTINGS_ESET = {
|
|
r'Software\ESET\ESET Security\CurrentVersion\gui\UI_CONFIG': {
|
|
'DWORD Items': {
|
|
'FullScreenMode': 0,
|
|
'ShowDesktopAlert': 0,
|
|
'ShowSplash': 0,
|
|
},
|
|
},
|
|
}
|
|
|
|
# Explorer
|
|
SETTINGS_EXPLORER_SYSTEM = {
|
|
# Disable edge swipe
|
|
r'Software\Policies\Microsoft\Windows\EdgeUI': {
|
|
'DWORD Items': {'AllowEdgeSwipe': 0},
|
|
},
|
|
# Disable Location Tracking
|
|
r'Software\Microsoft\Windows NT\CurrentVersion\Sensor\Overrides\{BFA794E4-F964-4FDB-90F6-51056BFE4B44}': {
|
|
'DWORD Items': {'SensorPermissionState': 0},
|
|
},
|
|
r'System\CurrentControlSet\Services\lfsvc\Service\Configuration': {
|
|
'Status': {'Value': 0},
|
|
},
|
|
# Disable Telemetry
|
|
r'SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection': {
|
|
# Using SOFTWARE in all caps to avoid collision with 32-bit setting below
|
|
'DWORD Items': {'AllowTelemetry': 0},
|
|
},
|
|
r'Software\Microsoft\Windows\CurrentVersion\Policies\DataCollection': {
|
|
'DWORD Items': {'AllowTelemetry': 0},
|
|
'WOW64_32': True,
|
|
},
|
|
r'Software\Policies\Microsoft\Windows\DataCollection': {
|
|
'DWORD Items': {'AllowTelemetry': 0},
|
|
},
|
|
# Disable Wi-Fi Sense
|
|
r'Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting': {
|
|
'DWORD Items': {'Value': 0},
|
|
},
|
|
r'Software\Microsoft\PolicyManager\default\WiFi\AllowAutoConnectToWiFiSenseHotspots': {
|
|
'DWORD Items': {'Value': 0},
|
|
},
|
|
}
|
|
SETTINGS_EXPLORER_USER = {
|
|
# Desktop icons
|
|
r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu': {
|
|
'DWORD Items': {
|
|
# This PC
|
|
'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0,
|
|
# User's Folder
|
|
'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0,
|
|
},
|
|
},
|
|
r'Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel': {
|
|
'DWORD Items': {
|
|
# This PC
|
|
'{20D04FE0-3AEA-1069-A2D8-08002B30309D}': 0,
|
|
# User's Folder
|
|
'{59031a47-3f72-44a7-89c5-5595fe6b30ee}': 0,
|
|
},
|
|
},
|
|
# Disable features
|
|
r'Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager': {
|
|
'DWORD Items': {
|
|
# Silently installed apps
|
|
'SilentInstalledAppsEnabled': 0,
|
|
# Tips and Tricks
|
|
'SoftLandingEnabled ': 0,
|
|
'SubscribedContent-338389Enabled': 0,
|
|
},
|
|
},
|
|
# File Explorer
|
|
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced': {
|
|
'DWORD Items': {
|
|
# Replace PowerShell with CMD in Win+X menu
|
|
'DontUsePowerShellOnWinX': 1,
|
|
# Change default Explorer view to "Computer"
|
|
'LaunchTo': 1,
|
|
# Launch Folder Windows in a Separate Process
|
|
'SeparateProcess': 1,
|
|
},
|
|
},
|
|
# Hide People bar
|
|
r'Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People': {
|
|
'DWORD Items': {'PeopleBand': 0},
|
|
},
|
|
# Hide Search button / box
|
|
r'Software\Microsoft\Windows\CurrentVersion\Search': {
|
|
'DWORD Items': {'SearchboxTaskbarMode': 1},
|
|
},
|
|
}
|
|
|
|
# LibreOffice
|
|
LIBREOFFICE_XCU_DATA = '''<?xml version="1.0" encoding="UTF-8"?>
|
|
<oor:items xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<item oor:path="/org.openoffice.Setup/Office/Factories/org.openoffice.Setup:Factory['com.sun.star.presentation.PresentationDocument']"><prop oor:name="ooSetupFactoryDefaultFilter" oor:op="fuse"><value>Impress MS PowerPoint 2007 XML</value></prop></item>
|
|
<item oor:path="/org.openoffice.Setup/Office/Factories/org.openoffice.Setup:Factory['com.sun.star.sheet.SpreadsheetDocument']"><prop oor:name="ooSetupFactoryDefaultFilter" oor:op="fuse"><value>Calc MS Excel 2007 XML</value></prop></item>
|
|
<item oor:path="/org.openoffice.Setup/Office/Factories/org.openoffice.Setup:Factory['com.sun.star.text.TextDocument']"><prop oor:name="ooSetupFactoryDefaultFilter" oor:op="fuse"><value>MS Word 2007 XML</value></prop></item>
|
|
</oor:items>
|
|
'''
|
|
|
|
# Registry
|
|
SETTINGS_REGBACK = {
|
|
# Enable RegBack
|
|
r'System\CurrentControlSet\Control\Session Manager\Configuration Manager': {
|
|
'DWORD Items': {'EnablePeriodicBackup': 1},
|
|
},
|
|
}
|
|
|
|
# Visual C++ Runtimes
|
|
VCR_REDISTS = [
|
|
{'Name': 'Visual C++ 2010 x32...',
|
|
'Cmd': [r'2010sp1\x32\vcredist.exe', '/passive', '/norestart']},
|
|
{'Name': 'Visual C++ 2010 x64...',
|
|
'Cmd': [r'2010sp1\x64\vcredist.exe', '/passive', '/norestart']},
|
|
{'Name': 'Visual C++ 2012 Update 4 x32...',
|
|
'Cmd': [r'2012u4\x32\vcredist.exe', '/passive', '/norestart']},
|
|
{'Name': 'Visual C++ 2012 Update 4 x64...',
|
|
'Cmd': [r'2012u4\x64\vcredist.exe', '/passive', '/norestart']},
|
|
{'Name': 'Visual C++ 2013 x32...',
|
|
'Cmd': [r'2013\x32\vcredist.exe', '/install',
|
|
'/passive', '/norestart']},
|
|
{'Name': 'Visual C++ 2013 x64...',
|
|
'Cmd': [r'2013\x64\vcredist.exe', '/install',
|
|
'/passive', '/norestart']},
|
|
{'Name': 'Visual C++ 2017 x32...',
|
|
'Cmd': [r'2017\x32\vcredist.exe', '/install',
|
|
'/passive', '/norestart']},
|
|
{'Name': 'Visual C++ 2017 x64...',
|
|
'Cmd': [r'2017\x64\vcredist.exe', '/install',
|
|
'/passive', '/norestart']},
|
|
]
|
|
|
|
# Windows Updates
|
|
SETTINGS_WINDOWS_UPDATES = {
|
|
r'Software\Microsoft\WindowsUpdate\UX\Settings': {
|
|
'DWORD Items': {
|
|
# Set to non-targeted readiness level
|
|
'BranchReadinessLevel': 32,
|
|
'DeferFeatureUpdatesPeriodInDays': 60,
|
|
},
|
|
}
|
|
}
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|
|
|
|
# vim: sts=2 sw=2 ts=2
|