Sunday, 2 September 2012

Delete All files fully from HDD.....No one can retrieve it...


You can use the "cipher /w" command-line command to wipe deleted files from the hard 

drives of computers running "Windows.. This will prevent someone running a software 

program such as the free "Recuva Free Edition" from recovering files that you have deleted.


Command Prompt


cipher  /w:e: 


Type at least one space between the "r" in "cipher" and the "/". 

There must be one colon to the right of the "w". 

There must be one colon to the right of the "e". 

However, instead of "e", you might have to substitute the drive letter of the actual 

drive that you wish to wipe.


All u can see in the Below tutorial link


TUTORIAL


Saturday, 1 September 2012

In Many ways you can Change Login Screen....Just Click & Study

How To Change Windows 7 Logon Screen Easily

Download

http://www.julien-manici.com/windows_7_logon_background_changer/


In the Logon Changer U just click any of the pic "APPLY"

After that U pls goto

C:\Windows\System32\oobe\Info\backgrounds

U can see some pics that you have clicked "APPLY" earlier...


Delete the existing images 

Replace it with ur own images....


Tuesday, 7 August 2012

Logo CREATOR ONLINE

Logo creator Online...Click

How to disable google+ share in blogger?

1)Go to Dashboard
2)Click Google +
3)Click to disable (Prompt to share after posting?)

Hide Folders in Windows

Steps

Hide Enable:
1)Windows+R
2)Type "cmd"
3)attrib +s +h   <drive>:\<folder_name> 

Hide Disable


1)Windows+R
2)Type "cmd"
3)attrib -s -h   <drive>:\<folder_name> 


WIN_XP:Hide computer from network using command prompt

Steps:
1)Windows+R
2)Type "cmd"
3)net config server /hidden:yes


Enable

1)Windows+R
2)Type "cmd"
3)net config server /hidden:no

Hide OR Disable users a/c in Windows

1)Windows+R
2)Type "cmd"
3)net user  <username>   /active:no


Enable it ...How???

1)Windows+R
2)Type "cmd"
3)net user   <prev.username>  /active:yes

Google Doodle ... Try it


Wednesday, 1 August 2012

Wednesday, 25 July 2012

How can we change Google site to dot tk Format???


1)visit Click
2)

You are registering the following domain name...

ENGINEER-STYLE.TK
home

Use your new domain

  (Pasteyour google site link)
time

Registration length

Domains can be registered from 1 to 12 months. Registered Dot TK users are allowed an unlimited number of domain renewals.
checked

Type the characters you see in this picture

Type the characters you see in this picture

3) Finally U give ur mail id...

4) U will get one confirmation id ..(check ur mail)
FaceBook Help Section



Click
Make LOGO Online

Click
       For Registration....Plz Clickhere

CLick







Tuesday, 24 July 2012

How do I remove or cancel a friend request I made to someone? 

Click


MS Office 2007  PDF Plugin ,.....How can we save DOC as PDF format? Click



Google Book Downloader  Click






RUBY Installer Click






Programming Language Compiler Online




Difference Between C & Ruby


C Programming Language


      printf ("Input grade :");
      scanf("%d", & grade);

      switch (grade) {
                                 case 1: 
                                              printf("F\n");break;
                                 case 2: 
                                              printf("D\n");break;
                                 case 3: 
                                              printf("C\n");break;
                                 case 4: 
                                              printf("B\n");break;
                                 case 5: 
                                              printf("A\n");break;
                                 default:
                                              printf("Wrong grade choice\n");
                                              break;       
      }


RUBY Programming Language


#!/usr/bin/ruby

$age =  5
case $age
when 0 .. 2
    puts "baby"
when 3 .. 6
    puts "little child"
when 7 .. 12
    puts "child"
when 13 .. 18
    puts "youth"
else
    puts "adult"
end