diff --git a/current/Export-DBDataToFile/Export-DBDataToFile_History.txt b/current/Export-DBDataToFile/Export-DBDataToFile_History.txt index ff36f96..97cbca5 100644 --- a/current/Export-DBDataToFile/Export-DBDataToFile_History.txt +++ b/current/Export-DBDataToFile/Export-DBDataToFile_History.txt @@ -1,7 +1,7 @@ ------------------------------------------------------------------------------- -Version 1.0.0.0 - xx.11.2023 +Version 1.0.0.0 - 30.11.2023 NEW: - FIX: - CHG: - diff --git a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice.ps1 b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice.ps1 index 3359bf0..d3a7e99 100644 Binary files a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice.ps1 and b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice.ps1 differ diff --git a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_History.txt b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_History.txt index 55170f2..0bcbc2c 100644 --- a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_History.txt +++ b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_History.txt @@ -1,8 +1,9 @@ +------------------------------------------------------------------------------- -Version 2.0.0.3 - 15.05.2022 +Version 2.0.0.3 - 07.03.2024 NEW: - -FIX: - -CHG: - Removed old messages in code +FIX: - Error Folder will now only created if its necessary +CHG: - REM: - ------------------------------------------------------------------------------- diff --git a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_Settings.ini b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_Settings.ini index 261536f..3ad96b0 100644 Binary files a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_Settings.ini and b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_Settings.ini differ diff --git a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_WindowsTaskScheduler.xml b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_WindowsTaskScheduler.xml index 7f788ba..1ef365f 100644 Binary files a/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_WindowsTaskScheduler.xml and b/current/Join-ZUGFeRD_Invoice/Join-ZUGFeRD_Invoice_WindowsTaskScheduler.xml differ diff --git a/current/Set-DFSServerClient/Set-DFSServerClient.cmd b/current/Set-DFSServerClient/Set-DFSServerClient.cmd index 1bfcd1b..e0b5e6d 100644 --- a/current/Set-DFSServerClient/Set-DFSServerClient.cmd +++ b/current/Set-DFSServerClient/Set-DFSServerClient.cmd @@ -1,12 +1,29 @@ @ECHO OFF -ECHO Skript bitte immer als lokaler Admin laufen lassen! -ECHO ------------------------------- -ECHO. +REM ---------------------------------------------------------------------------- +REM Copyright (c) 2024 by Digital Data GmbH +REM +REM Digital Data GmbH • Ludwig-Rinn-Strasse 16 • D-35452 Heuchelheim +REM Tel.: 0641/202360 • E-Mail: info-flow@digitaldata.works +REM ---------------------------------------------------------------------------- +REM Creation Date / Author: 06.01.2024 / MK +REM Version Date / Editor: 27.02.2024 / MK +REM Version Number: 1.1.0.0 pushd "%~dp0" -dfsutil.exe client property state active \\dd-gan.local.digitaldata.works\dd-dfsr01\ArchivedObjects \\DD-STO01\DD-STO01-A2$\ArchivedObjects -dfsutil.exe client property state active \\dd-gan.local.digitaldata.works\dd-dfsr01\ServerObjects \\DD-STO01\DD-STO01-A2$\ServerObjects -dfsutil.exe client property state active \\dd-gan.local.digitaldata.works\dd-dfsr01\SharedObjects \\DD-STO01\DD-STO01-A2$\SharedObjects -dfsutil.exe client property state active \\dd-gan.local.digitaldata.works\dd-dfsr01\UserObjects \\DD-STO01\DD-STO01-A2$\UserObjects +SET DFSRSERVER=172.24.11.1 +SET DFSRROOTPATH=\\dd-gan.local.digitaldata.works\dd-dfsr01 +SET DFSRSERVERPATH=\\DD-STO01\DD-STO01-A2$ +ping -n 1 %DFSRSERVER% >nul +IF %errorlevel% equ 0 ( + ECHO Der Server %DFSRSERVER%, ist erreichbar! + dfsutil.exe client property state active %DFSRROOTPATH%\ArchivedObjects %DFSRSERVERPATH%\ArchivedObjects + dfsutil.exe client property state active %DFSRROOTPATH%\ServerObjects %DFSRSERVERPATH%\ServerObjects + dfsutil.exe client property state active %DFSRROOTPATH%\SharedObjects %DFSRSERVERPATH%\SharedObjects + dfsutil.exe client property state active %DFSRROOTPATH%\UserObjects %DFSRSERVERPATH%\UserObjects +) else ( + ECHO Der Server %DFSRSERVER%, ist nicht erreichbar! +) +timeout /t 10 +exit \ No newline at end of file diff --git a/current/Set-DFSServerClient/Set-DFSServerClient_WindowsTaskScheduler.xml b/current/Set-DFSServerClient/Set-DFSServerClient_WindowsTaskScheduler.xml index 782e859..e7458da 100644 Binary files a/current/Set-DFSServerClient/Set-DFSServerClient_WindowsTaskScheduler.xml and b/current/Set-DFSServerClient/Set-DFSServerClient_WindowsTaskScheduler.xml differ