diff --git a/optional/config/ofw21config.ini b/optional/config/ofw21config.ini new file mode 100644 index 0000000..ad556c6 --- /dev/null +++ b/optional/config/ofw21config.ini @@ -0,0 +1,5 @@ +[ofw] +AutoSave=0 +AutoTime=1 +BackupType=0 +UpdateCheckEnabled=0 diff --git a/optional/config/pmw21config.ini b/optional/config/pmw21config.ini new file mode 100644 index 0000000..de45265 --- /dev/null +++ b/optional/config/pmw21config.ini @@ -0,0 +1,5 @@ +[pmw] +AutoSave=0 +AutoTime=1 +BackupType=0 +UpdateCheckEnabled=0 diff --git a/optional/config/prw21config.ini b/optional/config/prw21config.ini new file mode 100644 index 0000000..31245b3 --- /dev/null +++ b/optional/config/prw21config.ini @@ -0,0 +1,5 @@ +[prw] +AutoSave=0 +AutoTime=1 +BackupType=0 +UpdateCheckEnabled=0 diff --git a/optional/config/tmw21config.ini b/optional/config/tmw21config.ini new file mode 100644 index 0000000..57ecb2e --- /dev/null +++ b/optional/config/tmw21config.ini @@ -0,0 +1,5 @@ +[tmw] +AutoSave=0 +AutoTime=1 +BackupType=0 +UpdateCheckEnabled=0 diff --git a/optional/install-softmaker.cmd b/optional/install-softmaker.cmd index 358dd2e..c2e7ff3 100644 --- a/optional/install-softmaker.cmd +++ b/optional/install-softmaker.cmd @@ -1,6 +1,7 @@ @echo off set OPT=..\optional +set CONFIG=config set SOFTWARE=..\software set MSI=softmaker-setup.msi set SETTINGS=..\company\settings.cmd @@ -24,7 +25,6 @@ if NOT EXIST %SETTINGS% ( call %SETTINGS% ) - echo ####### %0 ####### cd %SOFTWARE% @@ -89,6 +89,27 @@ reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\PlanMaker 2021" ^ reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^ /v "BackupFilesPath" /d "" /t REG_SZ /f +echo copying .ini files ... +mkdir %USERPROFILE%\Documents\SoftMaker\Settings 2>nul +copy /Y %CONFIG%\*21config.ini %USERPROFILE%\Documents\SoftMaker\Settings + +echo preparing Softmaker documents folders ... +for %%D in ( + + "Backup" + "Bullets" + "Samples" + "PlanMaker 2021 templates" + "Presentations 2021 designs" + "TextMaker 2021 templates" + +) do ( + + mkdir %USERPROFILE%\Documents\SoftMaker\%%D 2>/nul + attrib +R %USERPROFILE%\Documents\SoftMaker\%%D 2>/nul + +) + echo setting default formats ... reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^ /v "DefaultFormat" /d 6 /t REG_DWORD /f