Upcoming HP Computer is called “The Machine” and it’s key features

As you may be already knowing that HP is about to debut a brand new computer to ship with a lot of powerful features and they (HP) internally call it as the “The Machine”.  Here I would like to brief about its key and interesting features that make the new computer as a game changer in data center computer hardware. “The Machine” and it’s key features The Key features of HP’s “The Machine” computer: a new operating system all open source (based on Linux and/or Android) from the ground up a new superfast way to transfer data that uses light […]

Read more

Visual Basic Script | Software Inventory | List and Generate a .CSV report file of all installed software on Windows Local System

Its a usual task for any of Windows Systems administrator to generate an inventory of Software installed on a Windows System.  In most of the enterprises there would be various enterprise Inventory software employed for this purpose.  But still if you wan to generate a quick ( and up-to-date) list from any Windows System, you can use below script that I modified to save the output/report to a .CSV file in the current working directory. VBScript to List All Installed Software | VBScript for Windows Software Inventory: [code language=”vb”] Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.CreateTextFile("Software-Inventory.csv", True) On Error […]

Read more

Fix Failed Module Import in Sikuli Scripts

Sikuli IDE throws below error while importing the modules essentially with import subprocess Code: [code language=”csharp”] import sys import time import subprocess import os [/code] Error Message: [info] Sikuli vision engine loaded. [info] Windows utilities loaded. [info] VDictProxy loaded. [error] Stopped [error] An error occurs at line 3 [error] Error message: Traceback (most recent call last): File “C:\Users\GOVARD~1\AppData\Local\Temp\sikuli-tmp6393242728040316401.py”, line 3, in import subprocess  File “C:\Program Files\Sikuli X\sikuli-script.jar\Lib\subprocess.py”, line 642, in File “C:\Program Files\Sikuli X\sikuli-script.jar\Lib\subprocess.py”, line 640, in _setup_platform File “C:\Program Files\Sikuli X\sikuli-script.jar\Lib\warnings.py”, line 56, in warn File “C:\Program Files\Sikuli X\sikuli-script.jar\Lib\warnings.py”, line 56, in warn IndexError: index out of range: 0 […]

Read more