How to Make a C:/Windows Checker
by TheNerdySmallSmartCoder45 in Circuits > Microsoft
1075 Views, 5 Favorites, 0 Comments
How to Make a C:/Windows Checker
This Is A Tutorial To Make This Simple Program
Open Notepad
Press WIN Button + R Multiple Times Until Run Comes Up. Then Type In "notepad" and press Enter
Save It Just in Case
Save It As Anything You Want But .bat Has To Be At The End Of Your Title Or The Program Won't Work
Coding Part 1
Type In:
@echo off
title System Check-Up
echo Would You Like To See Th Files In Windows?
echo Press The X Button For No
echo Press Any Key For Yes
pause >nul
Coding Part 2
Now Type In:
cd C:\Windows
tree
cd C:\Users
echo Done!
echo Press Any Key To Exit
pause >nul
exit
(Checking Will Take A While Depending On How Big Your C:/Windows File Is)
Testing the Program
Save It Then Open The Program That You Created And Test It.
When Your Done testing It...
You're DONE AND FINISH!