Removing the old snapshots of the Virtual Machine is one of the easiest ways that a virtualization administrator can reclaim storage capacity in their environment. Unlike reclaiming other resources like CPU or Memory, deleting old snapshots doesn’t require downtime. Now, many of us are guilty of having snapshots that are months old, and sometimes for…
In the world of Java development, creating Plain Old Java Objects (POJOs) from XML Schema Definition (XSD) files is a common task. This process can be time-consuming and error-prone if done manually. Fortunately, there are several tools available that can automate this process, allowing developers to generate Java POJOs directly from XSD schemas. In this…
There is an updated rolled out for chrome today which adds adds a new menu in the top-right of the chrome browser that allows the user to manages the user accounts. Many people feels it as ugly and a bit obnoxious, If you are the one who doesn’t switch the accounts often here is the…
You can write the power shell modules through scripts (Script Modules) or through c# code (Binary modules) Script modules can have any valid PS code and save as .psm1 Binary modules can be any assembly that contain cmdlet classes (.dll) the assembly would be imported to powershell and use the commands In this post am…
When i was working on a WIX, i encountered some issue in installing the application (REST based webservice), my service is not started and later identified that the port number which i set in the application is already used by another application To identify whether the port is in use, i used the Socket Class…
EHCache is an open-source caching library for Java applications. To integrate EHCache into a Spring Boot application, add the dependency in pom.xml, configure EHCache with a CacheManager bean, enable caching using @EnableCaching, define caches using @Cacheable, and test the implementation with a Spring MVC controller.