Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > VB Script

Vista - Finding 16-bit applications / MS-DOS

Reply
 
Old 10-15-2008   #1 (permalink)
Jakob


 
 

Finding 16-bit applications / MS-DOS

Hi!
I am looking for scripted way to find out which .exe files of a system
are 16-bit applications.

Does anybody have an idea which methode i could use?

Thanks!
Jakob

My System SpecsSystem Spec
Old 10-15-2008   #2 (permalink)
Pegasus \(MVP\)


 
 

Re: Finding 16-bit applications / MS-DOS


"Jakob" <jakob.hager@xxxxxx> wrote in message
news:e1c14a3d-0ccd-4562-968c-f37820182e40@xxxxxx
Quote:

> Hi!
> I am looking for scripted way to find out which .exe files of a system
> are 16-bit applications.
>
> Does anybody have an idea which methode i could use?
>
> Thanks!
> Jakob
You could run this batch file:
@echo off
set target=c:\Program Files\My Application
if exist c:\DOS.txt del c:\DOS.txt
for %%a in ("%target%\*.exe") do filever "%%a" | find /i " DOS " >>
c:\DOS.txt
notepad c:\DOS.txt

You can get filever.exe from here:
http://www.microsoft.com/downloads/d...displaylang=en


My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
I'm finding for.. Software
finding files Vista file management
Several applications are trying to access the internet to specific ip address 10.0.0.138 & 224.0.0.2, while ARE NOT internet applications! ref/eDN3072784783 Vista General
Finding files Vista file management
finding the iso for rc1 Vista General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46