468x60 Ads

SUBSCRIBES MY BLOG


.

Monday, December 27, 2010

Search Hidden ip Address in the website

at the url, such as google or yahoo or youtube just have a web server. but do you know they have another servers..? like data server or DMZ server...

ok open your command prompt
at the command prompt please type the code below:-

----------------------the code-------------------
nslookup -quirytype=any google.com
--------------------end code---------------------

note: you can change google.com to another website name.

NOTE : - Please Give a credit to my blog if you take the idea from this blog. Peace:-)

Thursday, August 5, 2010

The Real Size of Your Hard Disk or Flash Drive

hi there,

Do you ever Bought harddisk or flashdrive/thumbdrive at the computer shop...??
what size that hard disk or flashdrive...?? 1GB? 2GB? 80GB? 160GB? 250GB? 1TB?

when you attach your Harddisk/flashdrive on the computer,did you notice that your harddisk or flashdrive size, it not enough from the real size that you bought...here you are not being cheated or that device is corrupted...

OK now i will explain in detail what is happen..





Look at the picture above, it show the size of harddisk on partition
kecik88[G:\] is 37.27GB = 40GB(if we bought from computer shop)...

How the calculation:-

40GB = is a DECIMAL number(we read using basic number) while
37.27GB = is a BINARY number(the computer read using binary number)

40GB x 0.931323 = 37.25292GB
80GB x 0.931323 = 74.50584GB
120GB x 0.931323 = 111.75876GB
160GB x 0.931323 = 149.01168GB
250GB x 0.931323 = 232.83075GB
320GB x 0.931323 = 298.02336GB
500GB x 0.931323 = 465.6615GB
750GB x 0.931323 = 698.49225GB
1024GB(1TB) x 0.931323 = 953.674752GB


For Thunmbdrive/flashdrive

128MB x 0.931323 = 119.209344MB
256MB x 0.931323 = 238.418688MB
512MB x 0.931323 = 476.837376MB
1024MB(1GB) x 0.931323 = 953.674752MB
2GB x 0.931323 = 1.862646GB
4GB x 0.931323 = 3.725292GB
8GB x 0.931323 = 7.450584GB

For the vice versa calculation is:-

7.45GB x 1.073741 = 7.99937045(need to rounded to = 8GB)
1.86GB x 1.073741 = 1.99715826(need to rounded to = 2GB)
232GB x 1.073741 = 249.107912 (need to rounded to = 250GB)
and so on....

how can get the number 0.931323 and 1.073741..??

ok how can it get the number 0.931323 and 1.073741...

here the calculation:-

1024^3 = 1.073.741.824
1024^-3 = 9.313225746(need to rounded to 931323)

ok did you understand now..? the number 1024 is a change between measure....
Why ^3 and ^-3 is
conversion from GB-->MB-->KB(this is for ^3) or conversion vice versa from KB-->MB-->GB(this is for ^-3)

^3 = conversion from BINARY to DECIMAL
^-3 = conversion from DECIMAL to BINARY

example for ^3 is 1.073741:-
37.25 x 1.073741 = 39.99685225(rounded to 40GB)

example for ^-3 is .931323:-
40 x 931323 = 37.252920GB


Note...
^ =power(in mathematics)

so this is the knowledge i has learn...i just want to share with you all.....
NOTE : - Please Give a credit to my blog if you take the idea from this blog. Peace:-)

Make your own Task Manager with batch file

Please open your notepad and copy the code below

-----------------------Code--------------------------------------------------------------------
@echo off
mode 33,25
setlocal ENABLEDELAYEDEXPANSION
Title Process Manager
:Begin
CD /D "!TEMP!"
set "TASKLIST=%windir%\system32\tasklist.exe"
set "FIND=%windir%\system32\find.exe"
set "wmic=%windir%\System32\Wbem\wmic.exe"
set "Explore=%windir%\explorer.exe"

:Reload
cls
set num=0
echo.________________________________
echo.[ Process Name ] [ PID ]
echo.--------------------------------
if not defined NAME set NAME=%USERNAME%
!TASKLIST! /FI "USERNAME eq !NAME!" /FO TABLE /NH >"plist.txt"
for /f "tokens=*" %%a in (plist.txt) do (
set /a num+=1
set "list=%%a"
set "list=!list:~0,32!"
echo.!list!
)
echo.________________________________
Del /f /q "plist.txt" >nul 2>&1
Title !NAME! - [!num!] Process Running.
if not defined ac (
if /i "!NAME!"=="%USERNAME%" goto :USR
if /i "!NAME!"=="SYSTEM" goto :SYS
)
if /i "!ac!"=="K" goto :Kill
if /i "!ac!"=="S" goto :SYSTEM
if /i "!ac!"=="U" goto :USER
if /i "!ac!"=="E" goto :Explore
set "ac="
GOTO :Reload

:USER
set "NAME="
set "ac="
GOTO :Reload
:USR
echo.CH : K=Kill, S=System, E=Explore
set /p "ac=Action : "
GOTO :Reload

:SYSTEM
set NAME=SYSTEM
set "ac="
GOTO :Reload
:SYS
echo.CH : K=Kill, U=User, E=Explore
set /p "ac=Action : "
GOTO :Reload

:Kill
echo.Type PID to Kill..
set "ac="
set /p "PID=PID : "
if not defined PID goto :Reload
Taskkill /F /PID !PID! >nul 2>&1
if errorlevel 1 (echo.No Task Running w/ this PID.) else (
if !PID! geq 0 if !PID! lss 10 (
echo.Can't kill Critical Process
goto :clr_var2
) else (
echo.Success : Task with PID=!PID!
echo. has been KILLED..
))
:clr_var2
set "ac="
set "PID="
PAUSE>NUL
GOTO :Reload

:Explore
echo.Type PID to Explore..
set "ac="
set /p "PID=PID : "
if not defined PID goto :Reload
if !PID! lss 10 goto :clr_var
if !PID! gtr 10000 goto :clr_var
!wmic! process get ProcessID,ExecutablePath >"path.txt"
for /f "tokens=1,2 delims= " %%a in ('type "path.txt" ^| !FIND! " !PID! "') do (
set "exepath=%%~dpa"
)
if not defined exepath (
echo.No Task Running w/ this PID.
PAUSE>NUL
) else (START !Explore! "!exepath!")
:clr_var
set "PID="
set "exepath="
Del /f /q "path.txt" >nul 2>&1
GOTO :Reload

:END
----------------------------End CODE-------------------------------------------------------

then paste to your notepad and save as "Task Manager.bat"

NOTE : - Please Give a credit to my blog if you take the idea from this blog. Peace:-)

Sunday, July 25, 2010

Virtual Partition with batch file to "Z:\"

Please open your notepad and copy the code below
------------------------code---------------------------
@echo off
cls
If Exist Z: goto next
subst Z: \.
goto last
:next
subst Z: /D
:last
exit
-----------------------end code-------------------------
then paste to your notepad and save as "Change to Z.bat"

and copy your "Change to Z.bat" into your desire partition such as C:\, D:\, E:\, F:\ and so on...
then double click to active it, and oen your "Computer or My computer on start menu", and to deactivate please double click again to that file.

NOTE : - Please Give a credit to my blog if you take the idea from this blog

How to do a calculator with your batch file

please open your notepad and copy the code below
----------------------------code------------------------------
echo off
cls
echo.
echo This is multiplication calculation
set/p "user=FirstNo=>"
set/p "pass=SecondNo=>"
set /a a=%user%*%pass%
echo so the answers is = %a%
pause >nul
---------------------------end code---------------------------

then paste to your notepad and save as "calculator.bat"

*note = you can change * with +,- and /

NOTE : - Please Give a credit to my blog if you take the idea from this blog

How to open your website using batch file

Please open your notepad and copy the code below
-------------------code-------------------------------------
@echo off
start iexplore www.fareast187.tk
ping localhost -n 2 > nul
start www.fareast187.blogspot.com
ping localhost -n 2 > nul
start www.facebook.com\fareast187
ping localhost -n 2 > nul
start www.youtube.com\faiz187downset
------------------end code----------------------------------

after that paste to your notepad and save as "open website.bat"

NOTE : - Please Give a credit to my blog if you take the idea from this blog

How to disappear your "Press any key to continue . . ." in batch file

Please open you notepad and copy all the code below

--------------Code-------------------
@echo off
echo Hello
echo.
echo no pause are appear
pause > nul
------------End code-----------------

paste to your notepad and save as "no pause.bat"

NOTE : - Please Give a credit to my blog if you take the idea from this blog

Monday, July 19, 2010

My Hack Game 2 :- do you think you can delete this folder..?

this game i create for fun only..
ok first thing this is IQ game....so you need to solve the problem..

WARNING : PLEASE DO NOT SEE THE SOURCE CODE

The Rules is :-
1. DOWNLOAD HERE --> click me
2. Double click at file with name "Security folder.bat"
3. you need to delete 3 folder without seeing the source code in the program.
4. do not see the source code




if you finish delete them all please tell me by drop a comment below this post..
so good luck for you..

NOTE : - Please Give a credit to my blog if you take the idea from this blog

My Hack Game : Im challenge you if think you are hacker

i just create this game while im searching for something about magic lol

now Im challenge you to find a game inside this folder the game name is "pair.exe" its pokemon game like below
HERE THE RULES TO PLAY THIS GAME:-
1. please extract the RAR file to folder first.
2. you can not open the RAR file or you can not double click on the RAR file
3. last thing is you must explain to me by leave a comment below this post.
4. you can not read a comment in this post if you are not complete this game.

you can download game file at below
http://www.mediafire.com/?bf11r83l474400b

im waiting for you answer, how do you solve this hack trick...and good luck for you..

NOTE : - Please Give a credit to my blog if you take the idea from this blog

How to change directory in command prompt

please click on start and choose run and type in the run box "cmd" without quote then it will appear command prompt box like this :-
what you need to do just type in the command prompt "cd desktop" without quote and enter
then you can see like picture below:-


if you want back to normal just type "cd.." without quote and it will change back to normal directory. good luck.

NOTE : - Please Give a credit to my blog if you take the idea from this blog

Thursday, June 24, 2010

FREE Call di seluruh Malaysia


dengan menggunakan Flekx anda boleh membuat panggilan percuma kemana-mana rangkaian sama ada 010,012,013,014,016,017,018,019 di seluruh Malasyia

so apa anda tunggu lagi sila la klik banner kat bawah nie..








We provide free calls only

Wednesday, June 23, 2010

Hidden file behind photo(Dos)



DOWNLOAD MY PROGRAM HERE --> Click Me.
or visit to my website
http://faiz187.tripod.com/
@ http://www.fareast187.tk

Lock thumbdrive (For windows xp only)



echo off
color 1a
cls
Title TAIP PASSWORD
if EXIST autorun.inf goto UNLOCK
if NOT EXIST autorun.inf goto Auto
:UNLOCK
echo.
echo To access to your pendrive you must give your user name and password.
echo Please type your user name and password... below... and press Enter after that.
echo.
set/p "user=User Name=>"
set/p "pass=Password=>"
if NOT %user%==Faiz goto False
if NOT %pass%==123456789 goto FAIL

if EXIST d:\Kecik88.bat goto end
if NOT EXIST d:\Kecik88.bat goto help
:end
start d:

:help
if EXIST e:\Kecik88.bat goto bat
if NOT EXIST e:\Kecik88.bat goto read
:bat
start e:

:read
if EXIST f:\Kecik88.bat goto ping
if NOT EXIST f:\Kecik88.bat goto beat
:ping
start f:

:beat
if EXIST g:\Kecik88.bat goto bat2
if NOT EXIST g:\Kecik88.bat goto lose
:bat2
start g:

:lose
if EXIST h:\Kecik88.bat goto bat3
if NOT EXIST h:\Kecik88.bat goto Faiz
:bat3
start h:

:Faiz
if EXIST i:\Kecik88.bat goto cqtec
if NOT EXIST i:\Kecik88.bat goto rider
:cqtec
start i:

:rider
if EXIST j:\Kecik88.bat goto downset
if NOT EXIST j:\Kecik88.bat goto Rhapsody
:downset
start j:

:Rhapsody
if EXIST k:\Kecik88.bat goto ella
if NOT EXIST k:\Kecik88.bat goto ramone
:ella
start k:

:ramone
if EXIST l:\Kecik88.bat goto stratovarius
if NOT EXIST l:\Kecik88.bat goto maskman
:stratovarius
start l:

:maskman
if EXIST m:\Kecik88.bat goto flashman
if NOT EXIST m:\Kecik88.bat goto gaban
:flashman
start m:

:gaban
if EXIST n:\Kecik88.bat goto BlackRX
if NOT EXIST n:\Kecik88.bat goto Finish
:BlackRX
start n:

:Finish
cls
MSG * TQ...You have access to this pendrive...
Msg * For more information Email me at Thundercat_wacha@yahoo.com Or visit my website at Http://faiz187.tripod.com/
exit

:FAIL
MSG * WRONG PASSWORD...
cls
goto UnLOCK

:False
MSG * WRONG USER NAME...
cls
goto UnLOCK

:Auto
echo [autorun] >> autorun.inf
echo open= >> autorun.inf
echo shell\OPEN=Kecik88.bat >> autorun.inf
echo shell\OPEN\command=Kecik88.bat >> autorun.inf
echo shell\AutoPlay=Kecik88.bat >> autorun.inf
echo shell\AutoPlay.\command=Kecik88.bat >> autorun.inf
echo shell\AutoPlay=Kecik88.bat >> autorun.inf
echo shell\AutoPlays\command=Kecik88.bat >> autorun.inf
echo shell\Explore=Kecik88.bat >> autorun.inf
echo shell\Explore.\Command=Kecik88.bat >> autorun.inf
echo label=Drive Lock >> autorun.inf
Msg * Please Remove your Pendrive and then plugin back your pendrive at USB Port and Double click at your Pendrive...
attrib +r +a +S +H autorun.inf
attrib +r +a +s +h Kecik88.bat
exit

Save as kecik88.bat

If you not save it to Kecik88.bat it does not working...
Then copy kecik88.bat to your pendrive
(example: F:/Kecik88.bat)
and double click at kecik88.bat then Follow the
instruction have given

OR You Prefer to Download it here

CLICK HERE

Sunday, April 25, 2010

[E-BOOK] Shutdown Computer Via SMS (Malaysia Only)

NOW AVAILABLE IN ENGLISH VERSION


Hello Everybody,
as you notice the title above is tell you to shutdown your computer with text message.
before this i has make this service....but almost all the people said it was too expensive.
so now i decided to reduce the price, so i make an E-book for this service and you can learn it step-by-step from this E-book.

This E-book i wrote in Malay/English language, it have two version and easy to understand because it have a picture every Step.

How this service work...?
This service is not only to shutdown your computer but it can do a lot of thing such as :-
1. Play the Music or Movie
2. Open A new website
3. Close an applications
4. Log Off or restart computer

What is benefit you get from this service..?
1. Save your electricity bill
2. prevent from data being stole
3. good for emergency case (when you forget to shutdown)
4. You can do this service as a final year project(FYP).

This Tutorial E-Book I'm selling with the best price RM 40.00(Forty Ringgit Only)
To the people who are bought my previous E-book you can get a discount for Rm 10.00 To buy this E-book.

To who are interested to buy this E-book


AFTER BANK-IN PLEASE KEEP THE RECEIPT AND PLEASE SEND THE PICTURE OF RECEIPT AND YOUR EMAIL ADDRESS TO EMAIL:- thundercat_Wacha@yahoo.com
AFTER THAT YOU CAN GET YOUR E-BOOK.

Note :- I'm accept payment from Online Banking too

Sunday, February 28, 2010

ULTIMATE HACKING TRICK WINDOWS SE7EN (Ebook)

Hello there,

This "ULTIMATE HACKING TRICK WINDOWS SE7EN" is E-Book and this is my second time wrote an e-book in Malay language, the previous book is still available and can buy it from HERE. In this E-book you can learn how to cracking certain file in your own windows seven and it will guide you step-by-step how to do it.

This E-book have 3 chapters, with 139 pages, and size 10.8 MB in portable data file(PDF)
8depan - Share on Ovi8dibelakang - Share on Ovi
The picture below is certain file has modify in Logon screen and we know windows 7 can not be print screen on Logon screen, how do i capture Logon screen..? without use any third party software like VMware also without using handphone or digital camera. So learn step-by-step from this e-book.

16 - Share on Ovi12 - Share on Ovi
14 - Share on Ovi11 - Share on Ovi
15 - Share on Ovi13 - Share on Ovi

and this one

17 - Share on Ovi

Topic Every Chapters


-->
Chapter 1
1-1 Menubar pada Tetingkap Window
1-2 Meletakan perkataan di jam taskbar windows 7
1-3 Hacking Logon Screen dalam windows 7 dan vista
1-3-1 Hacking Password user account anda di logon skrin
1-3-2 Memasuki Account System Pada Windows 7 dan juga vista
1-4 Cara mengambil gambar Logon screen anda
1-5 Menjadikan windows explorer anda kepada “Computer” atau “my computer”
1-6 Membuatkan Microsoft SAM bercakap (XP,vista dan 7)
1-7 Dwi klik dan SAM bercakap
1-8 Membuatkan PDF anda Bercakap
1-9 Melihat web browser anda bergerak
1-10 Hacking manual Microsoft Word 2003 Password
Chapter 2
2-1 Membuatkan Switch tab windows 7 menjadi windows XP
2-2 Membuat Quick Launch Pada Taskbar anda
2-3 Mungubah taskbar anda Seperti Windows XP dan Vista
2-4 Mengawal Mouse Menggunakan Keyboard dalam Windows 7
2-5 Menghilangkan Senarai “Openwith” Pada sesuatu program
2-6 Rahsia SendTo pada windows 7
2-7 Mengubah warna butang pada logon skrin
2-8 Menghilangkan “Search box” pada Internet Explorer 8
2-9 Menggunakan 4 Google Search
2-10 Tulisan pelik di Facebook
Chapter 3
3-1 Trick Mouse pada website
3-2 Free SMS 3 kali Sehari seluruh Malaysia
3-3 Menukar Nama Processor anda
3-4 Mengaktifkan akaun Administrator tanpa menggunakan arahan Command Prompt
3-5 Membuatkan lampu keyboard anda berkelip-kelip seperti lampu Raya
3-6 Trick melihat gambar “thumbnail” myspace menjadi besar
3-7 Trick Membuatkan “Toolbar firefox” anda menjadi banyak
3-8 Membuat “Take Ownership” pada Setiap folder
3-9 Membuat Fungsi “Move To…” dan “Copy To…” pada tetingkap “Right click”
3-10 Mengubahsuai “manufacturer support” pada “View basic information about your computer”
3-11 Menjalankan sesuatu program spesifik sahaja
3-12 Cara mengubah Background logon anda
3-12-1 Tanpa menggunakan Program
3-12-2 Dengan menggunakan Program

This Tutorial E-book I'm selling with the price RM 20.00(Twenty Ringgit Only)
To who are interested to buy this E-book



AFTER BANK-IN PLEASE KEEP THE RECEIPT AND PLEASE SEND THE PICTURE OF RECEIPT AND YOUR EMAIL ADDRESS TO EMAIL:- thundercat_Wacha@yahoo.com
AFTER THAT YOU CAN GET YOUR E-BOOK





Saturday, January 30, 2010

[SERVICES] SHUTDOWN/OPEN WEBSITE/RESTART/LOGOFF COMPUTER VIA SMS(Malaysia)

REFERRAL WEBSITE = Click Here

Hello People,

as you notice the title above, it a service that i do. This service for Malaysia country only.
Here I'll explain a little bit more, When you go outside or you going for holiday you must left your computer alone with no security doesn't matter your computer in the office or at home.
This is very dangerous if you have an important data in your computer that you don't want anyone to look or stole your data.

this service can also open a website or Close and open program or copy the file while you not in front of your Computer this is easy just send your SMS and let your computer do automatically .

What is Benefit for this service is:-
1. Safe your electricity bill
2. Prevent data from stolen by someone who are not responsible.
3. Make your life easier(you don't need to drive back to your office if you are forget to shutdown your computer)


My service is very simple what you do is
Just Send a SMS and your computer will shutdown/restart/log-off/open the website/copy a file or close a program while you not at home or in the office.

Situation1 :-
when you download a bigger file size and it Remaining you the time is 3 days to complete all the download file, but you want to go for holiday tomorrow for a 1 week.
What do you want to do?
Cancel it? or leave it?
using my service you can shutdown your computer anywhere via SMS and safe your electricity bill

Situation 2 :
you have an Emergency Call...but you forget to shutdown/log off your computer...
what you need to do is just send a SMS and your computer will shutdown and no one can access to your computer or your data. This is can done by my service.
EACH SMS ARE SEND IS COST RM 0.20 cent only (SO CHEAP)...

Here the all price for my Service

Price : RM 150(For the setting)
Service charge : RM 30
All the Price can be negotiate

if you are interested please feel free to drop your email to thundercat_Wacha@yahoo.com

Computer Course Final year Project(Fyp)\Trick\, Hacking\Networking\windows 7

Referral Website = CLICK HERE
Hello People, this course for Malaysia Country only

I have make a computer course with using my own syllabus/module and also i make for the course Final year project( for the student university/college and institute. the fee is reasonable.
**class can start anytime(included public holiday) as long as you are ready to study.
**If you interested one of the course please Email to thundercat_Wacha@yahoo.com .The location for study in Kuala Lumpur nearly at Wangsa Maju
**I'm teaching all the course.
**To a company who want me to teach or want to use my syllabus to teach please Email me OK.

Computer Course:-

1.Networking Hand-ON(No theory practical only):

Fee : RM 190
Minimum student : 1 person and above

Module 1 : Networking Media (Twisted pair and Keystone)
Module 2 : Installing client operating system
Module 3 : Installing network operating system
Module 4 : Setup Peer to Peer
Module 5 : Setup Client Server
Module 6 : Hardware Sharing
Module 7 : Remote Desktop
Module 8 : Remote assistance
Module 9 : Files sharing
Module 10: LAN Messenger
Module 11: Setup proxy server
Module 12: Internet Connection Sharing
Module 13: Limit access IP address connection
Module 14: Setup wireless router
Module 15: Virtual Private Network
Module 16: Setup wire and wireless connection
Module 17: Setup Wan Connection
Module 18: Block Website
Module 19: Active Directory
Module 20: Windows Media Streaming

2.Hacking your own windows XP
description : learn Windows Trick
Fee: RM 70
Minimum Student: Two(2) person and above
If bring a friend you'll get discount
Extra topic is hacking password windows xp/2003 with CD windows xp/2003
Chapter 1
1-1 Rename Recycle Bin
1-2 Rename Internet Explorer Title-Bar
1-3 Rename Windows Media Player
1-4 Fast your Start Menu
1-5 Put your picture on Toolbar
1-6 Start Page on Internet Explorer
1-7 Give a Message Before Log-on
1-8 Hide Drive
1-9 prevent to enter your Folder Drive
1-10 Can not Right Click on your Desktop
1-11 Can not Right Click on your Task Bar
1-12 Hiding your Control Panel
1-13 Hiding "Connection To" on your Start menu
1-14 Hiding Turn Off Computer button on your Start Menu
1-15 Hiding Log Off button on your Start Menu
1-16 Hiding Folder My Music on your Start Menu
1-17 Hiding Folder My Pictures on your Start Menu
1-18 Hiding Folder My Documents on your Start Menu
1-19 Hiding Help And Support on your Start Menu
1-20 Hiding All Programs on your Start Menu
1-21 Hiding User Name on your Start Menu
1-22 Hiding Search on your Start Menu
1-23 Hiding Run Box on Start Menu
1-24 Hiding Tray icon that active on your Task-bar
1-25 Hiding Clock on your Task-bar
1-26 Hiding Folder Options on every window
1-27 Block to use a Command Prompt
1-28 Block to use a Task Manager
1-29 Block to use a File "MMC"
1-30 Block to use a [Registry Editor]
1-31 Hiding your User Account


Chapter 2
2-1 Change Title-Bar on Command Prompt
2-2 Put some Color in your Command Prompt
2-3 Change time in your task-bar
2-4 Change Directory in command prompt
2-5 Change date on your task-bar
2-6 Make and delete Folder using a Command Prompt
2-7 Make copy file on the other directory using a Command Prompt
2-8 Hiding File and Folder using Command Prompt
---2-8-1 Hiding File
---2-8-2 Hiding Folder
2-9 Rename file using Command Prompt
2-10 Make Scheduled Tasks using Command Prompt
2-11 Giving a command Shutdown and Restart using Command Prompt

Chapter 3
3-1 Write Registry on Batch File
3-2 Using word "ECHO" on batch file
3-3 Giving command "Start" to open application or program
3-4 Make Folder using Batch File
3-5 Bring out Message Using Batch File
3-6 Make word "Press any key to continue" disappear on your batch file
3-7 Using command "GO-TO" on your Batch file
3-8 Make animation using Batch File
3-9 End task program using batch file
3-10 Using the word "IF" in batch file
3-11 Using "Set" in your batch file program
3-12 Make new Batch File using the word "Echo"
3-13 Make calculator using batch file program

Chapter 4
4-1 Secret behind Microsoft Word
4-2 Secret behind Notepad
---4-2-1 Behind four(4) word
---4-2-2 Make LOG file using text file
4-3 Hiding file behind picture
4-4 Entering account system.
4-5 Bypass password on account user.
4-6 Shortcut trick
4-7 Desktop trick
4-8 Time trick
4-9 Dos Trick
4-10 Produce sound when your Open and close program

Chapter 5
5-1 Trick to change Icon with Rename folder
---5-1-1 'My Computer'
---5-1-2 'Recycle Bin','Control Panel' and 'Internet Explorer
5-2 Change Icon Folder to transparent
5-3 Rename Folder With No Name(BLANK)
5-4 Access Folder 'system Volume Information'
5-5 Naming Folder with 'CON'
5-6 File "Desktop.ini" on Drive
5-7 Using File "Autorun.inf" in your drive

Chapter 6
6-1 Trick Minesweepers
---6-1-1 Cheat to Win
---6-1-2 Stop Time
6-2 Cheat Solitaire
6-3 Cheat Free cell
6-4 Cheat Pinball
6-5 Cheat Hearts
6-6 Creativity Microsoft Paint
---6-6-1 Enlarging and small tools
---6-6-2 Combination color
---6-6-3 Trick replacement color
---6-6-4 Make animation 3D using paint

Chapter 7
7-1 Block Website
7-2 Trick Change website

Chapter 8
8-1 JavaScript
8-2 "Myspace" Trick
8-3 Google Trick
8-4 Download Video from "youtube"

Chapter 9
9-1 Make your own Log-in windows
9-2 Change your Start Menu with your name
9-3 Modify System properties
9-4 Modify System properties(Support)

Chapter 10
10-1 Make illusion Drive/partition to alphabet [Z:\]
10-2 Put a command on "Menu Right Click" to every folder
10-3 Hiding Last User log-in
10-4 Prevent changing your start page internet explorer
10-5 Delete Virus in your Pen drive/Thumb drive
10-6 Modify Task-bar and Start Menu Properties (Task-Bar Tab)
10-7 Modify Task-bar and Start Menu Properties (Start Menu Tab)
10-8 Modify Customize Start Menu (Advanced Tab)
10-9 Modify Customize Start Menu (General Tab)
10-10 Modify Shutdown dialog box in Windows XP

3.Resources hacker

Fee : RM 40
Minimum student : one(1) person and above
Tools : Resources Hacker and Windows XP
If Bring a friend you'll get discount

Module 1 : Hack games minesweeper sound and menubar
Module 2 : Modify Taskbar and Start Menu Properties (TaskBar Tab)
Module 3 : Modify Taskbar and Start Menu Properties (Start Menu Tab)
Module 4 : Modify Customize Start Menu (Advanced Tab)
Module 5 : Modify Customize Start Menu (General Tab)
Module 6 : Modify Shutdown dialog box Windows XP
Module 7 : Membuat Login windows anda sendiri
Module 8 : Change your Start Menu to your name
Module 9 : Meodify System properties


4.Command Prompt, DOS and batch files

Fee : Rm 30
minimum student : one(1) person and above
If Bring a friend you'll get discount
topic 1 - Basic Command
topic 2 - make program calculator
topic 3 - program time changer
topic 4 - program color changer
topic 5 - Program Matrix
topic 6 - looping create account and folder
topic 7 - Animated batch file
topic 8 - make LOG(you'll know what time your computer has been access)
topic 9 - make program bank
topic 10 - simple database(just record only)
topic extra - make your own task manager
5.HACKING YOUR OWN WINDOWS 7

COMING SOON (THE BOOK IS STILL IN THE PROCESS)
when the book is release this will be update.
Course final year project(FYP):-

1.Lock PC using Flash drive(make flash drive as a key):-
Learn: program batch file,C++ dan vbs
Tool: Flash drive anda
Fee: RM50
Minimum student: one(1) person and above
If Bring a friend you'll get discount
http://www.youtube.com/watch?v=EvGFLXL0bcQ
2.Lock Flash drive with batch file:-

Learn: program batch file,password pada flash drive
Tool: your own Flash drive
Fee: RM20
Minimum student: one(1) person and above
If Bring a friend you'll get discount
3.snap your finger and computer Shutdown(without using mouse and keyboard):-
Learn: configure software,snap finger(Support Windows 7)
Tools: Microphone (you'll get software Full version)
Fee: RM30
Minimum student: one(1) person and above
If Bring a friend you'll get discount
4.Control computer using Email(Networking):-
Learn: batch file,Email and Microsoft office
Fee: RM20
Minimum student: one(1) person and above
If Bring a friend you'll get discount