Quantcast
Channel: Symantec Connect - Articles
Viewing all articles
Browse latest Browse all 1863

How To remove Unwanted PXE Menu Items in Deployment Solution 7.1 & 7.5

$
0
0

 In Deployment Solution 7.1 & 7.5, it is not clear how to remove unwanted PXE boot menu items. This must be done with a SQL script to take it out of the dataabase. This PXE script will clean up unwanted PXE options. You will need to put in the PXE menu item exactly as it appears in the boot menu in the third line in single quotes after @PXEName=

Here is the query. Please understand that this will make permanent changes to your SQL database, and you should take the precaution of backing up your SQL database before doing this operation.

 

--Put the PXE Image Name in the quotes here
DECLARE @PXEName varchar(max)
SET @PXEName = ''
DECLARE @PXEGuid uniqueidentifier
SET @PXEGuid =
(
SELECT i.Guid
FROM Item i
WHERE Name = @PXEName
)

--This puts the GUID into ItemToDelete
INSERT INTO ItemToDelete (Guid, DeleteDate)
VALUES (@PXEGuid, GETDATE())

--Make sure the GUID you just defined is in here
SELECT *
FROM ItemToDelete

--Run NS Quarter Hour

Screenshot:

sql_winpe.JPG

 


Viewing all articles
Browse latest Browse all 1863

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>