Posts

Showing posts from January, 2019

How to make a simple webpage using notepad ?

Image

How to make unlimited folders ?

Image
1. See this video 2. Code: @echo off rem make unlimited folders title Unlimited Folders :A md %random% goto A exit

How to hack WinRAR ?

Image
1. See this video

Delete all Junk files Coding

Image
Delete all junk files with coding: 1. See this video. 2. Coding is given here : Coding : @echo off rem Program to delete junk files (Credits to Kushal Ajwani) title Deleting all files del *.* /f /a echo Credits to Kushal Ajwani exit