Search This Blog

Sunday, December 27, 2015

Create name less folder in windows

To create name less folder in windows using any keyboard layout:


Step 1: Open run dialog box using windows+R.

Step 2: Type charmap to open the character map utility.

Step 3: Search for empty character/hidden characters boxes as shown in figure below:


Step 4: Click on select and the click on copy.

Step 5: Create a new folder and rename it using the copied character by pasting the content in name.

That all!!!!




Monday, August 31, 2015

Fix BindException

We generally get this exception while working with tomcat,jboss or any other program when we try to run these programs on already occupied port.

To fix it, either we can change the port or we can force fully kill the running application to free the required port.

In this article , i will discuss how we can fix it by killing the already running process.

To fix it, we first need to find out the original process which has occupied the port.Once we get our process, its just a single command task to kill it.

To do so:


  • Run the command prompt in elevator mode (Administrator mode)
  1. Search cmd in the start panel and right click on it.
  2. Click on :Run as administrator to start the command prompt with administrative privileges.

Type netstat -anob | findstr "8080" and press Enter 


    • Here "8080" is the port number . Similarly to find process running on 14870, you can use netstat -anob | findstr "14870"
    • Here process id is 7884 ,displayed at last.
    • If you want to check the process name and other details about this,
      • Type tasklist /fi "pid eq 7884"
  • To forcefully kill this process, type taskkill /pid  7884 /f and press Enter.
Its done :) 


Monday, March 23, 2015

Increase internet Browsing speed (IE BROWSING SPEED)

We can easily increase the network connection speed by making slight changes in registry.
To do the same follow these steps:


Open RUN dialog box(windows+r)

>>Type regedit and press enter.


expand the tab HKEY_CURRENT_USER by 
double click

Double click on Software to expand it.



Double click on Microsoft to expand it.


Double click on Windows to expand it.
Double click on CurrentVersion to expand it. Double click on InternetSettings to expand it.
Right click on the right pane and create a new DWRD


Rename it as MaxConnectionsPerServer

Double click it and set its value 80

NOTE: Higher the value, the better the speed 

Create another DWORD and name it MaxConnectionsPer1_0Server



Double click it and set its value 50
You are done here.



Just restart your Internet Explorer and you are done