Actually you need to reset the password in 1s to sql (samopisnaya database). There is access to the database through windows management studio.
In nete there are ways to reset 8.1 For example:
1C, when working in SQL, stores the list of users in two places: in the v8users table and in the users.usr file which is binary located in the Params table.
We need a platform to think that there are no users in the database. To do this, you need to rename the v8users table and the line with the users.usr file. Open the SQL Server Management Studio login and create a database query with the content:
EXEC sp_rename 'v8users', 'v8users_old' GO UPDATE Params SET FileName = 'users.usr_old' WHERE FileName = 'users.usr' GO After this, we open the database in the configurator and see that the platform does not ask for the user and password, while the table v8users will be created in SQL Server. Now to return all users back without closing the configurator, we execute a query in SQL Server Management Studio:
DROP TABLE v8users GO EXEC sp_rename 'v8users_old', 'v8users' GO UPDATE Params SET FileName = 'users.usr' WHERE FileName = 'users.usr_old' GO After completing the request, all users appear in the list of users, all that remains is to find the right one and change its password.
But the table v8users does not exist at all in our database. In the Params table there is a row users.usr_old. But why is she old? Apparently earlier someone tried to do something. Maybe the passwords are stored in another table? Maybe the programmer moved the passwords to another place? Or all articles on resetting the password only for 8.2 ???? Unclear ... I ask for help.