Recent Posts

Your browser does not support frame.

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Selasa, 08 Oktober 2013

Cara Disable IDM Update Notification

Mungkin sebagian dari kita telah menggunakan IDM sebagai downloader karena memang IDM ini termasuk salah satu downloader yang paling oke di kelasnya, tetapi karena IDM terlalu sering mengeluarkan versi barunya maka setiap kali komputer kita connect ke internet maka IDM akan selalu menayangkan pesan/notifikasi untuk meng-update IDM tersebut.
Hal ini cukup mengganggu karena bagi sebagian pengguna IDM bajakan bila salah klik dan di update  maka IDM nya mungkin tidak bisa lagi digunakan alias blacklist.



Nah, berikut  saya berikan tools untuk mendisable pesan notifikasi tersebut sehingga tidak muncul-muncul lagi.

download here

Selasa, 01 Oktober 2013

Auto Clear Cache and Restart Squid NT on Windows Batch Script

Ini adalah code batch untuk membersihkan cache proxy squid NT yang di di install di windows
silahkan anda copy paste ke notepad dan simpan dengan ekstensi .bat
jangan lupa mengedit bagian folder cache sesuai path direktory cache di komputer anda :


@ECHO OFF
echo.
echo Clear cache and restart squid-NT proxy
echo.
echo This script coded by jimmi diaz @ 2013 http://kupas.co.nr
echo.

SET /P continue="Ready to clear cache ? (y/n): "
IF %continue% EQU n (
exit
)
IF %continue% EQU N (
exit
)
IF %continue% EQU y (
GOTO myLabel
)
:myLabel
echo.
echo Prepare to stopping squid services.
net stop squid
echo.
cd\
echo.
echo trying to clear squid cache...
echo.
echo stay and relax for a while, clear is in progress
echo.
echo starting clear...

REM change your first squid cache folder bottom of here
rd /s /q f:\SQUIDCACHE
echo.

REM change your second squid cache folder bottom of here
rd /s /q f:\SQUIDCACHE1

echo.
echo clearing squid cache, successfull !
echo.
echo preparing new cache folder
echo.
c:
cd\
cd c:\squid\sbin
squid -z
squid.exe -i
squid.exe -O -D
echo.
echo finish, some new cache folder is ready !
echo.
echo prepare to start  squid service on windows
net start squid
echo.
echo Squid 2.7-stable8 is started right now!!
echo.
echo All Process allready done !
pause


Sekian dulu.
download code here