Deployment Solution

 View Only

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

Nov 03, 2014 11:11 AM

 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

 

Statistics
0 Favorited
0 Views
0 Files
0 Shares
0 Downloads

Tags and Keywords

Related Entries and Links

No Related Resource entered.