You can set to automatically clear many recorded contents of Temporary Internet files when you close Internet Explorer (Microsoft Web Browser).
1. Open Internet Explorer
2. Select Tools
3. Click Internet Options...
4. Select Advanced Tab
5. Check in the item name is Empty Temporary Intenet Files folder when browser is closed, in Security section (nearly bottom).
6. Click OK button
Sunday, September 30, 2007
Empty Temporary Intenet Files on Internet Explorer
How to clear Temporary Internet Files on Internet Explorer
When you travel internet with Internet Explorer (Microsoft Browser), Many contents of files are recorded in your computer.
Then you have finished internet, you can clear recording contents :-
1. Open Internet Explorer
3. Click Internet Options...
4. Select General Tab
5. Click Delete Files button, in Temporary Internet Files section.
Then you have finished internet, you can clear recording contents :-
1. Open Internet Explorer
3. Click Internet Options...
4. Select General Tab
5. Click Delete Files button, in Temporary Internet Files section.
This will delete all recorded files.
How to check your network port is open
You can check network port is open in your computer (network port may be close by firewall block this port) .
However you can check your port is available for your computer connection in:
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
telnet X.X.X.X PP
X.X.X.X = your IP Address
you can check your IP Address
http://durion.blogspot.com/2007/09/check-ip-address-on-windows-system.html
PP = Network Port
80 = HTTP (to access Website)
21 = FTP (to access File Transfer)
25 = SMTP (to access E-Mail)
Etc.
3. If no problem, the result may be blank or show something
4. If port is unavailable or not open, the resut show as
Connecting To X.X.X.X ... Could not open connection to the host, on port PP: connect failed
However you can check your port is available for your computer connection in:
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
telnet X.X.X.X PP
X.X.X.X = your IP Address
you can check your IP Address
http://durion.blogspot.com/2007/09/check-ip-address-on-windows-system.html
PP = Network Port
80 = HTTP (to access Website)
21 = FTP (to access File Transfer)
25 = SMTP (to access E-Mail)
Etc.
3. If no problem, the result may be blank or show something
4. If port is unavailable or not open, the resut show as
Connecting To X.X.X.X ... Could not open connection to the host, on port PP: connect failed
How to simply check IP network connection
You can check IP network connection on Windows System with command as :-
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
ping IP Address or Website
3. If no problem, the result show,
Reply from x.x.x.x bytes=32 time=700ms TTL=236
-------------------------------------------------------
note:
x.x.x.x = IP Address or IP Address from Website

note:
By defaut, this command run three times.
If you need more, you can use command
ping IP Address or Website -n count
count = number of command to run
-------------------------------------------------------
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
ping IP Address or Website
3. If no problem, the result show,Reply from x.x.x.x bytes=32 time=700ms TTL=236
-------------------------------------------------------
note:
x.x.x.x = IP Address or IP Address from Website

note:
By defaut, this command run three times.
If you need more, you can use command
ping IP Address or Website -n count
count = number of command to run
-------------------------------------------------------
Change DNS setting on Wireless card via command line (MS Windows)
You can simply change DNS Address on Windows System in use this command
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set dns "Wireless Network Connection" static X.X.X.X
-------------------------------------------------------
note:
X.X.X.X = DNS Server Address (Primary/Preferred)
-------------------------------------------------------
Additional:
(a) Type command
netsh interface ip add dns "Wireless Network Connection" Y.Y.Y.Y
-------------------------------------------------------
note:
Y.Y.Y.Y = DNS Server Address (Secondary/Alternate)
-------------------------------------------------------
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set dns "Wireless Network Connection" static X.X.X.X
-------------------------------------------------------
note:
X.X.X.X = DNS Server Address (Primary/Preferred)
-------------------------------------------------------
Additional:
(a) Type command
netsh interface ip add dns "Wireless Network Connection" Y.Y.Y.Y
-------------------------------------------------------
note:
Y.Y.Y.Y = DNS Server Address (Secondary/Alternate)
-------------------------------------------------------
Change DNS setting on LAN card via command line (MS Windows)
You can simply change DNS Address on Windows System in use this command
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set dns local static X.X.X.X
-------------------------------------------------------
note:
X.X.X.X = DNS Server Address (Primary/Preferred)
-------------------------------------------------------
Additional:
(a) Type command
netsh interface ip add dns local Y.Y.Y.Y
-------------------------------------------------------
note:
Y.Y.Y.Y = DNS Server Address (Secondary/Alternate)
-------------------------------------------------------
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set dns local static X.X.X.X
-------------------------------------------------------
note:
X.X.X.X = DNS Server Address (Primary/Preferred)
-------------------------------------------------------
Additional:
(a) Type command
netsh interface ip add dns local Y.Y.Y.Y
-------------------------------------------------------
note:
Y.Y.Y.Y = DNS Server Address (Secondary/Alternate)
-------------------------------------------------------
Change Network Setting to DHCP via command line (MS Windows)
If you can simply change network setting to DHCP on Windows System for receive the automatic IP Address, you can use in command
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type 1st command
3. Type 2nd command
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type 1st command
- for LAN cable (Local Area Connection)
- for Wireless LAN
3. Type 2nd command
- for LAN cable (Local Area Connection)
netsh interface ip set dns local dhcp
- for Wireless LAN
netsh interface ip set dns "Wireless Network Connection" dhcp
Change Wireless IP Address via command line (MS Windows)
If you not open GUI to change IP Address in Wireless Network Card on Windows System in many steps, you can use in command
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set address "Wireless Network Connection" static A.A.A.A B.B.B.B C.C.C.C 1
--------------------------
note:
A.A.A.A = IP Address
B.B.B.B = Subnet Mask
C.C.C.C = Gateway
--------------------------
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set address "Wireless Network Connection" static A.A.A.A B.B.B.B C.C.C.C 1
--------------------------
note:
A.A.A.A = IP Address
B.B.B.B = Subnet Mask
C.C.C.C = Gateway
--------------------------
Check IP Address on Windows System
You can check your IP Address on Windows System with:-
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command ipconfig
3. That show Window IP Configuration as
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command ipconfig
3. That show Window IP Configuration as
- Ethernet adapter Local Area Connection for LAN cable
- Ethernet adapter Wireless Network Connection for Wireless LAN
4. Your IP Address show in line name is
IP Address . . . . . . . . . . . . : xxx.xxx.xxx.xxx
Change LAN IP Address via command line (MS Windows)
If you not open GUI to change IP Address on Windows System in many steps, you can use in command
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set address local static A.A.A.A B.B.B.B C.C.C.C 1
--------------------------
note:
A.A.A.A = IP Address
B.B.B.B = Subnet Mask
C.C.C.C = Gateway
--------------------------
1. Open Command Prompt
http://durion.blogspot.com/2007/09/how-to-use-command-prompt-on-ms-windows.html
2. Type command
netsh interface ip set address local static A.A.A.A B.B.B.B C.C.C.C 1
--------------------------
note:
A.A.A.A = IP Address
B.B.B.B = Subnet Mask
C.C.C.C = Gateway
--------------------------
Subscribe to:
Comments (Atom)



