Deployment Solution

 View Only
  • 1.  Remove PXE Server from list in Management Console

    Posted Jun 25, 2013 03:31 PM

    I am running Altiris 7.1.  I accidentally started the netBoot services on the wrong server.  I've corrected what services are running on what server but now the incorrect server appears on the PXE server list with the correct one.  I'd like to remove the extra server from the list, I believe it's causing errors.  The services are no longer running on the incorrect server but it still appears.  Any suggestions?

    Thanks!



  • 2.  RE: Remove PXE Server from list in Management Console

    Posted Jul 02, 2013 09:36 AM

    Hi,

     

    there is a Table sbs_ServerList which holds that information. Below you will find the query to look at it and then put the guid of the unwanted entry in the in second query and run the DELETE.

     

    SELECT sbs.*, vc.Name FROM sbs_ServerList sbs
    Join vComputer vc ON sbs.[Guid] = vc.[Guid]

    DELETE FROM sbs_ServerList
    WHERE [Guid] = '<GUID>'

     

    Regards



  • 3.  RE: Remove PXE Server from list in Management Console

    Posted Jul 02, 2013 09:58 AM

    Or you can simply open the table for editing and deleting the offending row.  Remember the server name is NOT in the list, so you'll need the GUID for the server first, or maybe just memorize the IP address...  It's pretty simple.