clivebuckwheat Posted July 19, 2010 Posted July 19, 2010 Is this possible, because I need to run different tasks, from within WinPe, after WinPE has been called from my pxe server?
cluberti Posted July 19, 2010 Posted July 19, 2010 No, only one works. However, your .cmd can do any number of things. Perhaps if we knew more about what you were trying to do (and when), perhaps we could help.
clivebuckwheat Posted July 19, 2010 Author Posted July 19, 2010 (edited) No, only one works. However, your .cmd can do any number of things. Perhaps if we knew more about what you were trying to do (and when), perhaps we could help.In my pxe menu, the first option is to call Ghost32 which loads winpe then executes ghost32.exe from the startnet.cmd works great no issues there.Now we have to update some dell bios' and the bios packages must be run from within a winpe environment.Since in my startnet.cmd I am calling ghost32, to start automatically after winpe loads,this has turned into a problem because I would like to have an option from my initial pxe menu, called Bios update, and if it is selected then it loads winpe doesn't load ghost32 but does the bios update.Hence my question about having dual startnet.cmd files, or is there a better way to accomplish this?. I'd rather not have sub menus if not absolutely necessary. Edited July 19, 2010 by clivebuckwheat
cluberti Posted July 20, 2010 Posted July 20, 2010 That would be pretty easy to do with a menu and an if / then check. Or, write a quick HTA front-end for it and just run that from your startnet.cmd file.
clivebuckwheat Posted July 20, 2010 Author Posted July 20, 2010 That would be pretty easy to do with a menu and an if / then check. Or, write a quick HTA front-end for it and just run that from your startnet.cmd file.Never heard of HTA front-end before what is this?.
cluberti Posted July 20, 2010 Posted July 20, 2010 Linkie . Add HTA support to your WinPE images, and you can run quick and dirty (or pretty) HTAs in your WinPE environment.
gadget Posted July 20, 2010 Posted July 20, 2010 (edited) Simplest form, in startnet.cmdCLSEcho "Select: ANd press [RETURN]echo "1. Run Ghost"echo "2. Flash Bios"then create two cmd files in system 32:1.cmd[path]\ghost32.exeand 2.cmdInstert instructions to flash biosMessy but works...Good sample of an HTA menu is here:Could be easilyu adapted. Edited July 20, 2010 by gadget
Eagle710 Posted July 23, 2010 Posted July 23, 2010 (edited) What else can we do with HTAs? Does have any functionality that makes it similiar to running cmd or bat?Another question is which is more powerful and overall better to use in WinPE Environment? Edited July 23, 2010 by Eagle710
Tripredacus Posted July 26, 2010 Posted July 26, 2010 Basically anything you can do with ASP and Flash you can do with HTA. HTA is basically ASP (HTML + VBScript) so possibilities are endless. You can read from WMI, access network resources and more. I have tested Flash Projector apps and they work, but I actually use AutoIT for advanced scripting and have the HTA launch those programs.
Eagle710 Posted July 29, 2010 Posted July 29, 2010 Would CMD ot BAT be the prefered method of to use in WinPE?
gadget Posted July 30, 2010 Posted July 30, 2010 Would CMD ot BAT be the prefered method of to use in WinPE?Either works but cmd is the preferred MS way of thinking.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now