serial number read
Hi all,
anybody an idea how can I see which computer used a which serial number on his workstation? (adobe PSE 8-9)
with labels? :/
i have 30users with adobe photoshop elements 8 and 9 and a lot of serial number conflicts(not my fault xD ). and i will see wich have the same serial to change it.
sorry for my english...its a feature from my keyboard ;)
Answers (3)
Create a custom software inventory which checks a registry key, I'm assuming that the key would be held somewhere in there.
Only machines which match that registry information will pop up as having that software 'installed' on them. Then just filter it and look up the information with a report breaking them down into the two groups.
For example, on a windows machine I need to find out which people have MYSoftware installed with serial key XXXX-1 and also XXXX-2
Create two software titles, MYSoftware1 and MYSoftware2 and set them to this:
RegistryValueEquals(HKEY_LOCAL_MACHINE\SOFTWARE\MYSoftware,License,XXXX-1)
and
RegistryValueEquals(HKEY_LOCAL_MACHINE\SOFTWARE\MYSoftware,License,XXXX-2)
Machines with 1 will be listed as having that installed, machines with 2 will list as having that installed. Even if the key isnt installed I'm sure there will be some defining information.
Good luck!