View Single Post
Old 11-20-2003, 10:43 PM   #5 (permalink)
charliex
Junkie
 
Location: North Hollywood
find the path and filename of one of the executables that doesn't work, usually right click properties will tell you the path and name

then open a cmd prompt with Start / run / cmd

when the cmd prompt opens
cd path_of_executable
nameofprogram.exe

then see if it spits out a message

so for a program istalled in C:\program files\some\program.exe
you'd do

cmd
cd "C:\program files\some"
program.exe

use quotes if there are spaces in the directory name as i have.


this will at least tell you if its saying anything, rather than just quitting with no message.

Its possible the file associations for exe or such are broken, but then pain shouldnt run either, all i can think of is an exe attaching virus thats attaching itself to programs that aren't protected by windows file protection ( which should replace the bad files with good ones after an infection ) and since the user installed programs aren't protected in this way, they can be infected easily.

but its hard to say, might be something completely different
charliex is offline  
 

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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73