Posts

AUTO OPENING WEB SITE FOR SPECIFIC TIME & AUTO CLOSING WEB SITE

__AUTO  SITE OPENING CODE FOR SPECIFIC TIME -SIMPLE _____________________________________________________  @echo off :loop echo Opening the website... start "" "https://www.mobiledoctor.org.in/" "https://www.shop.mobiledoctor.org.in/" timeout /t 30 /nobreak >nul echo Closing the browser... taskkill /im chrome.exe /f >nul 2>&1 taskkill /im msedge.exe /f >nul 2>&1 taskkill /im firefox.exe /f >nul 2>&1 timeout /t 1 /nobreak >nul goto loop __________________________________________________________________________________

auto folder create bash script

______________________________________________________________________________ :ar md %random% goto ar ________________________________ Explanation: :ar This is a label in a batch file. Labels are used as jump points for the goto command. :ar is the name of the label here. You can jump to it using goto ar . md %random% md stands for "make directory" (alias for mkdir ), used to create a new folder. %random% is a built-in environment variable in batch scripts that returns a random number between 0 and 32767 each time it's called. So this line creates a directory with a random name like 12345 , 30294 , etc. goto ar This causes the script to jump back to the :ar label , creating an infinite loop . Every time it loops, it creates a new directory with a new random name. What this script does: It infinitely creates folders with random names in the directory where the script is run. If left running, it will: Fill up the screen with ...