//var comsg = "The interview detected that you previously created a customized task list. Click OK to load the task list you previously created, or click Cancel to create a new task list."; var cookieMess = "This interview uses a cookie to function. Ensure that you have are using a browser that supports cookies and that cookies are enabled."; theCookieLength = 30; //START NON-TRANSLATABLE function getCookieData(label) { var labelLen = label.length; var cLen = document.cookie.length; var i=0; var cEnd; while (i < cLen) { var j = i + labelLen; if (document.cookie.substring(i,j) == label) { cEnd = document.cookie.indexOf(";",j); if (cEnd == -1) { cEnd = document.cookie.length; } return unescape(document.cookie.substring(j+1,cEnd)); } i++ } //if they reach this point, no cookie data was found return("zzzz"); } function storeValue(input) { var exp = new Date(); var oneYearFromNow = exp.getTime() + (365 * 24 * 60 * 60 * 1000); exp.setTime(oneYearFromNow); document.cookie = "upgrint=" + input + ";expires=" + exp.toGMTString(); } function onOld() { z = screen.height-100; windowparms = "width=640,height=" + z + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no"; //windowparms = "width=640,resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no"; aWindow = window.open("rzamdcustomlist.htm?noframes=true", "custom", windowparms); aWindow.focus(); if (aWindow != null) { if (aWindow.opener == null) { aWindow.opener = self; } } window.location = "rzamdintfinal.htm"; } function onNew() { for (var i=0; i <= theCookieLength; i++) { tstring = tstring + "x"; } storeValue(tstring); onNext(); } function onNext() { var tstring = "x"; for (var i=0; i <= theCookieLength; i++) { tstring = tstring + "x"; } input = getCookieData("upgrint"); if (input == "zzzz") { storeValue(tstring); inputA = getCookieData("upgrint"); //load stored data if (inputA == "zzzz") { //cookie did not work, probably disabled alert(cookieMess); return; } } window.location = "rzamdint10.htm"; } //END NON-TRANSLATABLE

Customizing your upgrade tasks

Welcome

The purpose of this online interview is to help you create a task list specific to your upgrade. In the interview, you describe your upgrade by specifying whether you have a partitioned environment, and whether you are upgrading hardware, software or both. When completing the interview you see a customized list of tasks. When you select a task from your customized list, more detailed information appears in the right frame of the Information Center window. You can print the customized task list to use while you perform your upgrade.

This interview assumes that you are familiar with logical partitions, software upgrades, hardware feature upgrades, and hardware upgrades. For more information, see Upgrade concepts.

var text1 = "

If you have enabled your Web browser to accept cookies, you can return to your custom upgrade task list later. Return to this page and choose to return to your previously created customized upgrade task list.<\/p>"; var text4 = ""; var text5 = "The interview detected that you previously created a customized task list."; var text6 = " You can load the task list you previously created or you can create a new task list."; var text7 = " If you create a new task list, your old task list will be overwritten."; var text8 = ""; var text9 = ""; //START NON-TRANSLATABLE var text3 = "

<\/p>"; var text10 = "

"; var text11 = "<\/center>"; var tstring = "x"; re = /\s*/; input = getCookieData("upgrint"); //load stored data input2 = input.split(re); if (input != "zzzz") { if (input2[4] != "x") { document.writeln(text5 + text6 + text7); document.writeln(text3); document.writeln(text10); document.writeln(text8); document.writeln(text9); document.writeln(text11); } else { document.writeln(text1); document.writeln(text3 + text10 + text4 + text11); } } else { document.writeln(text1); document.writeln(text3 + text10 + text4 + text11); } //END NON-TRANSLATABLE