Generate list of installed programs


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. @echo off
  2. dir "C:\Program Files" /b /s >c:\temp\apps.txt
  3. grep .exe C:\temp\apps.txt >c:\temp\exes.txt
  4. start c:\temp\apps.txt
  5. start c:\temp\exes.txt

Report this snippet


Comments


You need to login to view comments.