8
0

The complete folder structure has been changed or updated

This commit is contained in:
2025-09-19 18:24:40 +02:00
parent 796473a8c9
commit 1f0d1613a5
212 changed files with 330924 additions and 762 deletions

View File

@@ -0,0 +1,76 @@
####################################################################################################
# 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> #
####################################################################################################
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 = 3
####################################################################################################
# Special characters which is used to separate file versions. #
# Example: File_4711_1606~2.pdf #
# FailSafe Setting is: ~ #
####################################################################################################
VersionSeperator = ~
####################################################################################################
# Numerical value how long (in Minutes) a File has to be there, before processing it. #
# FailSafe Setting is: 5 #
####################################################################################################
FileDelayAge = 1
#==================================================================================================#
######################################## MailStore settings ########################################
#==================================================================================================#
####################################################################################################
# Define the Directory, where MailStore was installed to. #
# Example: D:\ProgramFiles\MailStore #
####################################################################################################
MailStoreAppDir =
####################################################################################################
# Set the ServerName to connect with (MailStore Server). #
# Example: localhost #
####################################################################################################
MailStoreServer = localhost
####################################################################################################
# Set the UserName for the MailStore Admin Account. #
# Example: admin #
####################################################################################################
MailStoreAdminUserName = admin
####################################################################################################
# Set the Password for the MailStore Admin Account. #
# Example: admin #
####################################################################################################
MailStoreAdminUserPassword = 123456789dd!
####################################################################################################
# Set the Fingerprint from the MailStore Server certificate. #
# Example: 899a313f82b79b013d5e20f833926b110808f1bd #
####################################################################################################
MailStoreServerPublicKey = 899a313f82b79b013d5e20f833926b110808f1bd
####################################################################################################
# Set your local AD Domain. #
# Example: @my-domain.com #
####################################################################################################
LocalDomain = @didalog.local

View File

@@ -0,0 +1,45 @@
@ECHO OFF
TITLE DIGITAL DATA - Run all files in directory with current permissions
ECHO -
ECHO Batch Script
ECHO Run all files in directory with current permissions
ECHO -
ECHO Digital Data
ECHO Ludwig-Rinn-Strasse 16
ECHO 35452 Heuchelheim
ECHO Tel.: 0641 / 202360
ECHO E-Mail: info@didalog.de
ECHO -
ECHO Version 1.0.0.0
ECHO Date: 13.08.2015
ECHO -
ECHO Program Startup %date% at %time:~0,8% oclock, on %computername%.
REM --------------------------------------------------------------
REM ------------------------set variables-------------------------
REM --------------------------------------------------------------
setlocal enableextensions
SET DIRECTORY="%cd%"
SET FILEEXTENSION=*.ps1
SET COUNT=0
REM --------------------------------------------------------------
REM ---------------------Program 1 / Script 1---------------------
REM --------------------------------------------------------------
FOR /F "tokens=*" %%f in ('dir /S /b %FILEEXTENSION%') do (ECHO %%f && set /a count+=1)
ECHO -
ECHO Found %count% File(s) with File Extension %FILEEXTENSION% in Directory:
ECHO %DIRECTORY%.
ECHO -
ECHO Running this/them now, with your permissions!
FOR /F "tokens=*" %%f in ('dir /S /b %FILEEXTENSION%') do (PowerShell.exe -Command "& {Start-Process PowerShell.exe -WindowStyle hidden '-ExecutionPolicy Bypass -File "%%f"'}")
ECHO -
ECHO This Window will close in:
#timeout /T 10
endlocal
exit

View File

@@ -0,0 +1,30 @@
-------------------------------------------------------------------------------
Version 1.0.1.1 - 18.08.2025
NEW: -
FIX: -
CHG: - Script accepts only one config file now
REM: -
-------------------------------------------------------------------------------
Version 1.0.1.0 - 26.04.2017
NEW: -
FIX: -
CHG: - Changed the way of getting the MailStoreAppDir, for PS4 compatibility.
REM: -
-------------------------------------------------------------------------------
Version 1.0.0.0 - 24.04.2017
NEW: -
FIX: -
CHG: -
REM: -
-------------------------------------legend------------------------------------
NEW: = Added a new functionality
FIX: = Fixed a Issue with existing functionality
CHG: = Changed a existing functionality
REM: = Removed a functionality
-------------------------------------------------------------------------------