Sudharsan Engineering college

Sudharsan Engineering college

21/09/2014

HOW TO RECOVER VIRUS INFECTED HIDDEN OR SHORTCUT FILES FROM PENDRIVE WITHOUT ANY SOFTWARE
Now a days peoples are using Pen drives to store important informations or to exchange data from one computer to another. We all know the problems that we are facing while performing this operation. That is VIRUS. As we are using pen drives in different computers, viruses easily entering inside our storage media and infecting our files.
*
*
If pen drive is infected by virus, mostly our files which are stored in pen drive may get hidden. When we open our pen drive, nothing will be present there except some shortcut files. But if we check the storage size, it will display as like some files are still present. If there is no important files better format your pen drive or follow the below given procedures to recover your hidden files from pen drive.
*
*
To recover your hidden files from pen drive, you no need of any extra software to be installed. Follow the steps correctly
First insert your pen drive in any one of your computer's USB slot.
*************************************************************************************
Open start ---> Run ---> Cmd and click enter or Press winkey + r and type CMD
**
Now check, in which location your per drive is, ie ) E or F or G or H etc..
**
If it is in "F" Then type in cmd as " ATTRIB -H -R -S /S /D F:\*.* " without quotes.
That all, press enter and see the magic
**************************************************************************************

21/09/2014
WELL SAID
21/09/2014

WELL SAID

ஒரு குட்டி கதை :கடவுள்: கழுதையைப்படைத்து அதனிடம் சொன்னார். நீகழுதையாகப் பிறந்து, நாள் முழுவதும்பொதி சுமப்பாய். உனக்கு சி...
21/09/2014

ஒரு குட்டி கதை :

கடவுள்: கழுதையைப்
படைத்து அதனிடம் சொன்னார். நீ
கழுதையாகப் பிறந்து, நாள் முழுவதும்
பொதி சுமப்பாய். உனக்கு சிந்திக்கும் திறனே கிடையாது. புல்லைத்
தின்று 50 ஆண்டுகள் வாழ்வாய்.

கழுதை: கழுதையாகப் பிறந்து 50 ஆண்டுகள் வாழ விருப்பமில்லை. 20 ஆண்டுகளே போதும்.

கடவுள்: அப்படியே ஆகட்டும்
கடவுள்: நாயைப் படைத்து அதனிடம்
சொன்னார். நீ மனிதனின்
வீட்டை பாதுகாத்து அவனுக்கு நல்ல
நண்பனாய் இருப்பாய். மனிதன் தரும்
மிச்ச மீதிகளை உண்டு 30 ஆண்டுகள் வாழ்வாய்.

நாய்: 30 ஆண்டுகள் எனக்கு அதிகம். 15 ஆண்டுகளே போதும்.

கடவுள்: அப்படியே ஆகட்டும்.

கடவுள்: குரங்கைப் படைத்து அதனிடம்
சொன்னார். நீ மரங்களில்
கிளைக்கு கிளை தாவி குழந்தைகளை மகிழ்விப்பாய். 20 ஆண்டுகள் உயிர் வாழ்வாய்.

குரங்கு: எனக்கு 10
வருடங்களே போதும் சாமி.

கடவுள்: அப்படியே ஆகட்டும்.

கடவுள்: மனிதனைப் படைத்தார். நீ
சிந்திக்கும் ஆற்றலுடன் பிறப்பாய். உன்
அறிவைப் பயன்படுத்தி எல்லா உயிர்களையும் உன் கட்டுப்பாட்டுக்குள்
கொண்டுவருவாய். 20 ஆண்டுகள் உயிர் வாழ்வாய்.

மனிதன்: சாமி. 20 வருடம் எனக்கு ரொம்ப குறைவு.

கழுதை வேண்டாமென்று சொன்ன 30 வருடங்களையும், நாயின் 15 வருடங்களையும், குரங்கின் 10 வருடங்களையும் எனக்குத் தாருங்கள்.

கடவுள்: அப்படியே ஆகட்டும்.

* அன்றிலிருந்து மனிதன் 20 வருடங்கள்
மனிதனாகவும்,
* பின் திருமணம் செய்து 30 ஆண்டுகள் கழுதையைப்
போல குடும்பப் பாரம் சுமந்தும்,
* குழந்தைகள் வளர்ந்த பின் 15 ஆண்டுகள்
நாயைப் போல வீட்டைப் பாதுகாத்தும்,
* கடைசிப் பத்து வருடங்கள் குரங்கைப்
போல தன் ஒவ்வொரு மகன் அல்லது மகள் வீடு சென்று பேரக் குழந்தைகளை மகிழ்விக்கிறான்........

HOW TO LOCK FOLDER WITHOUT USING ANY SOFTWARE IN WINDOWS OSOPEN NOTEPAD**copy the following code **cls  OFF title Folder...
05/09/2014

HOW TO LOCK FOLDER WITHOUT USING ANY SOFTWARE IN WINDOWS OS

OPEN NOTEPAD
*
*
copy the following code
*
*
cls
OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End




*
*
now find this line, if NOT %pass%==type your password here goto FAIL
Remove type your password here and enter your password that u want
*
*
Save it as folderlock.bat
*
*
now double click the batch file "folderlock " and the folder name "locker" will formed in the same location and then add the data u want to hidden
*
*
TO LOCK:
Now double click the batch file named folderlock,press y
*
*
TO UNLOCK:
double click the batch file and enter the password

HOW TO ENJOY YOUR STUDY :-)STEP 1: Studying can be less stressful once you set your desk/area up comfortably, remember y...
31/08/2014

HOW TO ENJOY YOUR STUDY :-)
STEP 1:
Studying can be less stressful once you set your desk/area up comfortably, remember you are not alone (you have friends, class mates, and teachers/lecturers who would all be willing to help you), and practice good study habits.
*
*
STEP 2:
Your teacher/lecturer is there to help you! Ask questions. Don't worry about whether they sound dumb or if they've already been answered, ask anyway.
*
*
STEP 3:
Your study area should be a quiet area away from distractions and people (unless in a study group). Include: water & snacks, spare pens & paper, large working/writing space, class notes, wall calendar with due dates, whiteboard/important information (teacher/lecturer emails), and list of 'To do' by specific dates.
*
*
STEP 4:
Do not treat studies as work. Treat it as something you want to do, not what you have to do. This is for your benefit, not anybody else.
*
*
STEP 5:
Be positive. Whenever you open your book to study, think about how it will help you and will enhance your knowledge. No matter what the reasons your parents, teachers, or anybody else gives you, this whole experience is specifically to further your life and to improve it.
*
*
STEP 6:
Do not be afraid. Some people may be frightened at the sight of books. One way to make them seem less scary is to start with websites, general background information, asking other people about the topic, and writing down your own opinions before you begin tackling those mountains of books.

28/03/2014

Address

Sudharsan Engineering College Sathiyamangalam Pudukkottai District
Pudukkottai
622501

Alerts

Be the first to know and let us send you an email when Sudharsan Engineering college posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The School

Send a message to Sudharsan Engineering college:

Shortcuts

Share

Category