Integrity checks

D

DelJo63

Users should ALWAYS be able to write to their private directories -- after all, that's IS where My Documents\ are anchored.
get a command prompt
type echo %USERPROFILE% >my_profile.txt
also try DIR /Q . >my_files.txt

Another verification is IPCONFIG vs TRACERT
IPCONFIG /ALL should report the PC ip address and the GATEWAY​
Tracert -d 8.8.8.8 should show the path to the google DNS, but ALWAYS begin at the same GATEWAY address​

if tracert first line is not the GATEWAY show by ipconfig, then verify the ROUTING TABLE with
route print >my_routing_table.txt
The the default route ( 0.0.0.0 ) must be one address and the other must exist, otherwise you have some form of trojan or virus!!​
 
Back