Skip to main content

Posts

How to speed up internet connection using CMD.

Every day we use Internet for gathering information or for downloading movies,songs or for other purposes,as a result at some point(time) in the future your may feel that your internet connection has been slowed down due to the usage of it.At that situation you can speed up your Internet connection by entering some commands in cmd. So Let see how to do it. Steps: 1.Open RUN and type CMD in it and Hit enter( Recommended to Run the CMD using administrator rights ). 2.Now in that type " cd/ " or "cd c:\windows\system32" and hit enter. 3.Enter " netsh int tcp show global " in the command prompt to view the TCP(Transmission control protocol) global parameters as shown below. 4.In order to increase the internet change the " Chimney " variable value to " Enabled ".In order to change enter the following command and hit enter netsh int tcp set global chimney=enabled 5.Similarly change the Auto-Tuning variable value to " ...

How to find MAC address on windows 7 & 8 in 2 ways.

Hi guys in this session we are going to talk about MAC address and how to find it in windows 7 & 8.So lets see . A MAC Address (commonly known as Media access control address ) is a number or address which is associated to your Network adapters(Hardware) or it is the address which you need to provide to a router in order to connect to a network.It is also known as Hardware address (since it is associated to Network adapter), Physical address or BIA(Burned in address).Normally MAC address compose of 6 characters which are separated by colons and sometimes '-'.In order to find the MAC address of a particular Network adapter on your PC or laptops follow the 2 ways which are provided below. Methods: Method-1: 1.Open RUN using Administrative rights(Recommended) and type " cmd " in it. 2.Now in the cmd type " ipconfig /all " and hit enter.Now a list of network address will be shown. 3.From the list find " Physical address " under n...

How to Add Third-party program shortcuts to "My computer" window.

When ever we install a third party program on our PC's we try to create a shortcut on the Desktop or any  other locations like Downloads,Documents folder etc., in order to ease our work or for quick accessibility.Apart from creating shortcuts at different locations and folders,have you ever tried to create shortcut of third-party programs on "My computer" window(because one cannot add a shortcut to "My computer" window).Even though if you want to create a shortcut in the normal way,one cannot create a shortcut on "My computer"(By dragging) but don't worry in this tutorial i am gonna show you how to add shortcuts to "My computers" in windows(7,8).It's very easy to add them,so lets see how to add them. Steps: 1.Open Run (Win+R) and enter the below command and hit enter. %appdata%\microsoft\Windows\Network Shortcuts  or browse to C:\Users\CHINNU\AppData\Roaming\microsoft\Windows\Network Shortcuts   2.Now a window will pop...

How to Create you own custom Chrome app-2 ways.

Google Chrome is the most common web browser which is used all around the world due to its speed and compatibility with our systems.As a result day by day new type of Apps and Extensions are released in to chrome web store.But have you ever tried to make one of your own App and Extension? If not in this tutorial i am gonna show you how to make your own Chrome app and Extension for you site or any other site with in Minutes using Manifest.json file.So let's see how to do this. Steps: 1.Create a New Folder any where on your Pc and name it as like " Worldtech360 chrome Apps " or " Chrome Apps and Extensions ".Now create a Sub folder and name it with your site. 2.Open the Sub folder which you have created and create a new " Text document ".Now we are going to convert this text document in to Manifest.json. 3.Open the Text document and copy the below code in it.   { "manifest_version": 2, "name": "Web site name...

How to Encrypt Computer Files using True crypt in windows 7.

Now a days its mandatory that we keep our files secure from others when we are carrying out a business whether it is small or big.In order to secure the data that is related to our business we try to use lot of software i.e paid and full versions.Some of them may work or may not work and some time you try to encrypt a file manual and again try to decrypt it using some tools(Manually).But it takes lots of time and experience to do it.But in this post i am gonna show you how to secure your files using True crypt.True crypt is  free software which is available for all platforms.So lets see how to do this. Steps to encrypt files using True crypt: Video tutorial: 1.Requirements: True crypt( click here ). Administrative Rights. 2.Now open the True crypt and click on create volume(This volume act as Encrypted file container). 3.As we are going to create a completely new volume we gonna choose " Create an encrypted file container " and click next. 4.Now you can ch...

How to Save a Host file in windows 7

Hi friends welcome back to worldtech360. In this tutorial i am gonna show you how to save a host file in windows 7,you can follow the same procedure in windows 8.Normally most of the people find difficult in saving the host files because when ever they try to save it,a window will pop up showing " Access denied "  even though you opened the file using a Full fledged Administrative account (The host file is normally used to bypass the DNS server or  to redirect a particular domain or to block a particular website).So lets see how to save it. Steps to save a host file: 1.Click on start button and type " Notepad " in the search box.Open it using Administrative rights (Recommended).                                 You can also check :Energy Diagnostic report in windows 2.Now click on File > Open in notepad.Now browse to the host file .The path for the Host file is : C:\Windows\System32\...

How to get a list of software's that are installed on your PC.

Every day we spend our time by chatting or talking with our friends. During that conversation between you and your friend,your friend may ask you about the list of different types of software's that are installed on your computer.At that time you can you can give him the List of software that are residing on your PC by running a single command in Windows powershell. So lets see how to do this. Steps: 1.Click on start button and type " windows powershell " or " powershell " and Run it with Administrative rights. 2.Enter the below command in it and hit enter and wait for few seconds to see the list of software's on your computer as shown below.  Get-WmiObject -Class Win32_Product | Select-Object -Property Name 3. In order to export the list of software enter the below code in the powershell. Get-WmiObject -Class Win32_Product | Select-Object -Property Name > C:/FFmpeg/a.txt NOTE :In the above code change " C://FFmpeg/a.txt ...