95 lines
7.5 KiB
INI
95 lines
7.5 KiB
INI
####################################################################################################
|
|
# Digital Data Configuration File (Template Date: 30.07.2016) #
|
|
# UTF-8 Coding required! #
|
|
# incl. FailSafe functions that are active when information is missing. #
|
|
####################################################################################################
|
|
|
|
#==================================================================================================#
|
|
########################################## General Setup ###########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Path in which the log files will be stored. #
|
|
# Example: E:\LogFiles\<ScriptName> #
|
|
# FailSafe Setting is: <ScriptPath>\Logs #
|
|
####################################################################################################
|
|
LogPath =
|
|
|
|
####################################################################################################
|
|
# Numerical value how long (in days) log files will be kept. ValidateRange is 0 - 1000 #
|
|
# Setting the Value to 0 disables this Function. #
|
|
# FailSafe Setting is: 60 #
|
|
####################################################################################################
|
|
LogFileKeepTime = 30
|
|
|
|
#==================================================================================================#
|
|
########################################## Firefox Setup ###########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# FirefoxAction #
|
|
# Set the action to be performed! #
|
|
# Example: InstallAndUpdate #
|
|
# Example: UpdateOnly #
|
|
####################################################################################################
|
|
FirefoxAction = InstallAndUpdate
|
|
|
|
####################################################################################################
|
|
# FirefoxVersionURL #
|
|
# Set the URL with the info about current version distibution. #
|
|
# Result file should be JSON #
|
|
####################################################################################################
|
|
FirefoxVersionURL = https://product-details.mozilla.org/1.0/firefox_versions.json
|
|
|
|
####################################################################################################
|
|
# FirefoxDownloadURL #
|
|
# Set the URL where to download the new software version. #
|
|
# The URL can be case sensitive! #
|
|
# Use "%NewVersion%" as placeholder for the new version number, got from the VersionURL. #
|
|
####################################################################################################
|
|
FirefoxDownloadURL = https://download-installer.cdn.mozilla.net/pub/firefox/releases/%NewVersion%/win64/de/Firefox%20Setup%20%NewVersion%.msi
|
|
|
|
####################################################################################################
|
|
# FirefoxInstallPath #
|
|
# Set the local installation path. #
|
|
####################################################################################################
|
|
FirefoxInstallPath = D:\ProgramFiles\Mozilla Firefox
|
|
|
|
#==================================================================================================#
|
|
######################################## Thunderbird Setup #########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# ThunderbirdAction #
|
|
# Set the action to be performed! #
|
|
# Example: InstallAndUpdate #
|
|
# Example: UpdateOnly #
|
|
####################################################################################################
|
|
ThunderbirdAction = InstallAndUpdate
|
|
|
|
####################################################################################################
|
|
# ThunderbirdVersionURL #
|
|
# Set the URL with the info about current version distibution. #
|
|
# Result file should be JSON #
|
|
####################################################################################################
|
|
ThunderbirdVersionURL = https://product-details.mozilla.org/1.0/thunderbird_versions.json
|
|
|
|
####################################################################################################
|
|
# ThunderbirdDownloadURL #
|
|
# Set the URL where to download the new software version. #
|
|
# The URL can be case sensitive! #
|
|
# Use "%NewVersion%" as placeholder for the new version number, got from the VersionURL. #
|
|
####################################################################################################
|
|
ThunderbirdDownloadURL = https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/%NewVersion%/win64/de/Thunderbird%20Setup%20%NewVersion%.msi
|
|
|
|
####################################################################################################
|
|
# ThunderbirdInstallPath #
|
|
# Set the local installation path. #
|
|
####################################################################################################
|
|
ThunderbirdInstallPath = D:\ProgramFiles\Mozilla Thunderbird
|
|
|
|
####################################################################################################
|
|
|
|
# Sources:
|
|
# https://stackoverflow.com/questions/36480534/is-there-an-api-to-retrieve-latest-versions-of-firefox-release-numbers-for-all-r
|
|
# https://github.com/ScoopInstaller/Extras/blob/master/bucket/thunderbird.json |