How to move Printer Queues to a newly added Pharos Print Server.
- 12 Apr 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
How to move Printer Queues to a newly added Pharos Print Server.
- Updated on 12 Apr 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Problem:
How to move Printer Queues to a new Print Server
Applies To:
Printer Queue / Pharos Print Server
Solution:
The printer queues can be moved manually by running a SQL script.
Steps to run the SQL script:
Install the Pharos Print Server on the new Server machine.
Run the queries against SQL/MSDE Database to modify the server_ID field in the Printers table.
- First determine the ID for the new server by running the following query:
use pharos
select * from servers
- Next run the query to update the server_id field:
update printers
set server_id = '1'
where printer_id = '2'
Create printers with identical names on the new Pharos Print Server.
Following the steps above will allow you to simply move the Printers from one server to another and keep all the prior transactions.
Was this article helpful?