Cara Freze atau Memproteksi File Dari Virus Dengan Cara Freeze File
Code Script Dengan File Bat ini Digunakan Untuk Frezer File
di dalam aplikasi bath ini ada fitur Freezer dan Unfreezer
Guna Aplikasi Ini Untuk Melindungi File Dari Virus
yaudah nih Cara nya:
-Buka NotePad
-masukkan kode di bawah
@echo off
cls
title Freeze [Final Version] : by Blueshadows
color A
set chrpercent=%%%
set chrnum=1
if %1X==X (goto Main)
if %1==/freeze goto Freeze
if %1==/unfreeze goto Unfreeze
if %1==1 goto FreezeApp
if %1==2 goto FreezeArchive
if %1==3 goto FreezeImage
if %1==4 goto FreezeDocument
if %1==5 goto FreezeVideo
if %1==6 goto FreezeEbook
if %1==7 goto CustomFreeze
if %1==9 goto UnfreezeAllFile
if %1==0 goto OutMessage
if %errorlevel%==1 goto Out
:Main
REM REGISTERING
echo Loading...
REM COPY ICON
echo Process 1 : Copying Icon
if exist ice.ico (copy /Y ice.ico C:\ice.ico)
REM COPY PROGRAM
echo Process 2 : Copying Main Program
if exist Freeze.bat (copy /Y Freeze.bat C:\Freeze.bat)
REM CREATE REG FILE
echo Process 3 : Create Registration File
(
echo Windows Registry Editor Version 5.00
echo.
echo [HKEY_CLASSES_ROOT\FrozenFile]
echo "EditFlags"=dword:00010000
echo "AlwaysShowExt"="1"
echo "BrowserFlags"=dword:00000008
echo @="Frozen File"
echo.
echo [HKEY_CLASSES_ROOT\FrozenFile\DefaultIcon]
echo @="C:\\ice.ico,0"
echo.
echo [HKEY_CLASSES_ROOT\*\shell\freeze]
echo @="&Freeze"
echo.
echo [HKEY_CLASSES_ROOT\*\shell\freeze\command]
echo @="\"C:\\Freeze.bat\" /freeze \"%chrpercent%%chrnum%\""
echo.
echo [HKEY_CLASSES_ROOT\FrozenFile\shell]
echo @=""
echo.
echo [HKEY_CLASSES_ROOT\FrozenFile\shell\open]
echo @="&UnFreeze"
echo.
echo [HKEY_CLASSES_ROOT\FrozenFile\shell\open\command]
echo @="\"C:\\Freeze.bat\" /unfreeze \"%chrpercent%%chrnum%\""
echo.
echo [HKEY_CLASSES_ROOT\.ice]
echo @="FrozenFile"
) > C:\FrozenFile.reg
REM REGISTERING EXTENSION
echo Step 3 : Registering
if exist C:\FrozenFile.reg (REG import C:\FrozenFile.reg)
REM MAIN PROGRAM
:choice
cls
echo ##############################################################################
echo #============================================================================#
echo #======OOOO=O=====O==O=OOOO=OOOO=O==O===O===OOOO==OOOO=O=========O=OOOO======#
echo #======O==O=O=====O==O=O====O====O==O==O=O==O===O=O==O==O=======O==O=========#
echo #======OOOO=O=====O==O=OOOO==OO==OOOO=O=O=O=O==O==O==O===O==O==O====OO=======#
echo #======O==O=O=====O==O=O=======O=O==O=O===O=O=O===O==O====OO=OO=======O======#
echo #======OOOO=OOOOO=OOOO=OOOO=OOOO=O==O=O===O=OO====OOOO=====O=O=====OOOO======#
echo #============================================================================#
echo ##############################################################################
echo.
echo Type Number and Press Enter!
echo.
echo * Freeze Menu:
echo [1] Freeze All Application File [5] Freeze All Video File
echo [2] Freeze All Archive File [6] Freeze All Ebook File
echo [3] Freeze All Image File [7] :: Custom Freeze ::
echo [4] Freeze All Office Documents File
echo.
echo * Unfreeze Menu:
echo [9] Unfreeze All Frozen File
echo.
echo * Other Menu:
echo [0] Exit
echo.
set/p "snum=Select Your Choice : "
if %snum%=='' goto choice
if %snum%==1 goto FreezeApp
if %snum%==2 goto FreezeArchive
if %snum%==3 goto FreezeImage
if %snum%==4 goto FreezeDocument
if %snum%==5 goto FreezeVideo
if %snum%==6 goto FreezeEbook
if %snum%==7 goto CustomFreeze
if %snum%==9 goto UnfreezeAllFile
if %snum%==0 goto Out
if %errorlevel%==1 goto choice
goto choice
:FreezeApp
cls
echo Freezing Application File(s)...
if exist *.exe (ren *.exe *.*.ice)
if exist *.msi (ren *.msi *.*.ice)
if exist *.com (ren *.com *.*.ice)
if exist *.cmd (ren *.cmd *.*.ice)
if exist *.scr (ren *.scr *.*.ice)
if exist *.pif (ren *.pif *.*.ice)
goto OutMessage
:FreezeArchive
cls
echo Freezing Archive File(s)...
if exist *.zip (ren *.zip *.*.ice)
if exist *.rar (ren *.rar *.*.ice)
if exist *.jar (ren *.jar *.*.ice)
if exist *.ace (ren *.ace *.*.ice)
if exist *.mou (ren *.mou *.*.ice)
if exist *.cab (ren *.cab *.*.ice)
if exist *.7z (ren *.7z *.*.ice)
if exist *.iso (ren *.iso *.*.ice)
if exist *.tar (ren *.tar *.*.ice)
if exist *.gz (ren *.gz *.*.ice)
if exist *.z (ren *.z *.*.ice)
goto OutMessage
:FreezeImage
cls
echo Freezing Image File(s)...
if exist *.jpg (ren *.jpg *.*.ice)
if exist *.jpeg (ren *.jpeg *.*.ice)
if exist *.gif (ren *.gif *.*.ice)
if exist *.png (ren *.png *.*.ice)
if exist *.raw (ren *.raw *.*.ice)
if exist *.tif (ren *.tif *.*.ice)
if exist *.tiff (ren *.tiff *.*.ice)
if exist *.bmp (ren *.bmp *.*.ice)
if exist *.wmf (ren *.wmf *.*.ice)
if exist *.ico (ren *.ico *.*.ice)
goto OutMessage
:FreezeDocument
cls
echo Freezing Document File(s)...
if exist *.doc (ren *.doc *.*.ice)
if exist *.docx (ren *.docx *.*.ice)
if exist *.xls (ren *.xls *.*.ice)
if exist *.xlsx (ren *.xlsx *.*.ice)
if exist *.ppt (ren *.ppt *.*.ice)
if exist *.pptx (ren *.pptx *.*.ice)
if exist *.mdb (ren *.mdb *.*.ice)
if exist *.pub (ren *.pub *.*.ice)
if exist *.rtf (ren *.rtf *.*.ice)
if exist *.odt (ren *.odt *.*.ice)
if exist *.txt (ren *.txt *.*.ice)
goto OutMessage
:FreezeVideo
cls
echo Freezing Video File(s)...
if exist *.wmv (ren *.wmv *.*.ice)
if exist *.avi (ren *.avi *.*.ice)
if exist *.rm (ren *.rm *.*.ice)
if exist *.rmvb (ren *.rmvb *.*.ice)
if exist *.flv (ren *.flv *.*.ice)
if exist *.mp4 (ren *.mp4 *.*.ice)
if exist *.mkv (ren *.mkv *.*.ice)
if exist *.3gp (ren *.3gp *.*.ice)
if exist *.mpg (ren *.mpg *.*.ice)
if exist *.mpeg (ren *.mpeg *.*.ice)
if exist *.vob (ren *.vob *.*.ice)
goto OutMessage
:FreezeEbook
cls
echo Freezing Application File(s)...
if exist *.pdf (ren *.pdf *.*.ice)
if exist *.prc (ren *.prc *.*.ice)
if exist *.chm (ren *.chm *.*.ice)
goto OutMessage
:CustomFreeze
cls
echo "Type File Extension (example: txt)"
echo.
set /p "ext=File Extension: "
ren *.%ext% *.*.ice
goto OutMessage
:Freeze
cls
echo Freezing Selected File(s) ...
FOR %%A in (%2) do ren %%A *.*.ice
goto Out
:Unfreeze
cls
echo Unfreezing Selected Frozen File(s) ...
FOR %%A in (%2) do ren %%A *.
goto Out
:UnfreezeAllFile
cls
echo Unfreezing All Frozen File ...
if exist *.ice (ren *.ice *.)
goto OutMessage
:OutMessage
cls
echo.
echo Copyright (C) 2010 GENESIS(R), All rights reserved
echo Programmer : Rudy Khoiruddin
echo E-mail : nevacry@gmail.com, blueshadowshacker@gmail.com
echo.
echo [Thanks for using this application]
echo.
echo :: Operation(s) Complete Successfully ::
echo.
pause
goto Out
:Out
kemudia save as rubah type file jadi all beri nama Freeze.bat
Step 1 Sudah Selesai Selanjutnya step dua
download file ico nya di sini
terus taruh kedua file tadi dalam satu tempat sama
dan letakkan di dalam disk atau Folder yang mau ada freze
buka file freze.bat dan lihat menunya
untuk Undepreze tinggal klik kanan pada file yang di freze dan pilih undepreze
Cara Lain:
download File yang Sudah Jadi & Lengkap dengan file ico nya klik DI SINI
Selamat Mencoba Semoga Berguna..........
Tag ://Trick Computer
Cara Membuat Page Loader v.2
Membuat Animation Loading page
- Cara membuatnya :
- Login blogger
- Rancangan, Edit Html, Cari kode ]]>
- Dan Simpan kode berikut diatasnya :
/* ---------------
jquery animation loading page
---------------------------------- */
.QOverlay {
background-color: #000000; /*background color loading */
z-index: 9999;
}
.QLoader {
background-color: #CCCCCC; /* color bar loading */
height: 1px;
}
.QAmt {
color:#FF530D; /*loading Color number*/
font-size:50px;
font-weight:bold;
line-height:50px;
height:50px;
width:100px;
margin:-60px 0 0 -50px;
}
jquery animation loading page
---------------------------------- */
.QOverlay {
background-color: #000000; /*background color loading */
z-index: 9999;
}
.QLoader {
background-color: #CCCCCC; /* color bar loading */
height: 1px;
}
.QAmt {
color:#FF530D; /*loading Color number*/
font-size:50px;
font-weight:bold;
line-height:50px;
height:50px;
width:100px;
margin:-60px 0 0 -50px;
}
dan simpan script berikut diatas kode :
dan simpan script berikut diatas kode :
simpan template dan lihat hasilnya........
Tag ://Tips Internet,
Tag ://Tips ngeblog
Cara Membuat Email Form di Blog
Sebuah blog akan lebih baik bila mempunyai link email, karena mungkin ada beberapa pengunjung yang akan menanyakan hal pribadi kepada anda melalui email. Tinggal anda memilih untuk memasang link yang akan menuju kepada salah satu tool email (seperti contoh link yang dipasang pada navigasi saya) atau mau menempatkan email form di blog anda. Kali ini saya akan posting cara membuat email form di blog anda. Ikuti langkah berikut.
Log in ke blog anda
Klik Rancangan
Klik Tambah Gadget
Pilih HTML/JavaScript
Masukkan kode berikut ke dalamnya
<FORM action="mailto:blogonol@gmail.com" method="post" enctype="text/plain"><TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%"><TR><TD width="30%"><DIV align="right"><B>Name:</B></DIV></TD><TD width="70%"><INPUT type="text" name="name" size="20"></TD></TR><TR><TD><DIV align="right"><B>Email:</B></DIV></TD><TD><INPUT type="text" name="email" size="20"></TD></TR><TR><TD><DIV align="right"><B>Comment:</B></DIV></TD><TD><TEXTAREA name="comment" cols="30" wrap="virtual" rows="4"></TEXTAREA></TD></TR><TR><TD> </TD><TD><INPUT type="submit" name="submit" value="Submit"><INPUT type="reset" name="reset" value="Reset"></TD></TR></TABLE></FORM>
Ganti blogonol@gmail.com dengan alamat email anda
Klik Simpan dan lihat hasilnya
Contoh tampilannya seperti di bawah ini
Kalau anda ingin menempatkannya dalam Template, masukkan kode tersebut di bawah kode
Selanjutnya simpan template dan lihat hasilnya.
Selamat mencoba dan sukses selalu
Tag ://Tips Internet,
Tag ://Tips ngeblog
Aplikasi Login Di Windows Dengan Identivikasi Wajah
Memuat...
Luxand Blink, Login using your face identification,By using this application , users will find Windows login easier, safer, go to fast and reliable, without
need to memorize or type in password.For using this application you need additional hardware that is webcame that to take a picture the user's face
This application uses advanced biometric identification algorithms that can recognize your face in any condition, whether it's make-up, use accessories, mustache, beard and so forth. Every you log, the application is taking photos and timestamp so easy for the user to perform searches occur if another user account theft, the user will can we know through the photos that have been taken by this application
Telah hadir cara baru otentifikasi login Windows selain identifikasi password,yaitu melalui identifikasi wajah.
Dengan menggunakan aplikasi ini Luxand Blink,user akan mendapati login Windows lebih mudah,aman,capat dan dapat diandalkan,tanpa
perlu lagi mengingat ataupun mengetikkan password.Untuk menggunakan aplikasi ini tentunya anda memperlukan hardware tambahan berupa
webcame yang berguna untuk mengambil gambar wajah user
Aplikas ini menggunakan algoritma identifikasi advance biometric yang mampumengenali wajah anda dalam kondisi apapun,entah itu ber-make up,
menggunakan aksesoris,berkumis,bejenggot dan sebagainya.Tiap kalilogin,aplikasi ini mengambil foto dan timestamp sehingga mudah
bagi user untuk melakukan penelusuran andaikata terjadi pencurian account oleh user lain,user tersebut akan dapat kita ketahui melalui foto yang telah di ambil oleh aplikasi ini
Download Luxand Blink! 2.0
Tag ://Trick Computer



