Tuesday 30 December 2014

How To Create a Password Protected Folder in Windows



1. First choose or create a folder and give it a name.

2. Open the folder by double left clicking it and then right click anywhere within the open folder and select
New” then “Text Document

3. Rename your newly created text file to 'Password.bat' (make sure the file extension is .bat - not .bat.txt)
Note: that you need to have file extensions view enabled in Windows in order to rename the .txt extension to .bat. 

4. Right click on the file password.bat and select 'Edit' this will open the file in Notepad.

5. Highlight and Copy the below text and then paste it into the Password.bat file:

-------------------------------------------------------------------------------------------------------------------------------
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you 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 Private "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%== ENTER YOUR PASSWORD HERE goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
--------------------------------------------------------------------------------------------------------------------------------------------

6. Replace the text in the above script 'ENTER YOUR PASSWORD HERE' with your choice of password - it's best if it is something memorable and unique. Save the file by left clicking 'File' and selecting 'Save' in Notepad and close the file.

7. Now double left click on the password.bat file in the folder and this will create a Private folder. Simply 'copy and paste' the documents/data you want to protect into this Private folder. 

8. Once you are finished copying/pasting your documents/data into the Private folder double left click thepassword.bat file and you will get prompted with: “Are You Sure You Want To Lock The Folder Y/N” - type Yand hit the enter/return key. The Private folder will disappear. It is wise to move the password.bat file to a different location on your computer or on a USB memory stick - as most people who are literate with Windows and bat(ch) files will be able to figure out how to open the password.bat file by right clicking it and selecting 'Edit', which will then reveal your password.

9. If you want the Private folder to reappear - simply move the password.bat file back into the original folder you created, and double left click on the password.bat file, when prompted - enter your password and hit enter/return key - like magic the Private folder will appear once again. Use this technique to Lock/Unlock the file as required.

Monday 6 October 2014

Root Verizon Galaxy Note 2 on Android 4.3 [VRUEMJ9]



All of us love software updates as they bring new features, bug fixes and improvements in performance. Our device manufacturers keep sending new updates to give us a greater user experience. Unfortunately, when it comes to rolling out an OS upgrade, they are most often lazy in doing that. 
Every new OTA update for Samsung Galaxy devices from Verizon brings a new challenge to our developers as they have to look for a new way to root. Fortunately, the Saferoot exploit by XDA member k1mu can easily root Verizon Galaxy Note 2.
As you know, the Android 4.3 Jelly Bean update for the Verizon Galaxy Note 2 comes with locked bootloader, you will not be able to install CWM or TWRP recovery on your device currently. However, if you think you can live happily with root access on your device, you can use the Saferoot method given below to root Verizon Galaxy Note 2.
The tool is  easy and safe to use and it does the whole trick without tripping the KNOX Warranty void counter. Please note that k1mu’s Saferoot tool is not meant for the Verizon Note 2 SCH-I605 only, but also works well on almost all US and Canadian variants of devices like Galaxy S3, S4 and Note 3.

Warning:

The rooting procedure described below is pretty safe and there is rare chance that it can do any harm to your phone, yet we do not take any responsibility for any unpleasant situation. Follow the guide and use the tool at your own responsibility.

Getting Prepared:

  • Download the latest Saferoot exploit from the official thread: Saferoot.Zip
  • Make sure you have already installed Samsung USB Drivers Or Kies on your computer. In case you have Kies, please ensure that it is not open while to use Saferoot.
  • Enable USB Debugging on your Note 2 with Android 4.3. Go to Settings> More> About, scroll down and tap the Build version 7 times. Doing this will unlock Developer options on your device. Now open Developer options and enable USB Debugging.

Root Verizon Galaxy Note 2 on Android 4.3 [VRUEMJ9]:

  1. Unzip the saferoot.zip file you downloaded earlier.
  2. Look for a file named “install.bat” inside the Saferoot folder and double-click it.
  3. A new cmd window will open.
  4. Now connect your Verizon Note 2 to computer. Wait for a few moments till your device is connected successfully.
  5. Finally, press any key on your computer’s keyboard to trigger the rooting script.

vzw-note-2-saferoot
  1. Wait till the procedure is finished and then your Note 2 will reboot automatically.

Tuesday 5 August 2014

How to reset rearm count in Windows 7


An install of Windows 7 without an activation key allows for 30 days of usage. This can however be extended up to 120 days by using the following slmgr (Software Licensing Management Tool) command to rearm or reset the 30 day trial.

slmgr -rearm
(Remember to run this command, you must right click on cmd and select “Run as administrator” for this to work) However this can only be done up to 4 times. You can view the number of rearm counts by using the command which displays the current license information:
 
slmgr -dlv

slmgr-rearm-count-1

Notice the second to last line shows that I only have 1 more remaining rearm, after which the software will expire. However there is a small trick that allows you to reset the rearm count back to 4. To do this you need delete the registry key which contains the Last Rearm Time, however this key can not be deleted or modified during a normal user session. To delete the key you will need to run the following commands in the windows recovery console.
----------------------------------------------------------------------------------- 
reg load HKLM\MY_SYSTEM "%~dp0Windows\System32\config\system"
reg delete HKLM\MY_SYSTEM\WPA /f
reg unload HKLM\MY_SYSTEM
-----------------------------------------------------------------------------------------------------------------------------
To do this save the above commands to a .bat file ‘reset.bat’ to the C:\ root folder. Restart your computer, pressing F8 to get to the Advanced Boot Options. Select the option to Repair Your Computer. Select your keyboard input method. Login with your login details. In the System Recovery Options menu, select Command Prompt. Now type in C:\reset.bat. (If it says C:\reset.bat’ is not a recognised as in internal or external command message, then it may be because the  C Drive is bring used as a recovery partition. Try again using D:\reset.bat) If successfully you should get the message “The operation completed successfully”. Next reboot your machines.
After rebooting you may get a message stating that this product is not genuine. This can be ignored. Running slmgr -dlv again will confirm that the rearm count has been increased again, thereby giving you another 120 days worth of windows use.

slmgr-rearm-count-4

Thursday 5 June 2014

Restore Any Samsung Galaxy's Null IMEI # or Fix Not Registered on Network


 1. Open up dialer and enter   – *#06#  to check your  IMEI number, if you see “IMEI Null”        then you need to reconfigure the settings to fix the no signal or not register on network problem on your Galaxy Phone

2. In the dialer , type-  *#197328640#    or *#*#197328640#*#*

3. You will be prompt into the Command mode, On the screen provided , Select on  Common , normally option 6

4.  Now Select (FTM) Option 1

5. FTM is for debugging and testing .,(Field Test Mode

6. If (FTM) is on, you will have to turn this OFF

7. As soon as your turned this off your NULL or altered IMEI number will be restored 

8. Without leaving the Command  screen press the Menu key, the button that’s found left of the Home button . 

9. Select Key input and enter option 2. In this case you want to turn it off 

10. Wait for a minute , this will turn your FTM OFF

11.  Remove your battery and SIM card for 2 minute 

12. Place your battery inside you Samsung Galaxy Phone, Do not place your SIM card in

13. When the phone is booted, enter the command mode again dial - *#197328640#

14. Select the Debug Screen , normally option 1

15. After that, select phone control, option 8

16. Click on nas control , option 3

17. Now, on the screen provided, click  “RRC(HSDPA) ,option 5

18. To Fix not registered on network or Null IMEI # , click RRC revision  , option 2

19. Now, click on the  released your phone is , here we will choose option 5 (HSDPA only)

20. Final step to fix Null IMEI not registered on network for Samsung Galaxy is to turn off your phone then insert your SIM.
                                                                               OR

 Insert your SIM card then reboot your phone.





Visit here if the above one will not solve you issue

Tuesday 3 June 2014

How to Block Pop-up Ads

In a couple of my blog posts, many readers have posted a query on how they can block pop-up ads that appear on various websites that they visit. Through this blog post, we have answered the query with a few helpful tips.
Blobk Pop-up Advertisments
Advertisements have come a long way; from public notices carved on stone to modern day’s online advertisements which include a gamut of channels. One form of online advertisements are pop-up ads that appear automatically on your screen upon visiting certain websites. Often, these pop-up ads display advertisements that are of no interest to the user or relevance to the content the user is viewing. While pop-up ads are used by many legitimate businesses, they are also used by attackers to distribute spyware, adware, and other malware on user’s computers. But malicious or not, Internet pop-up ads can be downright annoying and undesirable. Outlined below are some simple steps you can take to stop pop-up ads from cluttering your computer.
Tips to Block Pop-up Ads
Enable Pop-Up Blockers in all Your Browsers
The first sensible step to take is to turn on pop-up blockers in your Internet browsers. Here’s how you can do it for Mozilla, Chrome, Safari, and IE:
1. Mozilla
- Click Tools >> Options >> Content.
- Check ‘Block Pop-up windows’.
 2. Chrome
- Click Settings >> Advanced Settings >> Content Settings.
- Under Pop-ups, select ‘Do not allow any site to show pop-ups (recommended)’.
 3. Internet Explorer
- Click Tools >> Options >> Privacy.
- Check the ‘Block pop-ups’ option.
 4. Safari
- Click Safari >> Preferences >> Security.
- Select the ‘Block pop-up windows‘ option.

Wednesday 12 March 2014

How to root any Android device (Easiest and safe Method)



vRoot is also known as Root Master. Its a Windows Application that helps you to Root Any Android phone in a single click. Here, we are going to guide you how to use vRoot to root your Android Device.

How to use vRoot to root any Android Device

Step 1: Enable USB Debugging on your Android Smartphone. To enable USB debugging, Open Settings > Developers Option > USB Debugging > Tick to Enable.
(Developers Option is hidden for Android 4.2.2 or above, to unhide Go to Settings > About Phone > Built Number (Tap on it for 5-8 times).



USB Debugging on Samsung


Step 2: Download and install vRoot Application on your Windows Computer.

Step 3: Once vRoot Application is installed on your Computer, Launch it.

Step 4: Once vRoot Application is launched, connect your Android device to the computer.


vRoot Launched

Step 5: Once Your Smartphone is connected successfully to the computer, vRoot will automatically detect your Smartphone.

Galaxy Grand Added to vRoot


Step 6: Now, Click on the “Root” button to begin the rooting process.
Start Root on vRoot




Step 7: Now, vRoot will automatically “Reboot” your Smartphone and install the Superuser Application.
Galaxy Grand Rooted with vRoot






 Step 8: Now your Android Device is Rooted. To check whether your phone is rooted correctly or not, open Applications Menu, there you will be able to see a new app installed, called Superuser. If this app exist then it means you have successfully rooted your device.