Issue #22
This commit is contained in:
parent
d5a23cb5e0
commit
12e887eedb
5
optional/config/ofw21config.ini
Normal file
5
optional/config/ofw21config.ini
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[ofw]
|
||||||
|
AutoSave=0
|
||||||
|
AutoTime=1
|
||||||
|
BackupType=0
|
||||||
|
UpdateCheckEnabled=0
|
5
optional/config/pmw21config.ini
Normal file
5
optional/config/pmw21config.ini
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[pmw]
|
||||||
|
AutoSave=0
|
||||||
|
AutoTime=1
|
||||||
|
BackupType=0
|
||||||
|
UpdateCheckEnabled=0
|
5
optional/config/prw21config.ini
Normal file
5
optional/config/prw21config.ini
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[prw]
|
||||||
|
AutoSave=0
|
||||||
|
AutoTime=1
|
||||||
|
BackupType=0
|
||||||
|
UpdateCheckEnabled=0
|
5
optional/config/tmw21config.ini
Normal file
5
optional/config/tmw21config.ini
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[tmw]
|
||||||
|
AutoSave=0
|
||||||
|
AutoTime=1
|
||||||
|
BackupType=0
|
||||||
|
UpdateCheckEnabled=0
|
@ -1,6 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set OPT=..\optional
|
set OPT=..\optional
|
||||||
|
set CONFIG=config
|
||||||
set SOFTWARE=..\software
|
set SOFTWARE=..\software
|
||||||
set MSI=softmaker-setup.msi
|
set MSI=softmaker-setup.msi
|
||||||
set SETTINGS=..\company\settings.cmd
|
set SETTINGS=..\company\settings.cmd
|
||||||
@ -24,7 +25,6 @@ if NOT EXIST %SETTINGS% (
|
|||||||
call %SETTINGS%
|
call %SETTINGS%
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
cd %SOFTWARE%
|
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" ^
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\Presentations 2021" ^
|
||||||
/v "BackupFilesPath" /d "" /t REG_SZ /f
|
/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 ...
|
echo setting default formats ...
|
||||||
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\SoftMaker\TextMaker 2021" ^
|
||||||
/v "DefaultFormat" /d 6 /t REG_DWORD /f
|
/v "DefaultFormat" /d 6 /t REG_DWORD /f
|
||||||
|
Loading…
Reference in New Issue
Block a user