Sample Scripts and BIOS Settings 61Enabling PXE Boot on the Next RebootBelow is a sample VBScript that will force a Dell OMCI client to boot to PXEon next reboot.'****************************************************'*** Name: SampleForcePXE.vbs'*** Purpose: To force a Dell OMCI client to boot toPXE on next reboot.'*** Usage: cscript.exe //nologo SampleForcePXE.vbs'***'*** This sample script is provided as an exampleonly, and has not been'*** tested, nor is warranted in any way by Dell; Delldisclaims any'*** liability in connection therewith. Dell providesno technical'*** support with regard to such scripting. For moreinformation on WMI'*** scripting, refer to applicable Microsoftdocumentation.'****************************************************Option Explicit'*** Declare variablesDim strNameSpaceDim strComputerNameDim strClassNameDim strKeyValueDim objInstanceDim strPropNameDim strPropValue'*** Check that the right executable was used to runthe script'*** and that all parameters were passedIf (LCase(Right(WScript.FullName, 11)) ="wscript.exe" ) Or _