PDM, change user's login name

Installation, PDM, standards, training, support, part numbering, rev schemes, etc.
User avatar
bnemec
Posts: 1850
Joined: Tue Mar 09, 2021 9:22 am
Answers: 10
Location: Wisconsin USA
x 2435
x 1330

PDM, change user's login name

Unread post by bnemec »

Sometimes users change their names. We use Active Directory for PDM login, so when IT updates the users login name in AD and I run "Update Group from AD" it wants to remove the user's old name from group(s) and create new user by new name. In effect it's the same user (person) just a new name, so I would like to keep history and stuff in tact. Do I just live with it or is there a better way?

I found a VAR blog suggesting editing the user login name from SQL. https://www.goengineer.com/blog/editing ... 20updated. Tempting to do that. But I read farther and wondered, well, should I change the name in the registry too or just change in database table and assume something triggers to update the registry?

Does anyone have experience with this they would like to share?
by Diaval » Mon Mar 25, 2024 10:49 am
There are two places in the archive server registry where PDM stores the login information for vaults on the server. This is because the Login type can be set to use the setting from the server or set to override the server settings to use different settings on a specific vault. Using vault level settings will allow you to do things such as have different users who use the same user name with different passwords for different vaults. These would be stored separately for each vault.

Server level location: HKEY_LOCAL_MACHINE\SOFTWARE\SolidWorks\Applications\PDMWorks Enterprise\ArchiveServer\
Vault level location: HKEY_LOCAL_MACHINE\SOFTWARE\SolidWorks\Applications\PDMWorks Enterprise\ArchiveServer\Vaults\<vaultname>\

PDM logins are in ConisioUsers
Windows users and groups defined in the login Settings dialog are in WinUsers

Users that are deleted in the vault are not removed from the archive server registry. This is because it is possible to recover a deleted user account and the registry is storing the user password.

The user name is just a string so it should technically be possible to update the string since the system is going to use the UserID internally to identify the user. For PDM logins, you would also need to change the registry key name for the user so that the system can authenticate the password.

Some things to consider when trying to do something like this is that you may have unintended consequences in other areas where the user name maybe be saved or referenced as a string so it is not using the userid. Some places that come to mind are variable values for Author, Checked by, Approved by, etc. Most often these values are also stored in the files themselves and not just in the PDM database.

Another area that might compare against the username strings is if variable values are used in conditional notifications. Those may also be affected if the value of the variable string no longer matches the value of the username string.
Go to full post
User avatar
mp3-250
Posts: 540
Joined: Tue Sep 28, 2021 4:09 am
Answers: 18
Location: Japan
x 601
x 281

Re: PDM, change user's login name

Unread post by mp3-250 »

I had to changed all our user names to cope with domain mIgration editing the sql table during server maintenance to avoid to lose all history of our legacy users

1.Close the vault for maintenance so no one could try to log in
2.Open the SQL management studio
3.Expand the tables and locate dbo.users table under your vault DB
4.right click edit the first 200 lines
5.Edit the username column

Backup the DB before this operation just in case.
You must add the new AD user to the access list in the PDM archive server settings otherwise the user has no access to the vault.
User avatar
mp3-250
Posts: 540
Joined: Tue Sep 28, 2021 4:09 am
Answers: 18
Location: Japan
x 601
x 281

Re: PDM, change user's login name

Unread post by mp3-250 »

What registry entry is of you concern?
Server side entries like usercache should be recreated.
You need to allow the access from AD adding the new user names you modified in the db in the archive server as well.
User avatar
bnemec
Posts: 1850
Joined: Tue Mar 09, 2021 9:22 am
Answers: 10
Location: Wisconsin USA
x 2435
x 1330

Re: PDM, change user's login name

Unread post by bnemec »

mp3-250 wrote: Wed Mar 20, 2024 8:31 pm What registry entry is of you concern?
Server side entries like usercache should be recreated.
You need to allow the access from AD adding the new user names you modified in the db in the archive server as well.
Thank you. I don't know if it should even be a concern. In the link below they go on to talk about removing a login name from the registry on the archive server. You make it sound like that is cache that is loaded/refreshed automatically. I guess if old logins are not automatically flushed from that registry and there is a conflict then there is a need to manually remove that old login from registry?

This image from the linked page is what I was talking about:
image.png
User avatar
jcapriotti
Posts: 1792
Joined: Wed Mar 10, 2021 6:39 pm
Answers: 29
Location: The south
x 1131
x 1940

Re: PDM, change user's login name

Unread post by jcapriotti »

bnemec wrote: Thu Mar 21, 2024 12:37 pm Thank you. I don't know if it should even be a concern. In the link below they go on to talk about removing a login name from the registry on the archive server. You make it sound like that is cache that is loaded/refreshed automatically. I guess if old logins are not automatically flushed from that registry and there is a conflict then there is a need to manually remove that old login from registry?

This image from the linked page is what I was talking about:
image.png
I don't have any users except "admin" there. Our PDM is linked to our old AD username and password. Since we've gone to Azure AD, I'm now in the process of going to PDM only logins. This requires that I rename the username in the "Users" table to a new name, then we set a password for each user. This does create a new user registry entry similar to what you show but its down under "Vaults\<Vaultname>\ConisioUsers
Jason
User avatar
mp3-250
Posts: 540
Joined: Tue Sep 28, 2021 4:09 am
Answers: 18
Location: Japan
x 601
x 281

Re: PDM, change user's login name

Unread post by mp3-250 »

The registry saves both AD and PDM users, name for both and hashed passwords for the latter.
Unless you have to move one user from AD login to PDM login you could avoid touching the registry.
for my test server I did both as Ido not wanted to use AD login over there.

Edit:
I saw the attachment and it seems you have pdm logins too?
do you use mixed logins? AD and PDM?
User avatar
jcapriotti
Posts: 1792
Joined: Wed Mar 10, 2021 6:39 pm
Answers: 29
Location: The south
x 1131
x 1940

Re: PDM, change user's login name

Unread post by jcapriotti »

mp3-250 wrote: Thu Mar 21, 2024 3:36 pm I saw the attachment and it seems you have pdm logins too?
do you use mixed logins? AD and PDM?
Not initially until they added the option (2020?). Then i just had some test users as PDM logins. Now I'm moving all accounts PDM Logins due to our move to Azure.
Jason
User avatar
Diaval
Posts: 87
Joined: Wed Mar 17, 2021 12:01 pm
Answers: 7
Location: Stockholm
x 50
x 110

Re: PDM, change user's login name

Unread post by Diaval »

There are two places in the archive server registry where PDM stores the login information for vaults on the server. This is because the Login type can be set to use the setting from the server or set to override the server settings to use different settings on a specific vault. Using vault level settings will allow you to do things such as have different users who use the same user name with different passwords for different vaults. These would be stored separately for each vault.

Server level location: HKEY_LOCAL_MACHINE\SOFTWARE\SolidWorks\Applications\PDMWorks Enterprise\ArchiveServer\
Vault level location: HKEY_LOCAL_MACHINE\SOFTWARE\SolidWorks\Applications\PDMWorks Enterprise\ArchiveServer\Vaults\<vaultname>\

PDM logins are in ConisioUsers
Windows users and groups defined in the login Settings dialog are in WinUsers

Users that are deleted in the vault are not removed from the archive server registry. This is because it is possible to recover a deleted user account and the registry is storing the user password.

The user name is just a string so it should technically be possible to update the string since the system is going to use the UserID internally to identify the user. For PDM logins, you would also need to change the registry key name for the user so that the system can authenticate the password.

Some things to consider when trying to do something like this is that you may have unintended consequences in other areas where the user name maybe be saved or referenced as a string so it is not using the userid. Some places that come to mind are variable values for Author, Checked by, Approved by, etc. Most often these values are also stored in the files themselves and not just in the PDM database.

Another area that might compare against the username strings is if variable values are used in conditional notifications. Those may also be affected if the value of the variable string no longer matches the value of the username string.
-- To espouse elucidation we must eschew obfuscation
Post Reply