Do you have a Lansweeper Premium or Enterprise license? The Premium license only allows for 1 scanning server. If this is the license you have, you will first need to disable the Lansweeper service on your old server before starting the service on your new one.
- Disable the service on the old server.
- Copy the script below into the Lansweeper configuration console under Lansweeper\Database Scripts and hit the "Execute sql script" button. Replace "NewServer" with the NetBIOS name of your new scanning server and "OldServer" with the NetBIOS name of your old server. This will rename the server in your database, allowing you to keep your settings. (Leave the single quotes in the script.)
delete from tsysasservers where servername = 'NewServer'
GO
update tsysasservers set servername = 'NewServer' where servername = 'OldServer'
GO
Update tblcomputers set scanserver = 'NewServer'
GO
Update tblcustdevices set scanserver= 'NewServer'
GO
- Start the service on your new server.