Posts

Top 10 Cool Programming Tricks In Notepad

Image
Note:- How to terminate VBS processes Before start to have fun with these cool notepad tricks, you should know that the  problem while trying files with “.vbs” extension is that you might not find how to stop these processes you have just initiated and for that follow the steps below- Open your Task Manager Search for a process named “wscript.exe” or “cscript.exe”. Right click that process and click “End Process” and again “End Process” Voila !! You have ended the process, now no more drive ejection or other hacks will work until you start them again. 1:- Make Your Keyboard Type (Any) Message Continuously-VBS Trick This VBS trick can make any of your friend's keyboard type any message continuously.  Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs. You will need to restart your computer to stop this. Try this after closing all important programs. Set wshShell = wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell

How to Create a Password Protected Folder Without any Software

Image
Steps To Protect a Folder With Password Protection: Step 1. Click Start and Open Notepad .  Copy the below code and paste it into the notepad. Notepad @ECHO OFF if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Private goto MDPrivate :CONFIRM echo Are you sure to lock this 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 Your Secure Folder set/p "pass=>" if NOT %pass%== cybomaniacxgoto 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 :FAI

How to Enable Windows Photo Viewer in Windows 10

How to Enable Windows Photo Viewer in Windows 10 Windows Photo Viewer is available as an option if the device was upgraded from an earlier version of Windows, e.g. Windows 7, you would see the Windows Photo Viewer directly in the Default Apps menu under Settings. If you have installed Windows 10 from scratch, you need to follow these steps to activate it: § Download these   Activate Windows Photo Viewer on Windows-10   for the Windows photo viewer § Extract and double click on the “Activate Windows Photo Viewer on Windows 10” file § Now Registry of Windows Photo Viewer will be added. You need to make it as default now, for this go to Control Panel\Default Programs\Set Default Programs. Find the Windows Photo Viewer from the list and after selecting it, click on “Set This Program as Default”. Now you are done. § Next, restart your computer and your beloved Windows photo Viewer should be back. And if you wish to deactivate it, just run the ‘Deactivate Windows Photo Viewer on Windows 1