Sunday, December 28, 2014

HOW ABOUT WINDOWS 10







 

 

 

 

 

 

  System requirements

·         Processor: 1 gigahertz (GHz) or faster
·         RAM: 1 gigabyte (GB) (32-bit) or 2 GB (64-bit)
·         Free hard disk space: 16 GB
·         Graphics card: Microsoft DirectX 9 graphics device with WDDM driver
·         A Microsoft account and Internet access 

      Also, keep in mind that some processors and hardware configurations still are not supported by the Technical Preview, so if you have driver problems there’s a chance your hardware isn’t supported. You will also need to have a monitor capable of running a minimum of 1024 x 768 resolution in order to access the Windows Store to download apps. Also, after you install the preview you will no longer able able to play DVDs using Windows Media Player, which means that they are moving people over to the new Windows 8.1 video player which was problematic in Windows 8.1 because you had two video players for all video files. This is a clear indication that Windows 10 Preview gets rid of that and very likely that Windows 10 as a whole will do away with Windows Media Player. Windows 10 Preview will also remove Windows Media Center if you have Windows 8 Pro and install the preview.

      If you have Windows RT 8.1 (ARM-based tablets) the Windows 10 Preview will not work for you either. Microsoft had already said that they will address the Windows 10 ARM situation at a later date (very likely in 2015) but that Windows RT will be folded into Windows as a whole and no longer operate as a separate OS. The same goes for Windows Phone, which will also carry the Windows 10 name scheme, but since it too is based on ARM we probably won’t see anything until 2015.

      If you’re running Windows 7, 8 or 8.1 and your default installed language isn’t English, Chinese or Portugese you will only be able to keep your personal files when you upgrade, you will lose all of your apps and Windows settings. Additionally, if you have a language pack or language interface pack, those will also be removed when you install the Windows 10 Preview

      Also, some older 64-bit CPUs may be blocked from installing the preview (AMD 64-bit Athlons, perhaps?) but Microsoft gives no explanation why.


 

Friday, December 26, 2014

How to create a Password Protected Folder in Windows


  Create a new folder and name it whatever you would like.  





Open the folder, right-click on a blank area in it, then select New -> Text Document from the pop-up menu. 















Open the text file you just created by double-clicking it and copy/paste in the following text:   

cls
@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%== PASSWORD_GOES_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 


In the above code, replace the key PASSWORD_GOES_HERE with the password you want to use to unlock the folder. For example if you want the password to be 123456, the line should look like: 

if NOT %pass%== 123456 goto FAIL 


Save your new file in the .bat format with the complete file name being locker.bat. To do this, make sure to change the Save as type: to All Files (*.*)













Thursday, December 25, 2014

How To Remove Shortcut Virus From Pen drive/Memory Card





 Many of us had and having this problem. We have some most important data in our  pen drives,  what  will we  do  if all  the  data are loss?  At  some day, all  the  folders which are in

our drive is just showing as shortcuts in Windows (as shown in the above figure).

     This problem may cause not only in pen drives, also in memory sticks, phone memories, external hard disks etc. If we trying to open those folders Windows will show an error that “Shortcut missing…!” We afraid of losing our data and somebody format the drive. But no need to afraid for this and format. Yes, this is a type of virus affection. Just follow the simple steps to remove that shortcuts and retrieve your folders back.


  1. After plug in your virus affected drive, just press Win key + R to open Run box and type “cmd” and press Enter key. (Without double quotes)
  2. In the opened command prompt, open your drive by enter your drive letter as shown in the below figure. For example, if your drive letter is enter g: and press Enter. (To find your drive letter just open “My Computer” and check your drive icon)
  3. Now type “del *.lnk” and hit Enter.(without double quotes)
  4. Finally type the below command and hit Enter. (without double quotes)
  5. “attrib -s -r -h *.* /s /d /l”    

 








         That’s it, just wait some seconds. Then open and check your drive. Your folders will be retrieved. I hope this is useful for you. If any doubt, comment below. Share with your friends. Don’t forget to subscribe us freely…
NOTE: This will definitely recover all the folders, but it wont completely remove all the virus, better you scan the drive with an antivirus.

source: Remove Shortcut Virus