Uncategorized

How To: Hide title bar or URL usingJavascript

Here’s the test page, testframe.html:<html><head><meta http-equiv=”Content-Type” content=”text/html; charset=windows-1252″><title>Test page</title><script language=”JavaScript”><!–function openWindowNew( windowURL, windowName) {        var windowFeatures=’width=518,height=500,toolbar=0,location=0,scrollBars’  return window.open( windowURL, windowName, windowFeatures ) ;}//—></script></head><body> <a href=”#” onClick=”newWindow = openWindowNew(‘frameset.html?’+escape(‘http://www.myserver.com’), ‘Mywindowname’); newWindow.focus(); return false”>Here’s the link to myserver</a>></html> Here’s the frame page, frameset.html:<html><head><meta http-equiv=”Content-Type” content=”text/html; charset=windows-1252″><title>frame page</title></head><body><frameset onLoad=”top.content.location=location.search.substring(1)” rows=”100%”><frame name=”content” src=”about:blank”></frameset></body></html> Original post blogged on …

How To: Hide title bar or URL usingJavascript Read More »

Cognos: ReportNet Installation Procedure

Pre Installation Requirements The following Software’s must be installed and running before installing and configuring Cognos ReportNet Database (Oracle/DB2/SQL Server) for Content Store Web Server (IIS/Apache) Note: This document will focus on Oracle Database and Internet Information Services (IIS) Web Server only. Oracle For creation of Content store, the database must support Unicode Character set. …

Cognos: ReportNet Installation Procedure Read More »

HP-UX: How can I retrieve the system serial number

cstm is installed with the OnlineDiagnostics / Support Tools Bundle on HP-UX 9000 systems: # echo “sc product system;info;wait;il” | cstm | grep -i “system serial” # echo “sel path systemninfolognexit”|cstm|grep “System Serial” # SERIAL_NUMBER=$(echo “sc product system;info;wait;il” | cstm | grep -i “system serial” | awk -F: ‘{print $2}’) # echo $SERIAL_NUMBER # getconf …

HP-UX: How can I retrieve the system serial number Read More »

Zoning via CLI on Brocade switch

Step by Step Procedure of Zoning via Cli. 1.Create a Zone Alias using “AliCreate” SW0:admin> alicreate “SUNX4150_HBA0″ 2.Add member to Alias using “Aliadd” SW0:admin> aliadd “SUNX4150_HBA0″,”21:00:00:1b:32:13:a8:9f” 3.Create a Zone using “ZoneCreate” SW0:admin> zonecreate “CX_424_SPB4_SUNX4150_HBA0″ 4. Add membet to Zone using “ZoneAdd” SW0:admin> zoneadd “CX_424_SPB4_SUNX4150_HBA0″,”CX_424_SPB4″ 5.Add a Zone to Zone configuration “CfgAdd”. SW0:admin> cfgadd “SAN_U2_SW0_Config”,”CX_424_SPB4_SUNX4150_HBA0″ 6.Save …

Zoning via CLI on Brocade switch Read More »

Sun StorEdge 3510 configuration

root@Sun440 # sccli sccli: selected device /dev/rdsk/c4t40d0s2 [SUN StorEdge 3510 SN#04D208] sccli> usage: sccli [options] device [command] Valid options: -d disk, –disk=cXtYdZ select LVD single-bus JBOD enclosure containing specified disk -h, –help, –usage display valid commands -l, –list display a list of attached StorEdge 3000 Family devices -n, –no assume a “no” response to any …

Sun StorEdge 3510 configuration Read More »

Windows: Creating an aligned GPT partition by using diskpart

To create a 1GB partition on an empty GPT disk: C:>diskpart Microsoft DiskPart version 5.1.3565 Copyright (C) 1999-2003 Microsoft Corporation. On computer: NNII0280 DISKPART> Select Disk 1 Disk 1 is now the selected disk. DISKPART> create partition primary size=1024 align=64 DiskPart succeeded in creating the specified partition. DISKPART> The alignment is not an absolute address …

Windows: Creating an aligned GPT partition by using diskpart Read More »

Scroll to Top