Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.3 KiB

  1. <HTML>
  2. <HEAD>
  3. <script>
  4. window.resizeTo(700,500);
  5. </script>
  6. <TITLE>Customizing WinPE Images</TITLE>
  7. <HTA:APPLICATION
  8. APPLICATIONNAME="Cust_WinPE"
  9. ID="CustWPE"
  10. MAXIMIZEBUTTON="no"
  11. MINIMIZEBUTTON="yes"
  12. SHOWINTASKBAR="yes"
  13. SINGLEINSTANCE="yeS"
  14. SCROLL="yes"
  15. SIZE="no"
  16. NAVIGABLE="yes"
  17. VERSION = "1.0"
  18. ICON="Images\CPE.ico">
  19. </HEAD>
  20. <script language=jscript >
  21. function Startit()
  22. {
  23. var LogFile = "WinPE.ini";
  24. var fso=new ActiveXObject("Scripting.FileSystemObject"); //create file sys obj
  25. //overwrites older file
  26. var logfile=fso.OpenTextFile(LogFile,2,true);
  27. logfile.WriteLine("Script paramater file for CreatePE.js create @ "+Date());
  28. logfile.WriteBlankLines(1);
  29. logfile.Close();
  30. self.navigate('inputs.hta');
  31. }
  32. </script>
  33. <body background="Images\wpaback.jpg">
  34. <FONT FACE="Tahoma">
  35. <h2 align="left"><font color="#FFFFFF">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Creating WinPE Images. </font>
  36. <font size="4" color="#FFFFFF"><br>
  37. <br>
  38. </font><u>
  39. <font size="4" color="#CCFFFF">
  40. Instructions</font></u></h2>
  41. This wizard will help create custom images of WinPE which can be placed on a
  42. CD or Harddrive.<p>The following information will be required before begining the wizard:</p>
  43. <ul>
  44. <li>Source directory of Microsoft Windows OPK (OEM Pre-Install Kit).
  45. </li>
  46. <li>Source directory of Microsoft Windows XP Pro CD. <font size="2">(Note: Must be the same build as the OPK).</font></li>
  47. <li>Destination of the new WinPE image. <font size="2">(Note: If the
  48. destination is a CD then 3rd party software will be required to burn the ISO
  49. image file onto the CD).</font></li>
  50. <li>WinPE startup options can be customized by using custom versions of the <i>
  51. winbom.ini </i>and/or using other scripts or apps in place of <i>startnet.cmd</i>.
  52. <font size="2">(Note: Apps used must only utilize API's supported by WinPE)</font></li>
  53. </ul>
  54. </FONT>
  55. <p align="center">
  56. <BR>
  57. <BUTTON ACCESSKEY="s" STYLE="font-face:Tahoma;font-size:13px;" onclick="Startit()">&nbsp;<U>S</U>tart&nbsp;</BUTTON>
  58. &nbsp;&nbsp;&nbsp;
  59. <BUTTON ACCESSKEY="e" STYLE="font-face:Tahoma;font-size:13px;" onclick="window.close()">&nbsp;<U>E</U>xit&nbsp;</BUTTON>
  60. </DIV>
  61. </BODY>
  62. </HTML>