<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>Solutions for your computers</title><description>We provides many things about the problems and solutions for you</description><managingEditor>noreply@blogger.com (computers)</managingEditor><pubDate>Wed, 6 Nov 2024 09:45:34 +0700</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">20</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://antiviruscomputers.blogspot.com/</link><language>en-us</language><itunes:explicit>yes</itunes:explicit><itunes:keywords>Antivirus,Free,Antivirus,Virus,Software,Free,Software,Computer,Spyware,AntiSpyware,Adware</itunes:keywords><itunes:subtitle>This Blog provide to overcome your computers problem</itunes:subtitle><itunes:category text="Technology"><itunes:category text="Software How-To"/></itunes:category><itunes:owner><itunes:email>stumbler.neil@gmail.com</itunes:email></itunes:owner><item><title>Mikrotik DUAL WAN Load Balancing using PCC method</title><link>http://antiviruscomputers.blogspot.com/2014/12/mikrotik-dual-wan-load-balancing-using.html</link><pubDate>Wed, 31 Dec 2014 02:23:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-7321548441576694749</guid><description>Now,I will try to share for about Load Balancing Mikrotik by using PCC method.&lt;br /&gt;
 &lt;br /&gt;
We can make these example IP's bellow&lt;br /&gt;
&lt;b&gt;&lt;i&gt;Local IP =192.168.0.1 &lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;i&gt;DSL MODEM IP’S :&lt;br /&gt;DSL MODEM 1 = 192.168.1.1&lt;br /&gt;DSL MODEM 2 = 192.168.2.1&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
So, get the script now&lt;br /&gt;
/ip address&lt;br /&gt;add address=192.168.0.1/24 network=192.168.0.0 broadcast=192.168.0.255 interface=Local&lt;br /&gt;add address=192.168.1.2/24 network=192.168.1.0 broadcast=192.168.1.255 interface=WAN1&lt;br /&gt;add address=192.168.2.2/24 network=192.168.2.0 broadcast=192.168.2.255 interface=WAN2&lt;br /&gt;
&lt;br /&gt;
/ip dns set allow-remote-requests=yes cache-max-ttl=1w cache-size=5000KiB max-udp-packet-size=512 servers=221.132.112.8,8.8.8.8&lt;br /&gt;
&lt;br /&gt;
/ip firewall mangle&lt;br /&gt;add chain=input in-interface=WAN1 action=mark-connection new-connection-mark=WAN1_conn&lt;br /&gt;add chain=input in-interface=WAN2 action=mark-connection new-connection-mark=WAN2_conn&lt;br /&gt;&lt;br /&gt;add chain=output connection-mark=WAN1_conn action=mark-routing new-routing-mark=to_WAN1&lt;br /&gt;add chain=output connection-mark=WAN2_conn action=mark-routing new-routing-mark=to_WAN2&lt;br /&gt;&lt;br /&gt;add chain=prerouting dst-address=192.168.1.0/24 action=accept in-interface=Local&lt;br /&gt;add chain=prerouting dst-address=192.168.2.0/24 action=accept in-interface=Local&lt;br /&gt;&lt;br /&gt;add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses-and-ports:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes&lt;br /&gt;add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses-and-ports:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes&lt;br /&gt;&lt;br /&gt;add chain=prerouting connection-mark=WAN1_conn in-interface=Local action=mark-routing new-routing-mark=to_WAN1&lt;br /&gt;add chain=prerouting connection-mark=WAN2_conn in-interface=Local action=mark-routing new-routing-mark=to_WAN2&lt;br /&gt;&lt;br /&gt;/ip route&lt;br /&gt;add dst-address=0.0.0.0/0 gateway=192.168.1.1 routing-mark=to_WAN1 check-gateway=ping&lt;br /&gt;add dst-address=0.0.0.0/0 gateway=192.168.2.1 routing-mark=to_WAN2 check-gateway=ping&lt;br /&gt;&lt;br /&gt;add dst-address=0.0.0.0/0 gateway=192.168.1.1 distance=1 check-gateway=ping&lt;br /&gt;add dst-address=0.0.0.0/0 gateway=192.168.2.1 distance=2 check-gateway=ping&lt;br /&gt;&lt;br /&gt;/ip firewall nat&lt;br /&gt;add chain=srcnat out-interface=WAN1 action=masquerade&lt;br /&gt;add chain=srcnat out-interface=WAN2 action=masquerade&lt;br /&gt;
&lt;br /&gt;
&lt;div class="container"&gt;
&lt;div class="line number1 index0 alt2"&gt;
&lt;code class="plain plain"&gt;add
 chain=prerouting dst-address-type=!local in-interface=Local 
per-connection-classifier=both-addresses-and-ports:2/0 
action=mark-connection new-connection-mark=WAN1_conn passthrough=yes&lt;/code&gt;&lt;/div&gt;
&lt;div class="line number2 index1 alt1"&gt;
&lt;code class="plain plain"&gt;add
 chain=prerouting dst-address-type=!local in-interface=Local 
per-connection-classifier=both-addresses-and-ports:2/1 
action=mark-connection new-connection-mark=WAN2_conn passthrough=yes&lt;/code&gt;&lt;/div&gt;
&lt;div class="line number3 index2 alt2"&gt;
&lt;code class="plain plain"&gt;add
 chain=prerouting dst-address-type=!local in-interface=Local 
per-connection-classifier=both-addresses-and-ports:2/2 
action=mark-connection new-connection-mark=WAN2_conn passthrough=yes&lt;/code&gt;&lt;/div&gt;
&lt;div class="line number3 index2 alt2"&gt;
&lt;code class="plain plain"&gt;&amp;nbsp;&lt;/code&gt;&lt;/div&gt;
&lt;div class="line number3 index2 alt2"&gt;
&lt;code class="plain plain"&gt;&amp;nbsp;&lt;/code&gt;&lt;/div&gt;
&lt;div class="line number3 index2 alt2"&gt;
&lt;code class="plain plain"&gt;&amp;nbsp;&lt;/code&gt;&lt;/div&gt;
&lt;div class="line number3 index2 alt2"&gt;
&lt;code class="plain plain"&gt;&amp;nbsp;&lt;/code&gt;&lt;/div&gt;
&lt;div class="line number3 index2 alt2"&gt;
&lt;code class="plain plain"&gt;ok,Good Luck &lt;/code&gt;&lt;/div&gt;
&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Jual PC Murah di Batam</title><link>http://antiviruscomputers.blogspot.com/2014/12/jual-pc-murah-di-batam.html</link><pubDate>Fri, 26 Dec 2014 23:47:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-7370792352865535610</guid><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7rIjnLrPvxkVwJxj2aKFHHPtH90mGplWiNn4CX6qMEhE6TXoSViwJ8jVUt608MLg2mRwGv9zA9OjTvzsY56E6ZQuFDxarY_Lk7-_IylVCR8RNxZVAWlTr17j8HURvoKpGnl7vv7Unrhw/s1600/IMG_20141115_011514.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7rIjnLrPvxkVwJxj2aKFHHPtH90mGplWiNn4CX6qMEhE6TXoSViwJ8jVUt608MLg2mRwGv9zA9OjTvzsY56E6ZQuFDxarY_Lk7-_IylVCR8RNxZVAWlTr17j8HURvoKpGnl7vv7Unrhw/s1600/IMG_20141115_011514.jpg" height="240" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Dijual Murah :&lt;br /&gt;
&lt;br /&gt;
Desktop PC Branded Pentium D 3.4 Ghz &lt;br /&gt;
Ram 1Gb&lt;br /&gt;
Hardisk 80 Gb&lt;br /&gt;
Harga 600rb&lt;br /&gt;
&lt;b&gt;stock banyak &lt;/b&gt;&lt;br /&gt;
Hub 081270058384&lt;br /&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7rIjnLrPvxkVwJxj2aKFHHPtH90mGplWiNn4CX6qMEhE6TXoSViwJ8jVUt608MLg2mRwGv9zA9OjTvzsY56E6ZQuFDxarY_Lk7-_IylVCR8RNxZVAWlTr17j8HURvoKpGnl7vv7Unrhw/s72-c/IMG_20141115_011514.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title/><link>http://antiviruscomputers.blogspot.com/2013/07/jual-laptop-murah-sony-vaio-dijual.html</link><pubDate>Fri, 26 Jul 2013 00:58:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-2743067112050019760</guid><description>&lt;a href="http://iklangratisindonesia.blogspot.com/" target="_blank"&gt;Jual Laptop&amp;nbsp; Murah Sony Vaio&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="fullpost"&gt;Dijual Laptop Sony Vaio&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiLE7ueZbXZNLnM56J7KkkKgj5Iaj2Vim_dQ_8WCl_eGDgRoOmEZIKPc3mpzXshgatIlM3JQNlI1OBT4KtHDU23wlTCb1N7cydaotMt7dB0oeg3YqVlDR6-0iuhCNSO5-Cfmuq8WucpGm-/s1600/1351431989_450176632_1-Pictures-of--awsome-sony-vaio-VGN-CR353-in-pearl-white-and-execelent-condition.jpg" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiLE7ueZbXZNLnM56J7KkkKgj5Iaj2Vim_dQ_8WCl_eGDgRoOmEZIKPc3mpzXshgatIlM3JQNlI1OBT4KtHDU23wlTCb1N7cydaotMt7dB0oeg3YqVlDR6-0iuhCNSO5-Cfmuq8WucpGm-/s320/1351431989_450176632_1-Pictures-of--awsome-sony-vaio-VGN-CR353-in-pearl-white-and-execelent-condition.jpg" width="320" /&gt;&lt;/a&gt;&lt;span class="fullpost"&gt;Serie VGN-CR353&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;Core 2 duo 2.10 Ghz&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;LCD 14.1&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;Hardisk 160 Gb&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;Ram 2Gb&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;Harga 2,1 Juta&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;Hub &lt;b&gt;0812 700 583 84&lt;/b&gt;&lt;/span&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiLE7ueZbXZNLnM56J7KkkKgj5Iaj2Vim_dQ_8WCl_eGDgRoOmEZIKPc3mpzXshgatIlM3JQNlI1OBT4KtHDU23wlTCb1N7cydaotMt7dB0oeg3YqVlDR6-0iuhCNSO5-Cfmuq8WucpGm-/s72-c/1351431989_450176632_1-Pictures-of--awsome-sony-vaio-VGN-CR353-in-pearl-white-and-execelent-condition.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Load Balancing Mikrotik 2 ISP </title><link>http://antiviruscomputers.blogspot.com/2012/10/load-balancing-mikrotik-2-isp.html</link><pubDate>Tue, 9 Oct 2012 17:27:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-6394218685249132761</guid><description>&amp;nbsp;Load Balancing Mikrotik&lt;br /&gt;
&lt;br /&gt;
it's easy to make load balancing use this methods and i am sure you're all&lt;br /&gt;
will not confuse to use it.&lt;br /&gt;
this is a simple Load balancing. &lt;br /&gt;
&lt;br /&gt;
/ip firewall mangle&lt;br /&gt;
add action=mark-connection chain=input comment=”NEW Load Balance” connection-state=new disabled=no in-interface=\&lt;br /&gt;
pppoe-speedy1 new-connection-mark=ISP1 passthrough=yes&lt;br /&gt;
add action=mark-connection chain=input comment=”" connection-state=new disabled=no in-interface=pppoe-speedy2 \&lt;br /&gt;
new-connection-mark=ISP2 passthrough=yes&lt;br /&gt;
&lt;br /&gt;
add action=mark-routing chain=output comment=”" connection-mark=speedy1 disabled=no new-routing-mark=ISP1 passthrough=\&lt;br /&gt;
no&lt;br /&gt;
add action=mark-routing chain=output comment=”" connection-mark=speedy2 disabled=no new-routing-mark=ISP2 passthrough=\&lt;br /&gt;
no&lt;br /&gt;
&lt;br /&gt;
add action=mark-connection chain=prerouting comment=”" disabled=no dst-address-type=!local in-interface=local \&lt;br /&gt;
new-connection-mark=speedy1 passthrough=yes per-connection-classifier=both-addresses-and-ports:2/0&lt;br /&gt;
add action=mark-connection chain=prerouting comment=”" disabled=no dst-address-type=!local in-interface=local \&lt;br /&gt;
new-connection-mark=speedy2 passthrough=yes per-connection-classifier=both-addresses-and-ports:2/1&lt;br /&gt;
&lt;br /&gt;
add action=mark-routing chain=prerouting comment=”" connection-mark=ISP1 disabled=no in-interface=local \&lt;br /&gt;
new-routing-mark=ISP1 passthrough=yes&lt;br /&gt;
add action=mark-routing chain=prerouting comment=”" connection-mark=ISP2 disabled=no in-interface=local \&lt;br /&gt;
new-routing-mark=ISP1 passthrough=yes&lt;br /&gt;
&lt;br /&gt;
and then --&amp;gt; /Ip Firewall NAT &lt;br /&gt;
&lt;br /&gt;
/ip firewall nat&lt;br /&gt;
add action=masquerade chain=srcnat comment=”masquerade lokal network” disabled=no src-address=”local Ip ”&lt;br /&gt;
&lt;br /&gt;
/Ip route&lt;br /&gt;
&lt;br /&gt;
/ip route&lt;br /&gt;
add comment=”" disabled=no distance=1 dst-address=0.0.0.0/0 gateway=pppoe-speedy2 routing-mark=ISP2&lt;br /&gt;
add comment=”" disabled=no distance=1 dst-address=0.0.0.0/0 gateway=pppoe-speedy1 routing-mark=ISP1&lt;br /&gt;
add comment=”" disabled=no distance=1 dst-address=0.0.0.0/0 gateway=pppoe-speedy1&lt;br /&gt;
add comment=”" disabled=no distance=1 dst-address=0.0.0.0/0 gateway=pppoe-speedy2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
good luck......</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Notebook and Netbook</title><link>http://antiviruscomputers.blogspot.com/2012/05/notebook-and-netbook.html</link><pubDate>Fri, 25 May 2012 18:16:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-7757781448303363145</guid><description>What are you looking for?You can find everything &lt;a href="http://astore.amazon.com/compzone02-20?_encoding=UTF8&amp;node=5"&gt;here&lt;/a&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilHGj6RYpe9aBONCAf0i5M3oJszG1a-Q05P5zx9QR4W-94Z7ff3_a_xT12knMjP4b6RMGw1NvnUN3Gagw8VZYsTIPoTPlp3zx-Vz63lFi0u0KE8za04DyZt4tTp96MGGNUYXFVqWQYcVM/s1600/41WyRJcnooL.jpg" imageanchor="1" style="margin-left:1em; margin-right:1em"&gt;&lt;img border="0" height="240" width="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilHGj6RYpe9aBONCAf0i5M3oJszG1a-Q05P5zx9QR4W-94Z7ff3_a_xT12knMjP4b6RMGw1NvnUN3Gagw8VZYsTIPoTPlp3zx-Vz63lFi0u0KE8za04DyZt4tTp96MGGNUYXFVqWQYcVM/s320/41WyRJcnooL.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;



Just visit &lt;a href="http://astore.amazon.com/compzone02-20?_encoding=UTF8&amp;node=5"&gt;here&lt;/a&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilHGj6RYpe9aBONCAf0i5M3oJszG1a-Q05P5zx9QR4W-94Z7ff3_a_xT12knMjP4b6RMGw1NvnUN3Gagw8VZYsTIPoTPlp3zx-Vz63lFi0u0KE8za04DyZt4tTp96MGGNUYXFVqWQYcVM/s72-c/41WyRJcnooL.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Mikrotik and Internal Web Proxy</title><link>http://antiviruscomputers.blogspot.com/2012/03/mikrotik-and-internal-web-proxy.html</link><pubDate>Fri, 23 Mar 2012 01:57:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-7216966230032756117</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUILr-GerZjOd_IifNh_PCW0vYzgxx4tcwPOCWJmBgdl1A6y1f6MeW74roQCoR689blYqApoFXqO5379bD1e56vjQlIhEveObybxRtX-B0Ko8MdB95hMxvbyv6Kg7M2ZIP9qjyVKCBrAY/s1600/webproxy.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 240px; height: 320px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUILr-GerZjOd_IifNh_PCW0vYzgxx4tcwPOCWJmBgdl1A6y1f6MeW74roQCoR689blYqApoFXqO5379bD1e56vjQlIhEveObybxRtX-B0Ko8MdB95hMxvbyv6Kg7M2ZIP9qjyVKCBrAY/s320/webproxy.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5722797902378998946" /&gt;&lt;/a&gt;&lt;br /&gt;Mikrotik and Internal Web Proxy&lt;br /&gt;First,We have to enable web proxy Mikrotik&lt;br /&gt; /ip web proxy&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Next step is Setting up your Firewal&lt;br /&gt;/ip firewall Nat&lt;br /&gt;         add  chain =  srcnat  action = masquerade &lt;br /&gt;        out interface = Public&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    add chain=dstnat action=redirect to-ports=8080 protocol=tcp src-address=Your Local Ip Address in-interface=LAN dst-port=80&lt;br /&gt;&lt;br /&gt;Then setting up on Ip Firewall mangle&lt;br /&gt;&lt;br /&gt;    0 ;;; HIT TRAFFIC FROM PROXY&lt;br /&gt;    chain=output out-interface=lan&lt;br /&gt;    dscp=4 action=mark-packet&lt;br /&gt;    new-packet-mark=proxy-hit passthrough=no&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    1 ;;; UP TRAFFIC&lt;br /&gt;    chain=prerouting in-interface=lan&lt;br /&gt;    src-address=192.168.0.0/24 action=mark-packet&lt;br /&gt;    new-packet-mark=test-up passthrough=no&lt;br /&gt;    2 ;;; CONN-MARK&lt;br /&gt;    chain=forward src-address=192.168.0.0/24&lt;br /&gt;    action=mark-connection&lt;br /&gt;    new-connection-mark=test-conn passthrough=yes&lt;br /&gt;    3 ;;; DOWN-DIRECT CONNECTION&lt;br /&gt;    chain=forward in-interface=public&lt;br /&gt;    connection-mark=test-conn action=mark-packet&lt;br /&gt;    new-packet-mark=test-down passthrough=no&lt;br /&gt;    4 ;;; DOWN-VIA PROXY&lt;br /&gt;    chain=output out-interface=lan&lt;br /&gt;    dst-address=192.168.0.0/24 action=mark-packet&lt;br /&gt;    new-packet-mark=test-down passthrough=no&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Setting Simple Queue for each Client&lt;br /&gt;&lt;br /&gt;    name=”Client 1″&lt;br /&gt;    target-addresses=192.168.0.21/32&lt;br /&gt;    dst-address=0.0.0.0/0&lt;br /&gt;    interface=all&lt;br /&gt;    parent=none&lt;br /&gt;    packet-marks=test-down&lt;br /&gt;    direction=both&lt;br /&gt;    priority=8&lt;br /&gt;    queue=default-small/default-small&lt;br /&gt;    limit-at=0/0&lt;br /&gt;    max-limit=128000/384000&lt;br /&gt;    burst-limit=0/0&lt;br /&gt;    burst-threshold=0/0&lt;br /&gt;    burst-time=0s/0s&lt;br /&gt;    total-queue=default-small&lt;br /&gt;&lt;br /&gt;Let's try and leave a comment here.thanks</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUILr-GerZjOd_IifNh_PCW0vYzgxx4tcwPOCWJmBgdl1A6y1f6MeW74roQCoR689blYqApoFXqO5379bD1e56vjQlIhEveObybxRtX-B0Ko8MdB95hMxvbyv6Kg7M2ZIP9qjyVKCBrAY/s72-c/webproxy.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Jasa Instalasi Warnet</title><link>http://antiviruscomputers.blogspot.com/2012/03/jasa-instalasi-warnet.html</link><pubDate>Fri, 23 Mar 2012 01:29:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-2132527315836895502</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGYrUjvm2V9Mmq-S1N9RlnKzIt0HirtXO4rV8_aFyl-C6r-J5saAIfxfwHw5OT58HqOeorQ7gL1Ti8RZQdDPZeMvxAbeW9TVcwETsyXnCd36mJ-QmIsxFLIQVAGBjaSoshEeELSJIXJFo/s1600/warnet-vs-office.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 218px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGYrUjvm2V9Mmq-S1N9RlnKzIt0HirtXO4rV8_aFyl-C6r-J5saAIfxfwHw5OT58HqOeorQ7gL1Ti8RZQdDPZeMvxAbeW9TVcwETsyXnCd36mJ-QmIsxFLIQVAGBjaSoshEeELSJIXJFo/s320/warnet-vs-office.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5722793375932518402" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Anda ingin membuat usaha Rental warnet,Segera hub kami.Kami menyediakan Jasa instalasi dan maintenance untuk warnet.harga untuk 1 unit computer branded second dengan spesifikasi:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;pentium 4 ,Ram 1Gb ,Hardisk 40-80Gb ,vga onboard ,Lcd 17 Inc ,keyboard&amp;mouse&lt;br /&gt;harga Rp.1.300.000 &lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Hub.0812 700 58384&lt;br /&gt;&lt;span style="font-style:italic;"&gt;Neotech Computers Services ,Kota Batam,Kepulauan Riau Indonesia&lt;/span&gt; (NCS)</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGYrUjvm2V9Mmq-S1N9RlnKzIt0HirtXO4rV8_aFyl-C6r-J5saAIfxfwHw5OT58HqOeorQ7gL1Ti8RZQdDPZeMvxAbeW9TVcwETsyXnCd36mJ-QmIsxFLIQVAGBjaSoshEeELSJIXJFo/s72-c/warnet-vs-office.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Remove Virus Shortcut</title><link>http://antiviruscomputers.blogspot.com/2011/11/remove-virus-shortcut.html</link><pubDate>Tue, 8 Nov 2011 20:44:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-310448744767255394</guid><description>there are 4 Shortcut here and comes from your usb flasdisk&lt;br /&gt;Copy of Shortcut to (1).lnk&lt;br /&gt;Copy of Shortcut to (2).lnk&lt;br /&gt;Copy of Shortcut to (3).lnk&lt;br /&gt;Copy of Shortcut to (4).lnk&lt;br /&gt;1 of folders (Recycle Folder) may contains many files&lt;br /&gt;and now,how to remove it from our computers?&lt;br /&gt;try to use Ezet NOD32 On Demand Scanner,you can found it &lt;a href="http://letitbit.net/download/5152.5a01b684d856b0944a08b2ffd/nod32_20100812_5361.exe.html"&gt;here&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Optimasi Games Online</title><link>http://antiviruscomputers.blogspot.com/2010/11/optimasi-games-online.html</link><pubDate>Fri, 26 Nov 2010 00:27:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-3340868587427179984</guid><description>optimasi point blank di Mikrotik&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Pertama setting di firewall&lt;br /&gt;&lt;br /&gt;/ip firewall mangle&lt;br /&gt;add action=mark-connection chain=forward comment="Trafik Mark" disabled=no new-connection-mark=all_con passthrough=yes src-address=192.168.0.0/24&lt;br /&gt;add action=mark-connection chain=forward comment="" connection-mark=all_con disabled=no dst-port=39190-49100 new-connection-mark=pb-con passthrough=yes protocol=tcp src-address=192.168.0.0/24&lt;br /&gt;add action=mark-connection chain=forward comment="" connection-mark=all_con disabled=no dst-port=39190-49100 new-connection-mark=pb-con passthrough=yes protocol=udp src-address=192.168.0.0/24&lt;br /&gt;add action=mark-packet chain=forward comment="" connection-mark=pb-con disabled=no new-packet-mark=point-blank passthrough=no&lt;br /&gt;add action=mark-packet chain=forward comment="" disabled=no new-packet-mark=all_packet passthrough=no&lt;br /&gt;&lt;br /&gt;trus setting di Queqe tree&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/queue tree&lt;br /&gt;add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 max-limit=768k name="Download" parent=ether2 priority=8&lt;br /&gt;add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 max-limit=0 name=HTTP packet-mark=all_packet parent="Download" priority=8 queue=default&lt;br /&gt;add burst-limit=0 burst-threshold=0 burst-time=0s disabled=no limit-at=0 max-limit=0 name="Point Blank" packet-mark=point-blank parent="Download" priority=7 queue=default&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;semoga bisa berguna&lt;br /&gt;maaf kalau masih salah,mohon untuk dikoreksi&lt;br /&gt;Trims&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Load Balancing Mikrotik</title><link>http://antiviruscomputers.blogspot.com/2010/11/load-balancing-mikrotik.html</link><pubDate>Wed, 3 Nov 2010 02:37:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-6500744565106463816</guid><description>&lt;span style="font-weight:bold;"&gt;Simple Load Balancing Mikrotik&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Loadbalancer mikrotik harus ada 3 Lancard, jika menggunakan RB750 malah lebih simple. Mungil, OS MK Versi 3.29, ada 5 port LAN, upss.. pokok e mak nyuss…. Jika mnggunakan PC ya harus 3 Lancard.&lt;br /&gt;&lt;br /&gt;Ok, konfigurasi nya tidaklah terlalu sulit. Jika sudah running MK anda tinggal tambahkan 1 Lancard lagi.&lt;br /&gt;&lt;br /&gt;Langkah-langkahnya&lt;br /&gt;&lt;br /&gt;Jika anda berlangganan 2 ISP yang berbeda maka loadbalancing lah yang perlu kita lakukan, artinya kita menggabungkan 2 bandwiith yang berbeda tersebut dan di kluarkan menjadi 1 bandwith ke client.&lt;br /&gt;&lt;br /&gt;IP eth1  isp1&lt;br /&gt;&lt;br /&gt;iP eth2 ip2&lt;br /&gt;&lt;br /&gt;ip eth3  ip local ke client&lt;br /&gt;&lt;br /&gt;misal nya :&lt;br /&gt;&lt;br /&gt;ip eth1 =123.123.123.123/29 gateway 123.123.123.122&lt;br /&gt;&lt;br /&gt;ip eth2 = 122.122.122.122/29 gateway 122.122.122.121&lt;br /&gt;&lt;br /&gt;ip eth3=192.168.1.254/24&lt;br /&gt;&lt;br /&gt;skenario nya adalah ISP_2 dijadikan internet utama, Setelah mengkonfigurasi ip dan gateway 122.122.122.121, langkah selanjutnya adalah masuk winbox, klik menu ip routes, kmudian dobel klik gateway (122.122.122.121) kemudian klik panah kecil kebawah, isikan ip gateway 123.123.123.122 sehingga akan ada 2 ip gateway disana, selanjutnya klik apply, OK.&lt;br /&gt;&lt;br /&gt;Berikutnya liat di menu ip firewall NAT, nah disitu ip 122.122.122.122 pada ether2 yang sudah di nat di kopi paste, kmudian arahkan paste tersebut ke ether1, sehingga kedua ip ether1 dan ether2 di masing-masing di NAT.&lt;br /&gt;&lt;br /&gt;Langkah berikutnya ke menu queue tree, settinglah untuk download ke ip ether3 (ip lokal) dan untuk upload ke ip ether1.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;selamat mencoba&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Mikrotik Download</title><link>http://antiviruscomputers.blogspot.com/2010/09/mikrotik-download.html</link><pubDate>Fri, 24 Sep 2010 02:09:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-3459037680325462889</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2HTAATZE5b0pWkGR3oGe5PfoR2Ws-LVajtLazlokD8WKuoX2KReMvAMlD1Gw0PW2CfbEvpZhLCGuNDHykLtwPVC5Q5eKbKtYd7J2zBH4OG5Id825lHZ2UAj_R5H2OiQjF_OCxaOUK6EE/s1600/mikrotik6.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 178px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2HTAATZE5b0pWkGR3oGe5PfoR2Ws-LVajtLazlokD8WKuoX2KReMvAMlD1Gw0PW2CfbEvpZhLCGuNDHykLtwPVC5Q5eKbKtYd7J2zBH4OG5Id825lHZ2UAj_R5H2OiQjF_OCxaOUK6EE/s320/mikrotik6.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5520190678320745522" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;Mikrotik Download&lt;br /&gt;&lt;br /&gt;Mikrotik is a part of Linux OS,many people use it for server so the internet connection will be more fast and we can manage our network connection.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if you wanna try to use it,you must be carefull or you will be sick...,he he he&lt;br /&gt;I mean it's so dificult thing,but you may try,try and try again.&lt;br /&gt;good luck....</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2HTAATZE5b0pWkGR3oGe5PfoR2Ws-LVajtLazlokD8WKuoX2KReMvAMlD1Gw0PW2CfbEvpZhLCGuNDHykLtwPVC5Q5eKbKtYd7J2zBH4OG5Id825lHZ2UAj_R5H2OiQjF_OCxaOUK6EE/s72-c/mikrotik6.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Install Mikrotik</title><link>http://antiviruscomputers.blogspot.com/2010/09/install-mikrotik.html</link><pubDate>Fri, 24 Sep 2010 01:31:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-3456508486473036964</guid><description>&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Install Mikrotik&lt;br /&gt;&lt;br /&gt;How to install Mikrotik as Server??Let's try to learn together,OK ???&lt;br /&gt;&lt;br /&gt;firstly,we have to looking for 1 unit of cpu,it can be Pentium III or Pentium IV with 2 Lancard.&lt;br /&gt;insert Mikrotik CD to the cdroom,Setting boot to CDROOM,choose a for all services what your choices,then press i to install it,then follow the steps untill press ENTER to reboot your pc,You have to remove your Mikrotik CD from CDROOM.&lt;br /&gt;&lt;br /&gt;Configuration Mikrotik&lt;br /&gt;&lt;br /&gt;Login Mikrotik&lt;br /&gt;user : admin&lt;br /&gt;pass : admin&lt;br /&gt;&lt;br /&gt;Firstly ,type /interface print to overview you lan card&lt;br /&gt;      type /setup&lt;br /&gt;      choose ip address then you make an ip address for your local network&lt;br /&gt;      for example 192.168.1.1/24&lt;br /&gt;          network  192.168.1.1&lt;br /&gt;          Broadcast192.168.1.100&lt;br /&gt;secondly ,setting your DNS IP:  IP-DNS-Setting&lt;br /&gt;                        example:203.130.194.74&lt;br /&gt;                                202.134.0.135&lt;br /&gt;third ,Setting Your DHCP Server&lt;br /&gt;       IP-DHCP Server&lt;br /&gt;       Klick Setup then Next-Next ,untill successfully&lt;br /&gt;&lt;br /&gt;Fourth ,Setting Your firewall &lt;br /&gt;       IP-Firewall then choose Nat&lt;br /&gt;       Klick +(Plus)&lt;br /&gt;       choose srcnat,action masquerade&lt;br /&gt;&lt;br /&gt;and the last setting is make your dial up Modem &lt;br /&gt;Klick ppp-choose PPOE Client then you have to insert you username of Speedy the the password too.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Generic Host 32 Error</title><link>http://antiviruscomputers.blogspot.com/2009/11/generic-host-32-error.html</link><pubDate>Tue, 17 Nov 2009 09:26:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-7320312276924687389</guid><description>&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;This is a kind of Trojan attack on Network cause Stop Connection to acces Internet.if you wanna resolve it Do it immediatelly.&lt;br /&gt;First,Unplug Lan cble(Internet Connection) then Klick Start-Run-Type Regedit&lt;br /&gt;Then Choose HKLM-SYSTEM-Current Control Set-Services-NetBT-Parameters (in the Right Box  &lt;br /&gt;choose TransportBindName and delete value data of it.&lt;br /&gt;Next Step HKLM-Software-Microfoft-Ole (in the right Box Choose EnableDCOM and change the value from Y to N.After close Regedit Restart your PC,and You can use Internet as well as possible.&lt;br /&gt;&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Remove ~A~m~B~u~R~a~D~u~L~ Virus</title><link>http://antiviruscomputers.blogspot.com/2009/09/kill-amburadul-virus.html</link><category>7th Tips</category><pubDate>Wed, 9 Sep 2009 02:30:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-5596100103709889784</guid><description>If we wanna remove the virus,we have to use:&lt;br /&gt;1.Hijack this&lt;br /&gt;2.The Killer Machine&lt;br /&gt;3.Fix Regitry&lt;br /&gt;and the process is &lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;1.Turn off system Restore&lt;br /&gt;2.Run Hijack this to find the first file of virus&lt;br /&gt;3.Run The Killer machine to remove all of virus&lt;br /&gt;4.Run again Hijack This to remove virus from startup menu&lt;br /&gt;&lt;br /&gt;in many case,hijack this program make our computers hung,so to end the process just kill it by task manager.After finishing the steps above,use repair.inf(right klick then choose install)&lt;br /&gt;Good Luck&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Error Generic Host 32</title><link>http://antiviruscomputers.blogspot.com/2009/06/error-generic-host-32.html</link><category>6th Tips</category><pubDate>Tue, 30 Jun 2009 03:49:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-2571758974334636383</guid><description>&lt;span style="font-weight:bold;"&gt;Error Generic Host 32&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It's make trouble to internet connection ,and we have to restart our pc if we wanna use internet connection,so how to fix it??&lt;br /&gt;&lt;br /&gt;there are 2 solutions here &lt;br /&gt;&lt;br /&gt;1.First Tips&lt;br /&gt;   Start - Run - Regedit&lt;br /&gt;   HKEY_LOCAL_MACHINE&gt;SYSTEM&gt;CurrentControlSet001&gt;Services&gt;Browser&gt;Parameters&lt;br /&gt;   Find the Key below:&lt;br /&gt;     Name : IsDomainMaster &lt;br /&gt;     then set it false&lt;br /&gt;   Then Restart Your Computers&lt;br /&gt;2.Seconds Tips&lt;br /&gt;   Start - Run - CMD Press Enter&lt;br /&gt;   Type netsh press enter&lt;br /&gt;   Type winsock press enter&lt;br /&gt;   Type Reset Press Enter&lt;br /&gt;    Then Restart Your PC&lt;br /&gt;&lt;br /&gt;Good Luck..............</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Connect PC to PC</title><link>http://antiviruscomputers.blogspot.com/2009/06/connect-pc-to-pc.html</link><category>5th Tips</category><pubDate>Wed, 24 Jun 2009 11:39:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-1124032061852122702</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf-TPaB30T31Sn8EWEInWQbwxa6Ckt1X7Non2pwu3AdMTAZCyiGFlTrIbrBTUv-mbCyiiVf25tlHEsPo9pj36OD-RTiSKbaAxLhjQr2wcOrMHERq9mxqcYrM2qWtxCsjO6ogUhVwkB_pA/s1600/cable+cross.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 231px; height: 253px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf-TPaB30T31Sn8EWEInWQbwxa6Ckt1X7Non2pwu3AdMTAZCyiGFlTrIbrBTUv-mbCyiiVf25tlHEsPo9pj36OD-RTiSKbaAxLhjQr2wcOrMHERq9mxqcYrM2qWtxCsjO6ogUhVwkB_pA/s320/cable+cross.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5592687385186030946" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you have two or more Computers in your home and you'll make a share it with other&lt;br /&gt;you may try this way.&lt;br /&gt;&lt;br /&gt;Open My Network Places - Create a connection - Welcome to the New connection Wizard (Klick Next) - choose Set up an advanced connection (next)- Connect directly to another computer (Next)- you have choose which one the role for this computer (Host or Guest)then you have to select the Cable connection.If you select the fisrt computers as Host you must make sure the other computer as user.You can see the the scheme of Lan cable below.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf-TPaB30T31Sn8EWEInWQbwxa6Ckt1X7Non2pwu3AdMTAZCyiGFlTrIbrBTUv-mbCyiiVf25tlHEsPo9pj36OD-RTiSKbaAxLhjQr2wcOrMHERq9mxqcYrM2qWtxCsjO6ogUhVwkB_pA/s72-c/cable+cross.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Remove BULU BEBEK  Virus</title><link>http://antiviruscomputers.blogspot.com/2009/06/kill-bulu-bebek-virus.html</link><category>4th Tips</category><pubDate>Mon, 1 Jun 2009 23:46:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-2002368973475504703</guid><description>Bulu Bebek Virus is as the same of other dangerous Virus,its almost the same with "COPY EXE" Virus,it's really make us crazy......How to remove it?????&lt;br /&gt;&lt;br /&gt;there are many steps here:&lt;br /&gt;&lt;br /&gt;1.Turn off your System Restore&lt;br /&gt;2.Run Process XP to see the first BULU BEBEK virus File&lt;br /&gt;3.Run The Killer Machine to remove first BULU BEBEK virus File&lt;br /&gt;4.Run Search to find the duplicat of Virus(exe file-Icon=folder-size 53kb)&lt;br /&gt;5.Run Registry Fx(from Ansav Standar/Antivirus -Plugin) to Repair Registry&lt;br /&gt;6.Repair Cmd&lt;br /&gt;&lt;br /&gt;good Luck</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Show Hidden Files</title><link>http://antiviruscomputers.blogspot.com/2009/04/show-hidden-files.html</link><category>3rd Tips</category><pubDate>Thu, 30 Apr 2009 19:43:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-1782586595645474470</guid><description>&lt;span style="font-weight: bold;"&gt;How to enable hidden Files&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We know that many virus is running by the internet connection,it can be dangerous &lt;a href="http://feeds2.feedburner.com/AntivirusClinic"&gt;virus&lt;/a&gt; or a damn litle virus.But,two kind of virus was exactly dangerous for our windows operating system,So...,How to solved it??&lt;br /&gt;&lt;br /&gt;Firstly,You have to enable your hidden file option(on the windows task bar)tool-folder option-view-Hidden files and folder then unmark HIDDEN EXTENSIONS FOR KNOWN FIE TYPES-unmark HIDE PROTECTED OPERATING SYSTEM FILES)If it can't done you may try ANSAV antivirus(you can download it in the antivirus Download bellow),how to use it??&lt;br /&gt;&lt;br /&gt;Enable show hidden files by Ansav Antivirus&lt;br /&gt;&lt;br /&gt;Run Ansav ,then Klick Plugin - Hidden Revealer-select target to be reveal-then klick start.After the process finish,check it out,Your Hidden system file will be appear.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Remove Autorun Virus</title><link>http://antiviruscomputers.blogspot.com/2009/04/kill-autorun-virus.html</link><category>2nd Tips</category><pubDate>Tue, 28 Apr 2009 21:26:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-4047674314080116162</guid><description>&lt;span style="font-weight: bold;"&gt;How to remove Autorun virus &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What's that,Body?I think you're all know about this,isn't it?If we have a removable disk(USB Flasdisk,Memory Card) a problem will be appear,sometimes maybe.Try to plug your Removable disk to your Computer,if ijavascript:void(0)n the autoplay dialog appear "Run The Program" DON"T TRY to Klick OK,but Klicks Cancel,Because if you klick OK,the VIRUS from inside of The removable disk will Run automaticly,believe me people.If the kind of virus is a litle Damn Virus,it will be Ok,but if it's a Dangerous Virus you can be stress,Your computer may can restart ASAP.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;How to Kill it???&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Ok Body,just straight to the topic now.After you cancel the autoply your removable disk,klick your Computer,then in the task bar klick TOOL-FOLDER OPTION-VIEW.then in the box HIDDEN files and Folder Choose SHOW HIDDEN FILES AND FOLDER.then UNMARK hide extensions for unknown file types and then UNMARK hide protected operating system files. Then Klick OK.&lt;br /&gt;The last important is change your removable Disk name.then open it up by using right klick on your mouse(Explore).Then after opening your removable disk,you can see&lt;br /&gt;the autorun files and .....exe files,just deleted both of files,then closed your removable disk.safely your removable disk,unplug it,then plug it again,I am sure in the autoplay dialog won't appear Run the Program.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item><item><title>Remove Virus</title><link>http://antiviruscomputers.blogspot.com/2009/04/remove-virus.html</link><category>1st Tips</category><pubDate>Mon, 27 Apr 2009 21:05:00 +0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7625304034592946055.post-4393257287874877230</guid><description>Our Solutions&lt;br /&gt;&lt;br /&gt;Many Big Antivirus Company launch Antivus programs such as McAfee,Nod32,Kaspersky,Avast,Norton and etc.But is it enough to protect or Computer programs from Virus???You may answer it yourself.&lt;br /&gt;We should know that each Antivirus may have a weakness,yes it’s true.&lt;br /&gt;For example A antivirus can Kill Brontoks Virus,but it may can’t Kill others virus.From this case we know that Our Computers is still danger,so how to Resolved it????&lt;br /&gt;&lt;br /&gt;Virus make our program be slow and sometimes our progams couldn’t Run.&lt;br /&gt;We better check our programs who runnings.Check it out by TASK MANAGER.You can see all programs Run by our operating system.Check your start up on your operating system by klick RUN – Type msconfig,in the&lt;br /&gt;Startup you can disabled your unwanted programs may contain Virus such as CKVO,MKAVO etc.Always update your Antivirus Software ,and don’t try to use 2 or more Antivirus software,One Antivirus Software is enough or your Operating system will be more slow.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><author>stumbler.neil@gmail.com (computers)</author></item></channel></rss>