• HP Service Manager as SaaS

    Written by 0 Comment
  • OMW: Script to Change Agent from DCE to HTTPs Part2

    Many administrators looking to automate the time consuming process, I had seen requests in HP support forums on how to change agent in bulk I have created the below script which utilizes Policy Management and Deployment (PMAD) API which mainly starts by set pmad = CreateObject(“PMAD.OvPmdPolicyManager”) pmad.ConnectDB We can compare the above lines by opening… Read More »

    Written by 0 Comment
  • OMW: Script to Change Agent from DCE to HTTPs Part1

    HP Operations manager prior to version 8, managed node are monitored through Agent uses RPC/DCE communication, which had lots of issues as it is unsecured communication and communication configuration headache for the Agent and Server through firewall In HP Operations Manager 8  and later a new Agent is introduced called HTTP agent which uses encrypted… Read More »

    Written by 0 Comment
  • All Apple Firmware (iPod, iPhone and iPad Firmware Download)

      http://www.techstuffs.net/p/all-apple-firmwares-ipod-iphone-and.html Apple Firmwares:Note 1: When you download the required firmware below, you can shift-click (on PC) or option-click (on Mac) the Restore or Update Buttons in iTunes.Note 2: Your browser may change the ipsw-file into a zip-file. In that case, just rename it to end in .ipsw and iTunes will accept it.

    Written by 0 Comment
  • OMW: Enhanced HP Operations Manager 8.10 for Windows (short sessions)

    Introduction | HP Upgrade to OMW 8 | HPWhat’s new with OMW 8.10 | HPDependency Mapping Automation | HPNNMi Integration | HP

    Written by 0 Comment
  • OMW:Read Multi-lined log files

    I had seen so many questions about joining multiline log  as in OMW the Log Interceptor is parsing line by line, so if your data is scattered on different lines it can not be monitoring unless you imply a pre-processing script.   I have created the below script is to join multiple lines together but… Read More »

    Written by 0 Comment
  • OMW: List log files to be monitored

      In an answer to HP support forum about how to list files with certain extention to be used on OMW We have a sample directory contain may different logs, we need to monitor only files start with cisco Use dir /b /s will list the files only with their full path to optimality integrate… Read More »

    Written by 0 Comment
  • OMW: Alert when files are older than 30 minutes Part 1

    1- Create the needed script This script is listing the files that are located in certain directory cscript /nologo checkolderfiles.vbs abc c:scripts list I have added two features for the script One is to display list the files which are not modified within the time specified file1.txtfile2.txtlistfiles.vbs Second is to use opcmon to with a… Read More »

    Written by 0 Comment
  • Script for creating NNMi Nodes in OMW

    Create a New Node Group Right Click the Server –> Configure –> Nodes Create Node Group After Creation check for the node group id defined under Unique ID by check the properties page     If Wscript.Arguments.Count < 7 Then’Check that you spacified the nodes filenamewscript.echo “Usage cscript createNodes.vbs “”filename”” osType osVersion sysemType osBits agentBinFormat… Read More »

    Written by 0 Comment
  • OMW: List files on folder that didn’t modified within 30 minutes Part 2

      nodeName = “.”Set dateTime = CreateObject(“WbemScripting.SWbemDateTime”)dateTime.SetVarDate( DateAdd(“n”,-30,now()))Set objWMIService = GetObject(“winmgmts:” _ & “{impersonationLevel=impersonate}!\” & nodeName & “rootcimv2”)Set colFiles = _ objWMIService.ExecQuery(“Select * From CIM_DataFile Where Drive = ‘C:’ and Path = ‘\Scripts\’ “) ‘Wscript.Echo colFiles.Count ‘echo number of filesFor Each objFile in colFiles IF objFile.LastModified < dateTime.Value Then strNewFile = objFile.FileName & “.” &… Read More »

    Written by 0 Comment