how to change recoding server cctv user profile(user name, password)?1. configuration api2. server command service

I do not understand what you need to do. Please ask again in other words..

sorry it’s my mistake.

i found ConfigImportExportUtil.exe

and It was executed in the following form

configimportexportutil.exe -u -k hardware --property password --value newpassword

As a result, we confirmed that the hardware password changed on the recording server.

I’m curious

1. Can this tool be used locally?

2. I wonder if this is possible in a way other than ConfigImportExportUtil.exe. For example, ServerCommandService using SOAP, configuration API

1. The tool has a parameter you can set if the tool is not used ‘localhost’.

2. It has been implemented using Configuration API

Please note that login happens toward the Management Server not the Recording Server, I have a hunch that you under one calls the VMS as a whole recording server..

Hi Kim,

I wrote the ConfigImportExportUtil command-line tool to make certain tasks easier like updating passwords in bulk and importing hardware from CSV for example. It is entirely developed using MIP SDK and the Configuration API, so to answer your question, yes anything done using this tool can be done using SOAP / Configuration API.

As Bo mentioned, it can be used remotely, and pointed to the Management Server using the parameter “-s address” where address is the ip or hostname of the Management Server. The default when -s isn’t supplied is “localhost”.

The source for the configimportexportutil can be found on my github below. I should note that I’m part of our technical support department and not development / R&D and this tool is not an official example of best practice MIP SDK development. Hopefully it gives you some insight into how you can implement some of this functionality in your own projects though.

https://github.com/jhendricks123/ConfigImportExportUtil