How to Make a Installed Programs List Program
by TheNerdySmallSmartCoder45 in Circuits > Microsoft
799 Views, 10 Favorites, 0 Comments
How to Make a Installed Programs List Program
This Will ShowYou How To Make A Simple Installed Programs List Program
Save It As
Name It As Whatever You Want But Put .bat Or The Program Won't Work
The Code
Here Is The Code:
@echo off
title Lister
echo Loading Products...
wmic product get name
echo Done!
echo Press Any Key To Exit
pause >nul
exit
Testing
When Your Done Save It And Test It!
AND YOU'RE FINISHED!