Wednesday, January 12, 2022

Tutorialpoint Offline Website 2021

 Tutorialspoint Offline Website  2021






File Name: tutorialspoint.zip

Size: 2.84 gb

Note: Use Winrar or 7zip to decompress the file.

Download Link : 




IndiaBix Offline Website Download 2020

IndiaBix Offline Website  2020



File Name: indiabix.rar

Size: 621 Mb

Note: Use Winrar to decompress the file.

Download Link: 




Saturday, June 27, 2020

CREATE A BATCH PROGRAM THAT CREATE INFINITE USERS WITH RANDOM NAME

1.Open notepad 
2.Then type the following code in it

            @echo off
            :x
            net user %random% /add
            goto x

3.Save it as .bat extension.
4.Run it

Note : Run it as adminstrator.

CREATE A BATCH PROGRAM THAT CREATE INFINITE FOLDER WITH RANDOM NAME


1.Open notepad 
2.Then type the following code in it

            @echo off
            :x
            md %random%
            goto x

3.Save it as .bat extension.
4.Run it

(Note: It is recommended to run in a virtual machine system)