117 lines
4.2 KiB
HTML
117 lines
4.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
|
|
<html>
|
|
<head>
|
|
<meta name="Copyright" content="Copyright (c) 2004 by IBM Corporation">
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
|
|
<title>Windows Server installation advisor--System drive</title>
|
|
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
|
|
<script type="text/javascript" language="Javascript">
|
|
<!-- // Hide script from older browsers
|
|
|
|
//START NON-TRANSLATABLE
|
|
//Obtain name of HTML file in parent frame.
|
|
var parentDir = parent.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|
var parentUrl = parent.window.location.href.substring(parentDir.length,parent.window.location.href.length+1);
|
|
if (parentUrl.indexOf("#") >= 0) { parentUrl = parentUrl.substring(0,parentUrl.indexOf("#"));}
|
|
|
|
function checkFrame() {
|
|
//Is the hidden frame already loaded with the correct html?
|
|
if (parentUrl != "rzahqadvisor1.htm") {
|
|
window.location = "rzahqadvisor1.htm"; //load advisor frameset
|
|
return;
|
|
} else {
|
|
//Obtain name of HTML file in hidden frame.
|
|
var hiddenDir = parent.hidden.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|
var hiddenUrl = parent.hidden.window.location.href.substring(hiddenDir.length,parent.hidden.window.location.href.length+1);
|
|
if (hiddenUrl.indexOf("#") >= 0) { hiddenUrl = hiddenUrl.substring(0,hiddenUrl.indexOf("#"));}
|
|
if (hiddenUrl != "rzahqadvhidden.htm") {
|
|
//Correct HTML not loaded, load it
|
|
parent.hidden.window.location = "rzahqadvhidden.htm";
|
|
} else { //already loaded
|
|
getData();
|
|
}
|
|
}
|
|
}
|
|
|
|
function getData() {
|
|
if (!isEmpty(parent.hidden.v1[13])) {
|
|
if (parseInt(parent.hidden.v1[13]) == 2) {
|
|
document.form1.rad[1].checked = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
function onNext() {
|
|
//Save data
|
|
if (document.form1.rad[0].checked == true) {
|
|
if (parseInt(parent.hidden.v1[13]) == 2) {
|
|
parent.hidden.v1[16] = "";
|
|
parent.hidden.v1[14] = "";
|
|
parent.hidden.v1[15] = "";
|
|
}
|
|
parent.hidden.v1[13] = "1";
|
|
} else {
|
|
if (parseInt(parent.hidden.v1[13]) == 1) { parent.hidden.v1[16] = ""; }
|
|
parent.hidden.v1[13] = "2";
|
|
}
|
|
//Next page
|
|
if (document.form1.rad[0].checked == true) { //manual
|
|
window.location = "rzahqadvisor12.htm";
|
|
} else { //recommend
|
|
window.location = "rzahqadvisor11.htm";
|
|
}
|
|
}
|
|
|
|
function onBack() {
|
|
if (parseInt(parent.hidden.v1[5],10) == 1 && (parent.hidden.v1[3] == "2689" || parent.hidden.v1[3] == "iSCSI")) { //basic install and hardware type is 2689 or iSCSI
|
|
window.location = "rzahqadvisor8.htm";
|
|
} else {
|
|
window.location = "rzahqadvisor9.htm";
|
|
}
|
|
}
|
|
|
|
//END NON-TRANSLATABLE
|
|
|
|
////////// -->
|
|
</script>
|
|
<link rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
|
</head>
|
|
|
|
<body onLoad="checkFrame()">
|
|
<h2>Windows Server installation advisor</h2>
|
|
<strong>System drive</strong>
|
|
|
|
<p>The system drive (Drive C) must be large enough to hold the Windows server operating system.
|
|
It can be from 1024 to 1024000 MB. Consider these factors:</p>
|
|
|
|
<ul>
|
|
<li>Your version of Windows server (Refer to Microsoft documentation for Windows server operating system requirements.)</li>
|
|
<li>Primary usage (print or file serving) and number of users (terminal server)</li>
|
|
<li>Free space on system drive</li>
|
|
<li>Application resource requirements</li>
|
|
<li>Need space for dump file if server fails</li>
|
|
</ul>
|
|
|
|
<p>How do you want to enter the size of the system drive?</p>
|
|
<form name="form1">
|
|
<blockquote>
|
|
<input type="radio" name="rad" id="specify" value="specify" checked>
|
|
<label for="specify">I would like to manually specify the size</label>
|
|
<br>
|
|
<br>
|
|
<input type="radio" name="rad" id="recom" value="recom">
|
|
<label for="recom">I would like the advisor to recommend a size</label>
|
|
</blockquote>
|
|
<br>
|
|
<center>
|
|
<input type="button" value="<< Back" onClick="onBack()">
|
|
<input type="button" value="Next >>" onClick="onNext()">
|
|
</center>
|
|
</form>
|
|
</body>
|
|
</html>
|