Search found 3 matches

by BlinkyBlinky
23 Feb 2018 07:52
Forum: DOS Batch Forum
Topic: Script to audit hardware and software
Replies: 5
Views: 10577

Re: Script to audit hardware and software

Thank you so much Hackoo for your fix as well as the script clean up. The only bugs I have is that based on the stackoverflow reference is that we need to parse 2 registry key values "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\" "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninsta...
by BlinkyBlinky
22 Feb 2018 10:34
Forum: DOS Batch Forum
Topic: Script to audit hardware and software
Replies: 5
Views: 10577

Re: Script to audit hardware and software

Updated VBscript code used to get software (This needs to be called from or embed in the original batch file) Once I have found what is causing the loop 'constants Const ForReading = 1, ForWriting = 2, ForAppending = 8 Const TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0 Const HKLM = ...
by BlinkyBlinky
21 Feb 2018 08:44
Forum: DOS Batch Forum
Topic: Script to audit hardware and software
Replies: 5
Views: 10577

Script to audit hardware and software

Hello Dos Coders. I am trying to create a batch file that will create a simple text report on a machine, that lists both hardware and software installed. I have attached the code that does the hardware report but there is a loop that I think might be coming from how I am trying to report on the free...