mirror of https://github.com/tongzx/nt5src
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.
75 lines
2.3 KiB
75 lines
2.3 KiB
<HTML>
|
|
<HEAD>
|
|
<script>
|
|
window.resizeTo(700,500);
|
|
</script>
|
|
|
|
<TITLE>Customizing WinPE Images</TITLE>
|
|
<HTA:APPLICATION
|
|
APPLICATIONNAME="Cust_WinPE"
|
|
ID="CustWPE"
|
|
MAXIMIZEBUTTON="no"
|
|
MINIMIZEBUTTON="yes"
|
|
SHOWINTASKBAR="yes"
|
|
SINGLEINSTANCE="yeS"
|
|
SCROLL="yes"
|
|
SIZE="no"
|
|
NAVIGABLE="yes"
|
|
VERSION = "1.0"
|
|
ICON="Images\CPE.ico">
|
|
</HEAD>
|
|
|
|
|
|
<script language=jscript >
|
|
|
|
function Startit()
|
|
{
|
|
var LogFile = "WinPE.ini";
|
|
var fso=new ActiveXObject("Scripting.FileSystemObject"); //create file sys obj
|
|
|
|
//overwrites older file
|
|
var logfile=fso.OpenTextFile(LogFile,2,true);
|
|
logfile.WriteLine("Script paramater file for CreatePE.js create @ "+Date());
|
|
logfile.WriteBlankLines(1);
|
|
logfile.Close();
|
|
self.navigate('inputs.hta');
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
<body background="Images\wpaback.jpg">
|
|
|
|
<FONT FACE="Tahoma">
|
|
<h2 align="left"><font color="#FFFFFF"> Creating WinPE Images. </font>
|
|
<font size="4" color="#FFFFFF"><br>
|
|
<br>
|
|
</font><u>
|
|
<font size="4" color="#CCFFFF">
|
|
Instructions</font></u></h2>
|
|
This wizard will help create custom images of WinPE which can be placed on a
|
|
CD or Harddrive.<p>The following information will be required before begining the wizard:</p>
|
|
|
|
<ul>
|
|
<li>Source directory of Microsoft Windows OPK (OEM Pre-Install Kit).
|
|
</li>
|
|
<li>Source directory of Microsoft Windows XP Pro CD. <font size="2">(Note: Must be the same build as the OPK).</font></li>
|
|
<li>Destination of the new WinPE image. <font size="2">(Note: If the
|
|
destination is a CD then 3rd party software will be required to burn the ISO
|
|
image file onto the CD).</font></li>
|
|
<li>WinPE startup options can be customized by using custom versions of the <i>
|
|
winbom.ini </i>and/or using other scripts or apps in place of <i>startnet.cmd</i>.
|
|
<font size="2">(Note: Apps used must only utilize API's supported by WinPE)</font></li>
|
|
</ul>
|
|
</FONT>
|
|
<p align="center">
|
|
<BR>
|
|
|
|
|
|
<BUTTON ACCESSKEY="s" STYLE="font-face:Tahoma;font-size:13px;" onclick="Startit()"> <U>S</U>tart </BUTTON>
|
|
|
|
<BUTTON ACCESSKEY="e" STYLE="font-face:Tahoma;font-size:13px;" onclick="window.close()"> <U>E</U>xit </BUTTON>
|
|
|
|
</DIV>
|
|
</BODY>
|
|
</HTML>
|