If I need to change the AE Title of the PacsOne Server, how do I do that?
Regards,
Warren
How do I change the AE Title of PacsOne?
For Windows version of PacsOne Server:
1. Stop PacsOne Server.
2. Run Windows Registry Editor, and change the following string value to the new AE Title:
HKEY_LOCAL_MACHINE\Software\RainbowFish Software\PacsOne\${OldAeTitle}\ApplicationEntityTitle
3. Rename the following Registry sub-key to the new AE Title:
HKEY_LOCAL_MACHINE\Software\RainbowFish Software\PacsOne\${OldAeTitle}\
4. Rename the following Registry DWORD value to the new AE Title:
HKEY_LOCAL_MACHINE\Software\RainbowFish Software\PacsOne\${OldAeTitle}
5. Run the following query from a MySQL shell, after logging into the PacsOne Server database:
mysql>update config set aetitle='$newAeTitle';
where:
$newAeTitle is the new AE Title assigned to PacsOne.
6. Start PacsOne Server.
For Linux/MacOS versions of PacsOne Server, replace Step#2, 3, 4 above by the following:
2. Rename the ${OldAeTitle}.ini configuration file under the directory where PacsOne is installed to ${NewAeTitle}.ini.
3. Change the value of the following line to the new AE Title:
1. Stop PacsOne Server.
2. Run Windows Registry Editor, and change the following string value to the new AE Title:
HKEY_LOCAL_MACHINE\Software\RainbowFish Software\PacsOne\${OldAeTitle}\ApplicationEntityTitle
3. Rename the following Registry sub-key to the new AE Title:
HKEY_LOCAL_MACHINE\Software\RainbowFish Software\PacsOne\${OldAeTitle}\
4. Rename the following Registry DWORD value to the new AE Title:
HKEY_LOCAL_MACHINE\Software\RainbowFish Software\PacsOne\${OldAeTitle}
5. Run the following query from a MySQL shell, after logging into the PacsOne Server database:
mysql>update config set aetitle='$newAeTitle';
where:
$newAeTitle is the new AE Title assigned to PacsOne.
6. Start PacsOne Server.
For Linux/MacOS versions of PacsOne Server, replace Step#2, 3, 4 above by the following:
2. Rename the ${OldAeTitle}.ini configuration file under the directory where PacsOne is installed to ${NewAeTitle}.ini.
3. Change the value of the following line to the new AE Title:
Code: Select all
ApplicationEntityTitle = ${NewAeTitle}