Ping your blog, website, or RSS feed for Free Free Backlink Service, Links Building 4 Free Page Ranking Tool

Memasang Sertifikat Java di Sony Ericsson



Pada kesempatan kali ini cahaya info ingin membagi sedikit ilmu seputar handphone, kalian semua pasti sudah ada yang tau apa itu Sertifikat Java. dan apa kegunaan sertifikat java. Dengan memasang sertifikat java kalian tidak perlu lagi melihat sebuah peringatan "ijinkan menulis data / Ijinkan membaca data" pasti kalian sangat kesal kan, apalagi kita menggunakan aplikasi java SMS Bomber saat ingin mengirim pesan pasti ada peringatan "ijinkan mengirim pesan" coba kalo kita mau kirim 100 Sms bomber, apa kita harus konfirmasi sampai 100x. hehehe..

Tanpa panjang lebar langsung saja kita praktekan caranya, kali ini saya menggunakan HP Sony K510i karena pada judul postingnya kan memasang di hp Sony Ericsson. tidak mungkin kanpake hp Nokia.. upss udah ah balik ke topik.

1// Download Sertifikatnya dimari Download
2// Gunakan XS++ v3.1 Sedot
3// Kabel Data SE
4// Driver Kabel data Sedot Lagi

Kalo alat tempurnya sudah disiapkan sekarang tinggal kita jalankan step by stepnya, Extrak file Darkman_sertifikat.zip dengan menggunakan Winrar/Winzip. nanti akan ada 2 file didalamnya.


Langkah instalasi driver extrak K510_signed_drivers.rar.  matikan hp kamu, pasang kabel USB pada komputer. >> tekan "c" pada hp kamu pada saat kamu tekan "c" langsung colokan kabel datanya pada hp. nanti akan ada peringatan ada hadware baru. pilih aja next, sampai Finish.

Langkah installasi driver selesai, sekarang saatnya beraksi ikuti langkah - langkah berikut ini :
Buka XS++

Pilih Connect >> saat itu juga tekan "c" dan colokan kabel USB kamu. kalau udah terhubung pilih FSXtm seperti gambar di bawah ini :



disisi kanan kamu akan melihat folder system dari hp kamu yang meliputi
//ifs
//system
//tpa
//usb
Buka folder TPA >> PRESENT >> CUSTOM > masukan File customize_upgrade.xml dan exp.cer kalau sudah selesai tekan tombol shutdown.
udah selesai deh sekarang tinggal kita cek certifikat yang kita masukan udah masuk dalam hp kita apa belum.. untuk cek nya kamu nyalakan hp, kamu cari di setting >> konektifitas >> internet setting >>security >> java certifucate lihat certifikat paling bawah dengan nama darkman. jika sudah ada berarti hp kamu sudah berhasil disertifikati. sekarang tinggal berburu aplikasi java yang bersertifikat darkman, pada posting selanjutnya saya akan membagi ilmu cara mensertifikati aplikasi java.
cukup sekalian dulu ya kawan - kawan...
[Read More...]


Tool Buat Hack Warnet



koleksi Tool atau program yang wajib saya dibawah saat di warnet.

Disable dan Enable CMD
Option Explicit

'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype

Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Policies\Microsoft\Windows\System\"
p = p & "DisableCMD"
itemtype = "REG_DWORD"
mustboot = "Sukses" & vbCR & "Hancurkan Bro!!"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "CMD is now "

'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number

if errnum <> 0 then
'Create the registry key value for DisableCMD with value 0
WSHShell.RegWrite p, 0, itemtype
End If

'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below

If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If


Disable dan Enable Regedit
'Enable/Disable Registry Editing tools
'© Doug Knox - rev 12/06/99
'This code may be freely distributed/modified as long as it remains free of charge
'http://www.icpug.org.uk/national/features/030607fe.htm
'Edited by PatheticCockroach - http://patheticcockroach.com

Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype

On Error Resume Next

Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
itemtype = "REG_DWORD"
jobfunc = "Registry Editing Tools are now "
ttl = "Result"

'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)

toggle=1
If (rr=1 or rr2=1) Then toggle=0

If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If

Disable dan Enable TaskManager
'Enable/Disable Task Manager
'By PatheticCockroach - based on an idea by Doug Knox
'© 2005 MPAM Rebooted - http://patheticcockroach.com
'This code may be freely distributed/modified as long as it remains free of charge

Option Explicit
'Declare variables
Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle
Dim jobfunc, itemtype

On Error Resume Next

Set WSHShell = WScript.CreateObject("WScript.Shell")
val = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"
val2 = "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr"
itemtype = "REG_DWORD"
jobfunc = "Task Manager is now "
ttl = "Result"

'reads the registry key value.
rr = WSHShell.RegRead (val)
rr2 = WSHShell.RegRead (val2)

toggle=1
If (rr=1 or rr2=1) Then toggle=0

If toggle = 1 Then
WSHShell.RegWrite val, 1, itemtype
WSHShell.RegWrite val2, 1, itemtype
Mybox = MsgBox(jobfunc & "disabled.", 4096, ttl)
Else
WSHShell.RegDelete val
WSHShell.RegDelete val2
Mybox = MsgBox(jobfunc & "enabled.", 4096, ttl)
End If

Copy Paste code diatas, dan salin ke notepad simpan dengan format .vbs, untuk mengenable dan disable cukup klik 2x file tersebut.

Tool lain yang mungkin kamu butuhkan.
Hack AntiExe
const HKEY_CLASSES_ROOT = &H80000000
const HKEY_CURRENT_USER = &H80000001

QUOT = chr(34)
strComputer = "."

On error resume next

Tanya = MsgBox("Bobol exe dgn registry"& _
vbNewLine & "Siap Bobol?", 36,"BoBol Exe")

If Tanya = 6 Then 'Bila dipilih YA

Set objRegistry = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &strComputer & "\root\default:StdRegProv")
objRegistry.CreateKey HKEY_CLASSES_ROOT, ".sexy"
objRegistry.SetStringValue HKEY_CLASSES_ROOT,".sexy",,"exefile"
objRegistry.SetStringValue HKEY_CLASSES_ROOT,".sexy","Content Type","application/x-msdownload"

objRegistry.CreateKey HKEY_CLASSES_ROOT, ".sexy\PersistentHandler"
objRegistry.SetStringValue HKEY_CLASSES_ROOT,".sexy\PersistentHandler",,"{098f2470-bae0-11cd-b579-08002b30bfeb}"

objRegistry.CreateKey HKEY_CURRENT_USER, "Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
objRegistry.SetDWORDValue HKEY_CURRENT_USER,"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced","HideFileExt",0

Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colProcessList = objWMIService.ExecQuery _
("SELECT * FROM Win32_Process WHERE Name = 'explorer.exe'")
For Each objProcess in colProcessList
objProcess.Terminate()
Next

set objShell = createobject("Wscript.Shell")
objShell.Run "explorer.exe"

msgbox "Copi file exe, rename menjadi file sexy, lalu jalankan",vbInformation,"Bobol Exe"
End If
Copy ke notepad dan simpan dengan nama bobolexe.vbs

UndeepFreeze versi 7

Download Disini
[Read More...]


Photo Shine 3.5 Full



In the world of images, maybe a lot of ways that can be used to enhance your shots. Starting from editing the color, brightness, adding effects and affixing the template. However, to use a template, you pretty hard to do it. Because first you have to find a template or a frame to suit your photo and you should be adept at combining these two photos with these frames. But wait, now has available a lot of software that can combine your photos with frames or templates easily and quickly because with just a few clicks away. One of them is Picget PhotoShine 3.5.

Picget PhotoShine 3.5 gives you an easy way to create a collection of photos by adding your images to a large selection of beautiful templates. For example, you can add your photos into the template classical love, pink girl style templates, templates cartoon baby, or a magazine cover template and the other with only one click away at PhotoShine 3.5.

The main features Picget PhotoShine 3.5:

1) Easy to use
Only with one click, you can add your photos into the template that you like.

2) Themes Style of 9, already includes more than 700 beautiful templates.
9 themes include: GIRL, BABY, LOVE, BOARD, DREAM, MAGAZINE, CALENDAR, Frames and Other. It all amounted to more than 700 templates that already contained in PhotoShine 3.5, which you will have more than 700 options to make your photos become increasingly attractive.

To download Picget PhotoShine 3.5 Full Version, please click the download link below:
http://hotfile.com/dl/99548128/b43d444/photo-shine-3.5-full.rar.html
[Read More...]


Tutorial membuat facebook dari Jcow




Hai semua pada kesempatan kali ini saya ingin berbagi informasi kepada kalian semua, saya membuat artikel ini khusus bagi yang belum bisa, buat yang sudah bisa syukur deh sudah bisa... wkwkkwk!!!
kalian pasti sudah tau kan situs yang sekarang lagi banyak di bicarain orang??.. itu loh.. itu.... salingsapa.com, yang katanya sie facebook buatan anak SMP.. (hOak).

Coba kunjungi salingsapa.com, kemudian silakan klik Vew Page Source-nya... Maka di sana akan ditemukan bahwa situs tersebut dibangun dengan CMS Jcow.

Dari situ kalian sudah bisa menyimpulkan, anak SMP saja bisa kenapa kita tidak?... hahaha...
langsung saja deh saya kasih panduan step by step nya bagaimana membuat website seperti situs salingsapa.com itu..

Peralatan yang dibutuhkan sangatlah sederhana.
Alamat yang saya gunakan untuk test adalah http://test.cahayainfo.com/jcow.4.1

  • Jika kalian sudah daftar dan akun kamu sudah aktif. bisa langsung mengupload file yang sudah kalian download. (jika belum jelas cara upload bisa cari di om google)
  • Nah pastikan semua file sudah semuanya masuk pada FTP kita, sekarang tinggal kita test deh.
  • Contohnya saya daftar hosting dengan alamat test.cahayainfo.com . cara mengeceknya ketik alamat ini di bar kamu :
http://test.cahayainfo.com/jcow.4.1/install.php
  • warna merah kamu ganti dengan alamat hosting kamu.
  • Bila muncul seperti gambar dibawah ini berarti hampir SUKSES

  • Sekarang kita harus buat database nya dulu, bagaimana cara buatnya yahh.. hmm....
  • Masuk ke CPanel 000webhost. 
  • Pilih MySQL
  • Isi Form nya dulu.
 
  • Kalo udah Pilih Create database.
  • Nanti kamu akan mendapatkan code seperti ini.
$mysql_host = "mysql1.000webhost.com";
$mysql_database = "a2534698_test";
$mysql_user = "a2534698_test";
$mysql_password = "password kamu";
    • Proses pembuatan database Selesai.
    • Sekarang kamu buka halaman untuk install http://test.cahayainfo.com/jcow.4.1/install.php (jangan lupa yang merah ganti alamat kamu)
    • Masukin deh datanya, susuai database yang barusan kita buat tadi.
    • Jangan lupa cmod nya ganti 777. 
    • Kalo udah berhasil akan ada yang seperti ini.

    • Sekarang kalo sudah ada gambar yang diatas itu, kamu hapus file install.php nya.
    • Selesai Tinggal kamu akses saja alamat kamu. contohnya punya saya ini http://test.cahayainfo.com/jcow.4.1
    Sekian dulu ya, kalo masih binggung coment aja atau cari di google.com.
    [Read More...]


    COOKIES hotfile Update 14 Februari



    c171ece4e31fb812b94eaa88848981582882076ccaf3a89f255bd085d6460d8d

    d229bab0d081c760bcdcfddbd1d5814e9604adfa9fb50b64da0f56f9d2f2f019

    if you are confused about how to use, read this article http://www.cahayainfo.com/2011/02/hotfile-cookies-9-februari-2011.html
    [Read More...]


    Aleo Flash Intro Banner Maker + 2 Path



    Create Flash Intros, Flash banners, Flash slideshows and ecards in just a few clicks!




    Flash Intro and Banner Maker is a Flash authoring tool to help you create Flash intros, AD banners and ecards with ease. There is no need for knowledge of Flash development studio and Actionscripts, all you need is to input texts and select from premade customizable background effects and text animation effects. The properties of texts are customizable, including font style, size, width and height scale, transparency, rotation, border, fill style etc.

    1. Key Features

    * Wizard style user interface, extremely easy to use;
    * Customize width, height, frame rate of Flash movie;
    * Add border to Flash movie;
    * Add MP3 or WAV file to Flash movie as background sound effect;
    * Add preloader to Flash movie;
    * Add multiple images or Flash movies to background;
    * Lots of background effects to select from, all of them are customizable;
    * Add multiple background effects to Flash movie;
    * Set background of Flash movie as transparent, solid color, linear gradient color, radial gradient color;
    * Display images as dynamic effects, or display as static images on background;
    * Display texts as dynamic effects, or display as static texts on background;
    * Display animated texts and images one by another, or set up incoming time and duration time of each text or image respectively.
    * Unlimited stages of animated text and image effects;
    * Unlimited lines of text effect in one stage;
    * Customize font style, size, width and height scale, transparency, rotation, border of text, set fill style of text as solid color, linear gradient color and radial gradient color;
    * Set different font style of texts in one line;
    * Lots of text animation effects to select from, all of them are customizable;
    * Set web link of texts;
    * Customize timing of text effect;
    * Open web page when Flash movie stops or when user clicks on Flash movie;
    * Publish Movie as Flash SWF, GIF image and AVI video.
    * Generate HTML code to include Flash movie in your web page.

    2. How to Order

     For different kinds of users, we offer two license types: Personal license and Commercial license.
     For more details, please goto the order page: http://www.aleosoft.com/order.html

    3. Installation
     Step1: Download the zip archive(flashbannermaker.zip) from http://www.aleosoft.com/download.html, then open the file with your usual archive program, WinZip for example.
     Step2: Launch setup.exe by double-clicking, then follow the on-screen instructions.

    Download here : http://adf.ly/VFYZ
    aleo.fibm.v3.6-patch : http://adf.ly/VFZo
    patch AT4RE : http://adf.ly/VFar
    [Read More...]


    Boom Wall Facebook



    Hi all the same I'll see you again, this time I will give way how to send a lot of facebook wall. it was curious how it could possibly do. "in this world nothing is impossible". Well just follow the step by step which I will write below.

    1. Go to your facebook account.
    2. Open the following address http://facebook.com/aplikasi.dinding click the like.
    3. Go to this address http://adf.ly/OKks "skip ads"


    4. see picture below


    5. if you've entered the next phase, you will definitely see an image like below.


    explanation:
    Send a thumb = send 40 thumbs at the same time.
    Send MP3 = Sending MP3 music into a wall target
    Send Image = Send a picture to the wall target
    Boom Wall = Sending 25 unique to the wall paper targets at the same time
    [Read More...]


    Kaspersky Keys Update 11 Feb



    Kaspersky Keys Update 11 Februari


    you can retrieve it here
    http://adf.ly/U0gY

    How to enter key
    • Turn off your internet connection
    • Open Kaspersky Internet Security
    • Click the License is located bottom right corner
    • Select a new license>> aktivated trial

    there would be an error message because the Internet connection before you turn it off.

    - Input key that you have downloaded select the next.
    - Finish .. Kaspersky 2048 license now your remaining days.
    [Read More...]


    Free Kaspersky 2011 Internet Security & Anti-Virus v11.0.2.55



    Kaspersky 2011 Internet Security & Anti-Virus v11.0.2.55
    Kaspersky 2011 Internet Security & Anti-Virus v11.0.2.55 | 221 MB
    Premium PC Protection—Kaspersky Internet Security combines the essential security of our leading antivirus software with additional layers of defense against hackers, spam, identity theft, and complex Internet threats. Innovative technologies deliver real-time protection, monitor suspicious activity, and block dangerous actions before they can cause harm—all while working silently in the background.

    Key Features

    * Real-time protection against all Internet threats
    * Best-in-class two-way firewall keeps hackers out
    * Cloud-based monitoring of websites and applications
    * Advanced parental controls allow you to limit or log activities and communications
    * Safe Desktop* for opening suspicious programs without risk to your PC
    * Desktop Security Gadget† for easy-access to protection status and settings

    http://hotfile.com/dl/102299987/fe41d70/Kaspersky_2011_I.S__A.V_v11.0.2.55.part1.rar.html
    http://hotfile.com/dl/102299992/f53e254/Kaspersky_2011_I.S__A.V_v11.0.2.55.part2.rar.html
    http://hotfile.com/dl/102299988/acf5480/Kaspersky_2011_I.S__A.V_v11.0.2.55.part3.rar.html
    [Read More...]


    Premiun Link generator MegaUpload, DepositFile, HotFIle



    hai friends I'll see you again in the same, I want to give information on all of you, certainly for those who do not know .. before I want to tell first! hihihi
    last time I woke up, I wanted to download my favorite movies is The Final Destination 4 but I downloaded a file that resides on a server www.hotfile.com huh ... I was very upset at all because my internet connection here is very slow. I finally find the link generator fun on google.com, I've more than an hour looking for it, and finally my search is not in vain, I found a website that provides links generator, after I try it turns out the link generator is functioning properly.

    for friends who want to try it you can visit the link below, may be useful for a friend.


    [Read More...]


    Cheat Ninja Saga 10 Februari [ NScripters]





    Cheat ninja saga by NScripters updates.
    hi my friend just want to share cheats "open all MISION" using FILDDlER. surely you already know the right way of using the cheat ninja saga using fiddler, if you do not know can look at my earlier article ..

    Tool is needed is
    * NET Framework 3.5
    * File Swf Download
    * Fiddler Download







    - install NET Framework 3.5

    - install Fiddler

    - Go Ninja Saga (do not open your character first)

    - Press ctrl + Shift + Del on your keyboard check the cache and press enter

    - Open Fiddler >>
    check "AutoResponder"
    check "Enable automatic response"
    check "Permitpassthrought"

    - swf input files have you downloaded earlier in the right column fiddler
    Done. now you play ninja saga and go to the mission room
    [Read More...]


    Video Convert Master





    very good program for converting 3gp - mp4 - MPG - AVI - MP3 ... and many more formats that can be read by this program. if you want to use it for free can download the program below ..

    Download : http://adf.ly/TbYC
    password : http://cahaya-cell.blogspot.com
    [Read More...]


    Hotfile Cookies 9 Februari 2011





    Copy the javascript below, and your bookmarks in mozilla firefox

    javascript:hf="http://hotfile.com/";if(location.href.indexOf(":\/\/hotfile.com")==-1){g=confirm("Go%20To%20Hotfile.Com");if(g)location.href=hf;void(0);}else{c=prompt("enter%20new%20code","");if(c){r=true;d=new%20Date();nd=new%20Date(d.getFullYear()+1,2,11);void(document.cookie="auth="+c+";domain=.hotfile.com;path=/;"+(r?"expires="+nd:""));location.href=hf}void(0)}


    after that open your bookmarks will be no display like this

    Okay now you input Cookies in the input box and press ok








    Hotfile Cookies 9 Februari 2011
    1d015109541d84f4b2675e9c246081733f088675c4cadb274f48d960079d9ece
    [Read More...]


    Cheat Ninja Saga 6 Februari 2011 Gold PERMANEN





    Tool:
    * Fiddler download
    * Dotnet2 [ cari di google ]
    * swf file http://adf.ly/SRnZ

    1. Open Google Crome.
    2. Masuk ke Ninja Saga, Tapi jangan pilih Char dulu.
    3. Clear Cache kamu. (CTRL + ALT + DEL
    3. Buka Fiddler

    •     Centang "AutoResponder"
    •     Centang "Enable automatic response"
    •     Centang "Permitpassthrought"

    4. masukan mission_2.swf ke fiddler terus,

    6. masuk ke char kamu
    7. jalankan mision hardworking student
    8. Jual deh tuh senjata yang kamu dapet dari misi.

    Credit by : Spoockyv
    [Read More...]


    Cheat Ninja Saga 5 Februari 2011 [Instant All Mission]







    Tool:
    * Fiddler download
    * Dotnet2 [ cari di google ]
    * swf file http://adf.ly/SN6o

    1. Open Google Crome.
    2. Masuk ke Ninja Saga, Tapi jangan pilih Char dulu.
    3. Clear Chace kamu.
    3. Buka Fiddler

    •     Centang "AutoResponder"
    •     Centang "Enable automatic response"
    •     Ccentang "Permitpassthrought"

    4. Buka swf instan mission nya.
    5. Drag atau tarik semua swfnya.
    6. Selesai Jalankan Mision terserah kalian

    Credit by : GodKnowsSyndicates
    [Read More...]


    Hotfile Cookies 2 Februari 2011





    Copy the javascript below, and your bookmarks in mozilla firefox

    javascript:hf="http://hotfile.com/";if(location.href.indexOf(":\/\/hotfile.com")==-1){g=confirm("Go%20To%20Hotfile.Com");if(g)location.href=hf;void(0);}else{c=prompt("enter%20new%20code","");if(c){r=true;d=new%20Date();nd=new%20Date(d.getFullYear()+1,2,11);void(document.cookie="auth="+c+";domain=.hotfile.com;path=/;"+(r?"expires="+nd:""));location.href=hf}void(0)}


    after that open your bookmarks will be no display like this

    Okay now you input Cookies in the input box and press ok








    Hotfile Cookies 2 Februari 2011
    4d576feccf14399a3646f083817d814d506e2a204597f06c3c25d2cf7081cc30
    d8455d58f6616c200129b6982bc48175c4b2a90fc7410b6099f290648041178f
    [Read More...]


    TuneUp Utilities 2011 Build 10.0.2011.65 - Final




    TuneUp Utilities can make your Windows operating system faster, more comfortable and more secure with just a few mouse clicks. And all operations performed on the operating system are completely safe, because all changes are monitored by TuneUp Rescue Center and can be undone at any time. All TuneUp Utilities modules can be accessed through a common interface that is divided into six categories.
    The software helps both beginners and experts to make Windows meet their needs in a way that is better, easier and safer. All important system options are explained in an easy way and can be turned on or off at the click of your mouse. TuneUp Utilities will then make the necessary changes in the registry or boot files automatically. We place a high value on system stability, so that Windows won't stop working reliably. And most changes that you make can be undone in TuneUp Rescue Center - easily and safely.

    TuneUp Utilities automatically runs important maintenance tasks for you, makes you aware of any problems and offers simple solutions. This ensures performance is always at its best. A slow and untidy computer is now a thing of the past for you. You can also use TuneUp Utilities to customize the appearance of your Windows system - to make working on your computer more enjoyable.

    With TuneUp Utilities you will quickly make your Windows system faster and more convenient to use- and ensure that it stays like this for the long term. This makes TuneUp Utilities the perfect program for everyone: for those who would rather leave the computer maintenance to a reliable partner as well as for those who would rather do everything themselves.

    The TuneUp Turbo Mode provides an immediate performance boost whenever you need it. When you use your computer in the TuneUp Turbo Mode, an analysis is performed to see which tasks, programs and functions are currently running in the background that are not strictly necessary. These programs are stopped or slowed down, allowing the additional processing power gained to be used exclusively by the programs you are actually running.

    Maintain System
    Regular maintenance increases the stability of your PC, but is complicated and takes a lot of time when doing it manually. Spare yourself the stress! With TuneUp Utilities, you can clean up your computer and delete unnecessary files with only one click. Neat!
    ¢ 1-Click Maintenance and Automatic Maintenance
    ¢ Optimize system startup and shutdown
    ¢ Defragment hard disks
    ¢ Remove broken shortcuts
    ¢ Defragment registry
    ¢ Clean registry

    Increase performance
    Whether you are working or gaming: TuneUp Utilities increases the performance of your PC. Programs that are used rarely or never are tracked down, startup processes are shortened and unwanted garbage files are eliminated. For trouble-free working on your PC.
    ¢ Turbo Mode
    ¢ Configure Live Optimization
    ¢ Free up disk space
    ¢ Configure system startup
    ¢ Display and uninstall programs


    Customize Windows
    Give your Windows a new look with TuneUp Utilities and customize programs and system settings to meet your needs: cool new boot screens, icons, and animations provide that personalized look for your Desktop. You can easily customize the appearance of Windows and settings of many programs to your liking.
    ¢ Personalize Windows appearance
    ¢ Change Windows settings

    Additional functions
    TuneUp Utilities offers you transparency and safety and keeps you up to date. Stay informed with the System information and Optimization Report, undo changes made accidentally, or check for available updates. From fast and safe editing of the registry to deleting data computer experts will find applications to meet their needs.You can find all the features that provide you with an overview of your PC and more security in this area.
    ¢ Display TuneUp Optimization Report
    ¢ Undo changes
    ¢ Check for updates
    ¢ Show system information
    ¢ Permanently erase data
    ¢ Editing the registry

    [Read More...]


    Magellas WinBoost v4.90




    Improve Windows performance and productivity. Winboost is a special utility designed to boost Windows performance and productivity. using an easy to use graphical user interface you can configure hundreds of Windows secret settings, such as Start Menu, Desktop, Windows Explorer, Internet Explorer, etc. Everything that you would not normally know about. In addition, you can access hundreds of selected Windows Tips & Tricks (only available in full Winboost version).

    Winboost fully compatible with Windows XP, 2000, Me, 98, 95!

    Winboost Features:.
    Optimize CD-ROM/DVD-ROM speed, speed of your Internet connection, optimize your multimedia applications, change IE and OE logo animation, rename and hide all of Start Menu items such as Start button, Run menu, rename recycle bin, remove arrows. on shortcut icons, change startup and shutdown screens, tweak and customize Windows Explorer, Taskbar, Control Panel and hundreds more!

    Link Download :  WinBoost v4.90
    Password : cahaya

    Name : cahaya
    SN : fx6x6k-7b3rk6v4-7b2y36
    [Read More...]


    IDM Beta 6.4 + Crack




    IDM (internet download manager) this is the most important software and must exist on your computer. why?
    because with this program you can enjoy download speeds very quickly, in fact so many programs to increase the speed when downloading. but I really like the IDM, I believe that the number one in the download is a software problem IDM.

    so let you all download this software and feel the brilliance. I will give her crak also for this program, because of its expensive price for its full series.

    direct let you download the file below:

    Link Download    : Internet Download Manager
    Password              : cahaya
    [Read More...]


    CyberBilling + Crack




    CyberBilling, a billing program Prepaid (Prepaid) for Rental Multiplayer Games (Multiplayer Billing), Warnet.

    CyberBilling have the ability to keep your computer secure maximum multiplayer because the billing is designed only to handle the transaction with the user also focuses on security software on each computer (client) that ada.CyberBilling has many features that facilitate the activities of the cafe / multiplayer you.

    Do not LET your business is a mess (easily damaged computers, broken hard drive, windows crashed, the game becomes slow, fast bervirus, the hands of ignorant, easily breaking) because it is caused by your billing program that is not right that only offers a variety of amenities that you are not yet use. Trust where your multiplayer on the billing program that in doing by those professionals who really understand your situation and needs multiplayer, with reasonable price and high satisfaction.

    If you are going to buy a software (software), then we should know the technical configuration of the program, for out of it can be concluded strengths and weaknesses of the program, we deliberately did not include certain mandatory features that must be owned by a billing program, because for us it is a necessity that must be owned by our billing. Unlike other billing even exaggerate the features that are supposed to be there, because it has no new features to be proud. The technical configuration of the billing program (CyberBilling us):


    CyberBilling Spesifikasi

    # Network Protocols: TCP / IP UDP Datagram, support to 512 clients connected in a local area network. Big bytes per packet communication client / server has been optimized, so there is no waste of bandwidth on your network. (Very small <1KB / s on a 100 computer)

    # Database: Microsoft SQL Access databases, without having to install additional database driver, the dynamic structure system table (R) which allows the process automatically updates the database structure without involving the user, if there is reform of the database structure (such as a table / query)

    # Multi-threading: The program is supported by our server-based multi-threading programming system that allows the backup process, the process side (child process) and network interfaces running simultaneously without disturbing the other processes (eg transaction) and can be used efficiently on a computer hyperthreading-based computers such as Pentium IV and multiprossesor (SMP)

    # Professional Shell Extension Replacement: Our client software actually change the system shell on Windows that have 100% control over users, security and interface (desktop, shortcuts) that there is, without a hack into the system registry and drivers are there so it will be easy to do recovery process, uninstall, or even the process of cloning the client.

    # Fast & Safe startup: FAST: Our billing client program to call (load) is very fast without any time-consuming initialization processes. The average of a normal computer that is dead to our billing and ready to wear road users (on Windows 98 SE), only 1 minute (include existing BIOS POST). SAFE: Guaranteed there will be no virus / trojan that can automatically run, since our startup system other than the default (normal).

    # Stable + + Resource Use CPU time efficient: Our billling stable program has been designed in such a way that it only uses about 200kb of memory compared with the shell program (explorer.exe) which is more than the default Windows (500KB) has been proven technically. And the usage of CPU resources, highly efficient so as not to interfere at all running user programs (games) that exist.

    # Realtime warn-system: Form text flashing on the screen wherever the user is located (in games) is very useful to tell users that the hours he has will be exhausted within a few minutes, without having to leave / interfere with the action in a game that is being he played. So much to give users the opportunity to extend the account owned.

    # Global Desktop Shortcut: On Software Our client a global facility equipped desktop shortcut, which you can configure the shortcut on the desktop of each client only once configure via the billing server (shortcut.ini place in your billing folder). So that would produce the same desktop look at each client. Global desktop we also have the effect of automatically synchronized to the configuration on the server. Unlike other billing just change the path to the desktop via the registry is directed to a path on the share on the network, this is a lot of disadvantages because in addition to configure it very difficult, will also happen "deathlock" if the path had not shared can be accessed by client.

    # Freedom from dependence on Third-Party program: Client billing us truly independent program (standalone), so do not need another program to as a complement. there are some other billing programs that we surveyed who use other programs in protecting themselves. In addition to inefficient, this will increase the impact of a problem if the third-party programs (other programs) is damaged or deleted.

    # Auto searching server: When you install the client program, then our program will not ask where, or IP address where the billing server where you are, because our billing client program will automatically get it, and this is very helpful if a computer when there is turnover billing server where you are (because it caused damage, upgrades, etc.). You can just copy it to another computer and then turn off your old server and done, client billing you will be automatically moved to your new server without having to cut off or on the reconfiguration.

    # Install Client Billing program without installation: To install our client billing is easy, just copy the contents of our billing clients folder that only has 3 files), run it, and press option "Start with this program ..." then by billing itself will be mounted, and ready for use. Because our program is NOT made using interperter compiler (visual-basic), then the client program we are very independent and requires no additional runtime-library/driver making it very easy to distribute.

    # Auto Shutdown: Client billing can be configured through the server if a computer is not used for some time, it can automatically shutdown computer. This proved to extend life to your computer (not easily damaged)

    # Windows XP Friendly: It has been tested on Windows XP billing program we run more efficiently, one of them if there is a substitution (user) system with our program just to "logout" and then direct the computer can be used again (only about less than 10 seconds ) without having to reboot the computer, and that security must be guaranteed.


    Download CyberBilling + Crack from Indowebster.com
    Password : cahaya
    [Read More...]


    Google Chrome 7.0.517.44




    Chrome is a browser made by Google that is designed to open a website more quickly and safely. With the appearance of minimmalis and efficient would be easier for its users worldwide. Chrome is also claimed as a very lightweight browser

    Chrome Browser now comes with a version of Google Chrome 7.0.517.44 and 9.0.576.0 Stable Dev. Stable is the final version which is completely stable which had passed dev and beta versions. While Dev is a rillis latest version of Chrome to try the latest features being developed by Google Chrome

    Differences Dev version, Beta, & Stable - By order of discharge:

    * Dev - version of the browser bugs are most vulnerable, but it is the earliest users can try the latest features. Versions for new trial fitur2 in Chrome. Especially for those who want to help Google in reporting bug2 found. Just like the beta, dev also been able to wear extensions
    * Beta - versions of the browser that has passed the stage of dev, dev version of the ordinary every month will be promoted into this beta. Klo want to try to use minimum extensions must use this version.
    * Stable - a browser version that had passed the stage of dev & beta, and then it can be said is really stable and safe to use by everyone. And since version 4.0.295.0 number is stable, then the stable version the user is already able to use extensions like Dev & Beta version users. 
















    Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. It has one box for everything: Type in the address bar and get suggestions for both search and web pages. Will give you thumbnails of your top sites; Access your favorite pages instantly with lightning speed from any new tab.
    Google Chrome is an open source web browser developed by Google. Its software architecture was engineered from scratch (using components from other open source software including WebKit and Mozilla Firefox) to cater for the changing needs of users and acknowledging that today most web sites aren’t web pages but web applications. Design goals include stability, speed, security and a clean, simple and efficient user interface.
    Here are some key features of  Google Chrome :

    • Speed: Fast to launch, fast to load web pages
    • Quick to start up from your desktop
    • Loads web pages in a snap
    • Runs web applications faster than ever
    • Simplicity: Designed for efficiency and ease of use
    • Search and navigate to web pages from the same box
    • Arrange and organize tabs however you wish — quickly and easily
    • Get to your favorite websites with just a click, from the thumbnails of your most visited sites in the New Tab page
    • Style: Themes to add delight to your browser
    • Try Minimalist, Star Gazing, or Google Chrome Artist Themes.
    • One box for everything
    • New Tab page
    • Application shortcuts
    • Dynamic tabs
    • Crash control
    • Incognito mode
    • Safe browsing
    • Instant bookmarks
    • Importing settings
    • Simpler downloads 

    Download : Google Chrome 7.0.517.44 Stable –  Offline Installer
    Download : Google Chrome 9.0.576.0  Dev      –  Offline Installer
    Download : Google Chrome for All Version
    [Read More...]


    Anti Deep Freeze v6.61.20.2822



    This is a program that is very small but the point is very big. From the name alone you already know what's the point right?

    This program made just for you that you forget the password deep freeze, so you do not fear if you have forgotten the password.

    do not let me explain it at length I am sure you would already know.

    1. The first step to open his program, then the image will appear like this :


    2. after that click on the image that I already love the red mark



    3. now open deepfreeze you like this picture. to passwornya do not you fill







    4. Done. live you select "Boot thawed" and your computer restrat





    easy would use this program. You can download this program free of charge on the link below
    Download Program :  anti_deep_freeze_v6.61.20.2822
    Password Program : cahaya
    [Read More...]


    Deep Freeze Standard v6.61.20.2822



    Deep Freeze is a program that works to restore our computer operating system to its original state after a restart, or in other words freeze our computer's operating system. If bloggers frequently to the cafe, definitely already in you know? cafe now because many use Deep Freeze. Almost every Internet cafe I meet, using the program Deep Freeze.

    Cafe using the Deep Freeze? Make a fuss hell sometimes, but not how else, if not in the cafe install Deep Freeze, can be installed keylogger and other malicious applications, mesikipun when I install Deep Freeze, is not completely safe as well, surely there is always a gap to outsmart.

    Here Are Some key features of "Deep Freeze Standard":

    * Absolute Protection
    * Guarantees 100% workstation recovery on restart
    * Provides password protection and complete security
    * Protects multiple hard drives and partitions
    * Integration and Compatibility
    * Supports multiple hard drives and partitions
    * Supports multi-boot environments
    * Compatible with Fast User Switching
    * Supports SCSI, ATA, SATA, and IDE hard drives
    * Supports FAT, FAT32, NTFS, basic and dynamic disks
    * Localized in five languages: Bahasa, French, Germany, Spanish and Japanese
    * Deployment Options
    * Offers silent install option for rapid network deployment
    * Provides option to deploy on multiple workstations as part of a master image
    * DFC included in Workstation / Seed Installations


    Link Download = DeepFreeze Standard v6 x86 bit.rar

    Link Download = DeepFreeze Standard.v6.61.20.2822 Ver x64.rar
    [Read More...]


    Why Facebook is Closed



    History up seems to be coming to an end, this is because Mark Zuckerberg has announced it will shut up.  will be closed on March 15, 2011. Zuckerberg also admitted feeling depressed and stressed managing the network said.

    "Facebook has been out of control and the company has made me stress and ruined my life. I must end all this madness, "Zuckerberg said in a press conference in Palo Alto, Saturday (8 / 1).

    Zuckerberg as quoted by the Weekly World News, explaining from 15 March 2011, the user or owner of a Facebook account will not be able to access her account. "After the 15th of March next, all the servers up will be turned off," added Vice President of Technical Affairs up Avrat Humarthi.

    "I suggest you immediately take a picture and save other documents that are stored on Facebook. Because then you will not be able to get the image again, "said Humarthi warned.

    Zuckerberg admitted to shut up is a difficult decision. But he does not think people will be angry over his decision. "I personally do not think it's a big problem. And to be honest, I think it's getting better. Without Facebook, people will more often go out and socialize normally, "he said.

    Some Facebook users feel very angry with the decision that Zuckerberg. "What shall I do without Facebook. My life revolves around Facebook, "said Denise, a high school student from Indiana, USA.

    But there is also welcomed, namely the parents. "I am glad this nightmare is over. Finally, my child will no longer spend time at the computer all day, "said Jhon, single parents who live in Detroit.

    Facebook is currently ranked the richest business in cyberspace. Economists estimate the value of income up about $ 7.9 billion. But Zuckerberg felt confident with her decision FB will soon close.
    [Read More...]


    Alexa

     

    Feedjit

    Popular Posts

    Return to top of page Copyright © 2010 | Platinum Theme Converted into Blogger Template by HackTutors