Month: July 2019

How to enable Hyper-V in Windows 10

Hyper-V Windows Features

Hyper-V is a virtualization technology from Microsoft Corporation available on Windows 10 Pro, Enterprise, and Education. Windows 10 allows you to create one or multiple virtual machines to install and run different OS on the same physical hardware. Verifying Hyper-V enabled or not through command prompt Open command prompt, by pressing windows+R, then enter cmd […]

How to check Java Heap Memory in windows system

Find Minimum Heap Memory Open windows command prompt and then enter the following command. javaw -XX:+PrintFlagsFinal | find “InitialHeapSize” Ouput Find Maximum Heap Memory Open windows command prompt and then enter the following command. javaw -XX:+PrintFlagsFinal | find “MaxHeapSize” Output Find ThreadStackSize , HeapSizePerGCThread Memory Open windows command prompt and then enter the following command. […]