127 lines
4.3 KiB
HTML
127 lines
4.3 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--Windows event log</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[24])) {
|
|
if (parseInt(parent.hidden.v1[24]) == 1) {
|
|
document.form1.sysmsg.checked = true;
|
|
} else {
|
|
document.form1.sysmsg.checked = false;
|
|
}
|
|
}
|
|
if (!isEmpty(parent.hidden.v1[25])) {
|
|
if (parseInt(parent.hidden.v1[25]) == 1) {
|
|
document.form1.secmsg.checked = true;
|
|
} else {
|
|
document.form1.secmsg.checked = false;
|
|
}
|
|
}
|
|
if (!isEmpty(parent.hidden.v1[26])) {
|
|
if (parseInt(parent.hidden.v1[26]) == 1) {
|
|
document.form1.appmsg.checked = true;
|
|
} else {
|
|
document.form1.appmsg.checked = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
function onNext() {
|
|
//Save data
|
|
if (document.form1.sysmsg.checked == true) {
|
|
parent.hidden.v1[24] = "1";
|
|
} else {
|
|
parent.hidden.v1[24] = "0";
|
|
}
|
|
if (document.form1.secmsg.checked == true) {
|
|
parent.hidden.v1[25] = "1";
|
|
} else {
|
|
parent.hidden.v1[25] = "0";
|
|
}
|
|
if (document.form1.appmsg.checked == true) {
|
|
parent.hidden.v1[26] = "1";
|
|
} else {
|
|
parent.hidden.v1[26] = "0";
|
|
}
|
|
//Next page
|
|
if (parent.hidden.v1[3] == "iSCSI")
|
|
window.location = "rzahqadvisor15a.htm";
|
|
else
|
|
window.location = "rzahqadvisor16.htm";
|
|
}
|
|
|
|
function onBack() {
|
|
window.location = "rzahqadvisor14.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>Windows event log</strong>
|
|
<p>Windows server event logs are recorded in the i5/OS job log or in the message queue that
|
|
you specify. In case of problems with the Windows server, service personnel can
|
|
then consult that record by way of a remote link to i5/OS.</p>
|
|
<p>What Windows event log messages do you want to log on i5/OS?</p>
|
|
<form name="form1">
|
|
<blockquote>
|
|
<input type="checkbox" name="sysmsg" value="system" id="system" checked>
|
|
<label for="system">System messages</label>
|
|
<br><br>
|
|
|
|
<input type="checkbox" name="secmsg" value="security" id="security" checked>
|
|
<label for="security">Security messages</label>
|
|
<br><br>
|
|
|
|
<input type="checkbox" name="appmsg" value="apps" id="apps" checked>
|
|
<label for="apps">Application messages</label>
|
|
|
|
</blockquote>
|
|
<br><br>
|
|
<center>
|
|
<input type="button" value="<< Back" onClick="onBack()">
|
|
<input type="button" value="Next >>" onClick="onNext()">
|
|
</center>
|
|
</form>
|
|
</body>
|
|
</html>
|