- This topic is empty.
-
AuthorPosts
-
22. January 2009 at 20:26 #1734
OS: Windows CE.Net
Image: 581I am planning on setting up a imaging station for my company but I noticed that the S30 have the boot order as IDE-USB-PXE. I want to change the order to PXE-IDE-USB but I am not seeing how to do this in the scripting. Could anyone help me with this?
23. January 2009 at 9:05 #14989There is a registry key you can set on the CE unit to change the boot order.
Here is a table that works for me
|
+
|
|Reg code |Result |
|
+
|
|”EEPROM”=hex: 40, a2, FF, 41, 08, 0F|1. IDE 2. USB 3. PXE |
|
+
|
|”EEPROM”=hex: 40, a2, FF, 41, 00, 0F|1. IDE 2. USB 3. None |
|
+
|
|”EEPROM”=hex: 40, 82, FF, 41, 0a, 0F|1. IDE 2. PXE 3. USB |
|
+
|
|”EEPROM”=hex: 40, 82, FF, 41, 00, 0F|1. IDE 2. PXE 3. None |
|
+
|
|”EEPROM”=hex: 40, 28, FF, 41, 0a, 0F|1. PXE 2. IDE 3. USB |
|
+
|
|”EEPROM”=hex: 40, 28, FF, 41, 00, 0F|1. PXE 2. IDE 3. None |
|
+
|
|”EEPROM”=hex: 40, a8, FF, 41, 02, 0F|1. PXE 2. USB 3. IDE |
|
+
|
|”EEPROM”=hex: 40, a8, FF, 41, 00, 0F|1. PXE 2. USB 3. None |
|
+
|
|”EEPROM”=hex: 40, 2a, FF, 41, 08, 0F|1. USB 2. IDE 3. PXE |
|
+
|
|”EEPROM”=hex: 40, 2a, FF, 41, 00, 0F|1. USB 2. IDE 3. None |
|
+
|
|”EEPROM”=hex: 40, 8a, FF, 41, 02, 0F|1. USB 2. PXE 3. IDE |
|
+
|
|”EEPROM”=hex: 40, 8a, FF, 41, 00, 0F|1. USB 2. PXE 3. None |
|
+
|So, you should use
[HKEY_LOCAL_MACHINESOFTWAREWYSE]
“EEPROM”=hex: 40, 28, FF, 41, 0a, 0FA WDM script could look like this:
[Version]
Number=Bootorder
Description=set boot order
OS=CEN
Category=CE Addons[Script]
CO “CEN”
LU “The administrator is updating the configuration for this device”
SF “CEConfig” “settings.reg” “REPLACE”Any the settings.reg should look like this then:
[HKEY_LOCAL_MACHINESOFTWAREWYSE]
“EEPROM”=hex:40,28,FF,41,0a,0FHTH
CG23. January 2009 at 13:31 #14994Thank you very much for this, it will make my job much more easier.
23. January 2009 at 14:05 #14996Everything I read says to use ScriptBuilder but I am unable to find, do you know where I can download it from or is it bundled with another piece of software?
23. January 2009 at 14:46 #14997Use Notepad. ScriptBuild was never released.
CG
26. January 2009 at 17:16 #15019I copied everything you wrote but I get this error message when trying to import the package in. (Application Function: TestRegFileFilerted Error: Subscript out of Range). Do you know what this means?
26. January 2009 at 20:20 #15020Open notepad and copy this into a new doc:
[Version]
Number=Bootorder
Description=set boot order
OS=CEN
Category=CE Addons[Script]
CO “CEN”
LU “The administrator is updating the configuration for this device”
SF “CEConfig” “settings.reg” “REPLACE”Save this file as “bootorder.rsp”. Create a folder named bootorder on the same level as the bootorder.rsp file.
Open the folder and create the settings.reg file in there.Now register the script within WDM.
CG
2. February 2009 at 15:35 #15063Is there also a script available for XPe to change the boot order?
-
AuthorPosts
- You must be logged in to reply to this topic.