Sunday 13 November 2016

Steps to use USB Pen Drive as RAM in Windows Vista and Windows 7 and 8

Using a USB Pen Drive as RAM in Windows Vista and Windows 7 and 8

 

1.Insert your pen drive and format it.


2. Right click on your pen drive and click on "Properties".


3. Click on 'Ready boost' tab and then on 'Use this device'.


4. Choose maximum space to reserve system speed


5. Click on OK and Apply.

6. You're done! Use your pen drive as RAM.

Warning :

Don’t remove USB drive when your using as RAM if you remove USB there will be chances to crash OS. So do it carefully with your own risk and enjoy your USB Ram Speed.
When ever you think no need USB ram means you just format your pen drive the use it as normal USB drive.

Creating Bootable USB drive for Windows installation



Creating Bootable USB drive for Windows installation

 

1 The first step is to obtain a .iso image file of windows xp, vista, 7 , 8, 10 are supported for this method 

2.     The next step is to open the command promt with administrator rights. 

3.     Go to start , in the search bar type cmd , and right click the cmd file and select run as administrator.

4.     In the cmd program you need to type the following commands


5.     Type diskpart press Enter button then Type listdisk Press Enter .

6.     Type select disk1(disk 1 is my usbdrive , you need to select your usb drive , you will recognize the usb drive by its size)

7.     Type clean press Enter then type create partition primary press Enter then type select partition 1(or 2,3,4 depending on what number is your usb drive)

8.     Type active press Enter then formatfs=ntfs quick (the formating process will take about 2-5 minutes)

9.     After the formatting process is done you will continue.

1Then type assign (this will usually change the usb drive letter to H or G)

11.                        Then exit (this will exit the disk part but not the cmd)
12.                        After this process completion , Now you needs to copy the windows OS files into USB pendrive.
 
Now your USB drive is now bootable . still you can change Windows Os using USB drive without CD drive.

Convert Text Into Audio Using Notepad



Convert Text Into Audio Using Notepad

  1. Open Notepad file on your Windows PC.
  2. Copy and paste the below mentioned code :

Dim msg, sapi
msg=InputBox("Enter your text for conversion–KSR Networks","Knowhacking Text-To-Audio Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speakmsg
  1. Save this file with any name with .vbsas extension. For eg. Text-To-Audio.vbs


That’s it ! Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section.

Create your own Folder Loker on Windows Without Using Any Software



Create your own Folder Loker on Windows Without Using Any Software

How many times have you wished of a software using which you can hide or lock files,  restricting its access to other unwanted users. Although there are various software available in market using which you can easily lock/hide files but, I personally don’t trust them because most of them are bloatware or spyware.
In this post i am going to share a simple yet powerful way of locking and hiding important files using a the following method. Follow the instructions to make you own Locker
( Without any software !! ) :

  • Open notepad.
  • Copy the following code in notepad file :

cls
@ECHO OFF
title KSR 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 by KSR locker(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%==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
  • Change the “YOUR PASSWORD HERE” with your password.
  • Save it as batch file ( with extension .bat ) For eg. Locker.bat
  • Now you will see a batch file. Double click it to create a folder locker ( A new folder named Locker would be formed at the same location )
  • Thats it you have now created your own locker and that too without using any software !
  • Brings all the files you want to hide in the locker folder.
  • Double click the batch ( As created above ) file to lock the folder namely Locker.

If you want to unlock your files, simple double click the batch file again and you would be prompted for password ( In DOS window ). Enter the password and enjoy access to the folder.
Warning
Don’t delete .bat file after locking your file, If you delete the file it will make way to loose your locked file so don’t delete it.