NIS Settings Utility

After the software is installed, a utility for importing and exporting program settings is installed in the installation folder. Typically:

c:\Program Files\NIS-Elements\utl_exportsettings.exe

A link to it is created in the startup menu named NIS Settings Utility. It can be run from a command line. You can use parts of the following BAT file.

Note

NIS-Elements should be turned off when using the utility.

Warning

Importing of the settings will overwrite the current settings.

@echo off
SET utl="c:\Program Files\NIS-Elements\utl_exportsettings.exe"
SET backupfile="C:\configs\nis_settings_backup.bin

:: Backup all NIS settings:
call %utl% -out %backupfile%

:: Import and overwrite all NIS settings:
call %utl% -in %backupfile%

:: Import and overwrite private NIS settings of a single user:
   
   :: Import 'userName' settings and overwrite settings of the current Windows user:
   call %utl% -u userName -in %backupfile%
   
   :: Import 'userName' settings and overwrite settings of 'userName'
   call %utl% -u userName -o -in %backupfile%