Skip to main content

Posts

Showing posts from 2012

Convert a volume from FAT to NTFS without formatting the drive.

Convert a volume from FAT to NTFS without formatting the drive. 1 Open CMD 2 Type:  Convert [Drive name]: /FS:NTFS 3 Press Enter Example: Convert c:/FS:NTFS If you find any difficulty or you have any questions then you can leave your comments or drop an email to my inbox. Don't forget to Like , Subscribe and share the post. Enjoy

How to shutdown computer remotely using IP Address

Hello Readers, I am back with a new exciting post "How to shutdown computer remotely using IP Address" Before i start, Let me clear one thing that this hack will only work if you are on the same network. That simply means you must be on school or college lab where each computer system is connected with same network. To do this first thing you need to know the "IP address of the other computer" (which you want to shutdown) Steps: To find the IP Address of the target computer 1. Goto -> Start Menu 2. Click on Run 3. Type Cmd 4. Press Enter CMD window will be opened , Now type this command to get the IP address of the computer which you want to hack. Type ipconfig Press Enter your will see IP after this command Now note down this address  Goto your computer  Now open CMD in your computer NOW TYPE THE FOLLOWING COMMAND  TYPE shutdown -i PRESS ENTER A window will appear named as "Re

@@STEP BY STEP GUIDE FOR INSTALLING WIN-7@@

Installing Windows 7 As with any OS installation, we must first plan the installation process. Here are some of the most important things you should take into consideration when planning for your Windows 7 installation:   Check System Requirements It is required before starting the process to check whether your system is capable to install windows 7 or not. For this Microsoft provides a tool called windows 7 upgrade advisor which checks your system configuration and display the results. Download this tool from here  Windows 7 Checker                                  Types of Installation                                            There are two options available when we are installing windows 7 Upgrade (In-place upgrade) - This option replaces your current version of Windows with Windows 7, and keeps your files, settings, and programs in place on your computer. Custom ("fresh" installation) - This option replaces your current version of Windows wi

@@STEP BY STEP GUIDE FOR INSTALLING WIN-XP@@

                            INSTALLING WINDOWS XP                            Step 1 : Prepare The Boot Sequence                      Insert the windows XP cd in your cdrom and than go to the BIOS by hitting “DEL” or “F12″ when your system in powering on. Go to Boot order and make sure cdrom is on the first place. Save settings and restart your computer. Once you have successfully booted from the CD, you will see the Windows XP “Welcome to Setup” screen. Press ENTER to begin the setup process.                                      Step 2: Accept the license agreement When you see the Windows XP license agreement press F8 to accept it and proceed.        Step 3: Searching for Previous Versions of Windows XP        Setup will search for existing Windows installations. You will see the next “repair or install fresh copy” screen appear only if a Windows installation currently exists on your machine. If you’re installing on a brand-new hard drive, skip to Step 5.  

3D ANALYZER SETTINGS FOR JUST CAUSE

Hello Readers, In this post you will find just cause 3d analyzer settings  Tick following options 1. Emulate HW TnL 2. Antidetect Shaders And then click on run to start the game If you find any difficulty or you have any questions then you can leave your comments or drop an email to my inbox. Don't forget to Like , Subscribe and share the post. Enjoy

3D ANALYSER SETTINGS FOR DEVIL MAY CRY 3

       Emulate HW TnL Force SW TnL Emulate pixel shader caps Check skip pixel shader version 1.1 Check skip pixel shader version 1.4 Check skip pixel shader version 2.0 Check force 100 hz Check disable lighting

3D ANALYSER SETTINGS FOR COLD FEAR GAME

OPEN 3D ANALYSER IF YOU DO NOT HAVE THEN DOWNLOAD IT FROM HERE http://www.2shared.com/file/_1hGoxEZ/3danalyzer-v236.html NOW OPEN 3D ANALYSER SELECT COLDFEAR.EXE AND TICK THE FOLLOWING OPTIONS AND THEN SELECT RUN TICK= emulate HW TnL TICK= force SW TnL TICK= dx8.1 caps THEN CLICK ON RUN...

HIDE ENTIRE DRIVES PARTITION WITHOUT ANY SOFTWARE

HERE IS A COOL TECHNIQUE WHICH HIDES ENTIRE HARD DISK DRIVES BY A SIMPLE PROCEDURE. THIS IS THE BEST SECURITY TIP TO BE EMPLOY AGAINST UNAUTHORISED USERS. 1) GO TO START > RUN > TYPE “DISKPART”. A DOS WINDOW WILL APPEAR WITH FOLLOWING DESCRIPTION. DISKPART> 2) THEN TYPE “LIST VOLUME” THE RESULT WILL LOOK SOMETHING LIKE ONE AS SHOWN BELOW- 3) SUPPOSE YOU WANT TO HIDE DRIVE E THEN TYPE “SELECT VOLUME 3″ THEN A MESSAGE WILL APPEAR IN SAME WINDOW { VOLUME 3 IS THE SELECTED VOLUME} 4) NOW TYPE “REMOVE LETTER E” NOW A MESSAGE WILL COME { DISKPART REMOVED THE DRIVE LETTER } SOMETIME IT REQUIRES TO REBOOT THE COMPUTER. DISKPART WILL REMOVE THE LETTER. WINDOWS XP IS NOT HAVING CAPABILTY TO IDENTIFY THE UNKNOWN VOLUME. YOUR DATA IS NOW SAFE FROM UNAUTHORISED USERS. TO ACCESS THE CONTENT OF HIDDEN DRIVE REPEAT THE PROCESS MENTIONED ABOVE. BUT IN 4TH STEP REPLACE ” REMOVE” BY “ASSIGN”. IT MEANS TYPE “ ASSIGN LETTER E ”.

10 Reasons why you should learn 'C'

1) C is lower level then other programming languages (C++, Java). Programming at a lower level allows you to further your understanding of computers, as a whole. 2) Device drivers and operating systems are written exclusively in C. Now, you may never write a device driver or an operating system, but what if you are ever required to modify one? (......) 3) What if you ever want to get a job programming micro controllers? They are programmed in C. Are you going to limit your possible list of jobs because you didn't want to learn a new language? 4) C programs are smaller and faster then any other program created in a different language. Sometimes your program needs that speed boost that only C can give it. 5) If you have learned C, you can learn any modern programming language. The reason behind this is that all modern programming languages are based on C (Java, C++, C#, etc). 6) Because C has been around for many years, it has a large community and col

$$$$Matrix Effect$$$$

1-Open Notepad. Copy the below mentioned text in your notepad file: @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% goto start NOTE: FOR EDUCATIONAL PURPOSE ONLY.I AM NOT RESPONSIBLE FOR IF ANYTHING GOES WRONG.... 

Tweaks to Optimize Your Computer For Gaming

Tweaks to Optimize Your Computer For Gaming 1-Regularly clean your cpu and its internal parts from dust which is generally settled in your most important computer parts such as cpu fans,heat sink,graphic card fan,ram etc.. if you don’t take care of it, it’ll slowly start to deteriorate your hardware.. 2-Hard Drive Space:-Make sure you have good amount hard disk space in PC if you dont have then upgrade your harddisk or remove unused applications... 3- Defragmentation-When using a hard drive, space is used wherever available. As such, some files are fragmented all over the disk. The defragment utility analyzes your hard drive, and attempts to consolidate those fragmented files, in an attempt to optimize your computer and speed up your system.

$$$CLASS FOR LIBRARY IN C $$$

Class for Library # include # include // Creating a basic template for book and magazine class lib { private: char title[20]; char pub[20]; unsigned int acc_no; public: //method for getting inputs void get_details() { cout<<"Enter the book title"< >title; cout<<"Enter the publisher name"< >pub; cout<<"Enter the accession number"< >acc_no; } //method for showing output void show_details() { cout<<"Title : "< >author; } void show_details() { lib::show_details(); cout<<"Autohr : "< >editor; } void show_details() { lib::show_details(); cout<<"editor : "< } }; void main(void) { clrscr(); //creating objects book b; magz m; b.get_details(); m.get_details(); b.show_details(); m.show_details(); getch(); }

$$$$$$hide folders using cmd!!!!!!nice trick$$$$$$

$$$$$$hide folders using cmd!!!!!!nice trick$$$$$$ You can now easily hide your files or folders through Command Prompt suppose you want to hide a folder name games in your F drive Then open the command prompt goto run and type cmd(windows xp users) simply click on start menu type cmd in search box( windows 7 users) Type:- attrib +s +h F:\games and if you want to make that folder appear Type:- attrib -s -h F:\games where; +h = to hide the folder +s = to list it as system file - so the hidden will be protected by system enjoy the trick frndsssss!!!!!!!!

$$$$USB is not detecting by my Computer what's wrong?$$$$

Fix For Mobile (Mass Media/Storage Mode): • First Check out Your sd card no password on your Card • Use Pc suite mode (for fixing this problem) • Now • Goto Device Manager • Disable that Installed Driver Now again Enable it • Now Restart Your Phone And Pc. • Connect our mobile to USB's port • Now it prompt n installation proceed Fix For USB Not Recognized: • Firstly Check whether Your USB port is Disabled by System or not. • Link: http://computerfunz.blogspot.com/2011/05/how-to-enable-or-disable-usb-port.html • Now Follow this Steps • Goto Device Manager or • Start • RUN type Devmgmt.msc • Now you have to search for USB Controller Hub or Universal Serial Bus controllers • Now click Properties. • Now Click on Power Management tab • >Allow the computer to turn off this device to save power >click OK. • Now Hit > Scan for hardware changes. >Now it Start Detecting New Drivers for USB.

$$$$What is J2ME, What is JAD AND Jar ? $$$$

What is J2ME ?? • Java 2 Platform Micro Edition (J2ME) • It is Java Platform which is used in Mobile Paltform. • It is advanced technology from Java For Mobile • It is Generally Used in Mobile phones For Java Application run by java MIDP (Mobile Information Device Profile) • That MIDP's application called Java MIDlet (application) What is JAD / .jar: Java Application Descriptor (JAD) • It is File Extension Of Java MIDlets • This JAD files describes Java MIDlets (Java Micro Edtion applications) That are distributed in JAR files of Mobile Phone. Uses: This files Which are commonly used to Rebuilt or Package the Java applications Like Java software's and games for mobile phones. What Is .Jar / jar? • Java ARchieve • .Jar is the file extension of java application. • Java Archieve are used to Create the JAVA application using JDK (Java Developer Kit). or • Java ARchieve are used to create the groups or bundle the data

$$$$Computer Buses$$$$

What is Mean by BUS [In terms of computing] ??? Answer: • A Circuit that connects the CPU with other Peripheral Devices of a Computer to send and retrieve data instructions or data codefrom directly CPU/Microprocessor. • The Data Transfer of the Buses is done with the helps of Bus lines • BUS is bi-direction in itself • it send data,signal and i/o function to memory or processor Types Of Computer Buses: In generally there are 3 types of computer bus 1.Address bus 2.control bus 3.Data bus 1. Address bus: • It is an specific a physical address of the Memory Address 2. Control bus: • it control or receive input output operation signal from The Microprocessor to Other peripheral of computer

Cache memory

Hello Readers, Today i will discuss about cache memory and its importance. Importance • It Is Small faster Memory which stores copies of the data from the most frequently used by main memory location • Actually it is placed between Microprocessor & RAM. • It stored address of memory location by which microprocessor don't need to cache its address again and again. Once Cache Memory Cached That Address then RAM and Microprocessor Directly Operate it rapidly. Uses • Due to cache memory,average latency memory is increases • and also It gives faster access to currently needed data • It also reduces average time of accessing memory for RAM and Microprocessor • It is special type of memory which is use to fast access to microprocessor Types: 1.  Level 1 (L1) cache or Primary Cache -  L1 is the primary type cache memory. The Size of the L1 cache very small comparison to others that is between 2 KB to 64 KB. 2.  Level 2 (L2) cache or Secondary Cache -