Monday, September 7, 2026

Get details (kundli) of your RAM

Run the command over command prompt:

wmic MemoryChip get BankLabel, Capacity, DeviceLocator, Manufacturer, MemoryType, PartNumber, SerialNumber, Speed

Check Your PC's Performance Score

Run the command over Powershell :

Get-CimInstance Win32_WinSAT

A higher score (usually, 7–9.9) indicates a healthy device/component(s).

Thursday, May 6, 2021

Name Interface Engines in HL7

Orion Health - Rhapsody Integration Engine

NextGen Connect - Mirth Connect

iNTERFACEWARE - Iguana

Lawson Worldwide - Lawson Cloverleaf

Corepoint Health - Corepoint Integration Engine

Intersystems - Ensemble 

Thursday, March 25, 2021

What is modality in HIS-RIS?

Modality is the term used in radiology to refer the therapeutic method in which images are generated/recorded. More generally, in clinical medicine, the term modality is used for different types of procedures and therapies. Modality for radiology orders in ORM^O01 message. we are currently using the OBR-24 field as Modality for radiology orders message.

Thursday, October 11, 2018

What are the minimum segments necessary to generate an ADT message?

MSH - Message header (Required)
EVN - Event type (Required)
PID - Patient identification (Required)
PV1 - Patient visit (Required)

What are the minimum segments necessary to generate an ORU message?

MSH - Message header (Required)
PID - Patient identification (Required)
PV1 - Patient visit (Required)
OBR - Observation request (Required)
OBX - Observation segment (Required, Repeatable)

What are the minimum segments necessary to generate an MDM message?

MSH - Message header (Required)
EVN - Event type (Required)
PID - Patient identification (Required)
PV1 - Patient visit (Required)
TXA - Document notification segment (Required)
OBX - Observation segment (Required, Repeatable)

Thursday, August 9, 2018

Get inactive RDP connections logged off

@echo off
color 0a
title Logging off Disconnected RDP(s) . . . . .
cls

::Disconnected user logoff
for /f "tokens=2 delims= " %%a in ('query user ^| findstr Disc') do for %%b in (%%a) do (echo %~n0 script is logging off session id - %%a logoff %%a)

::Active user logoff
for /f "tokens=3 delims= " %%a in ('query user ^| findstr Active') do for %%b in (%%a) do (echo %~f0  is logging off session id - %%a logoff %%a)

title Logging off RDP(s) Complete . . . . .
exit

*Note - You must have administrator privileges.

Tuesday, June 6, 2017

C program that prints itself.

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
    FILE *fp;
    if ((fp = fopen(__FILE__, "r")) == NULL)
    {
        printf("Error! opening file %s\n", __FILE__);
        exit(1);
    }
    while(!feof(fp))
    {
        printf("%c", fgetc(fp));
    }
    fclose(fp);

    getch();   
    return 0;
}