Question : Browser not able to find web sites but computer can ping sites

I have a windows XP Pro PC with networking issues.  The network adaptor picks up an IP address correctly and in a command line I can ping other computers on the network and internet sites such as google.  But through a web browser (IE and Firefox) I can't get to any web site - get the standard page not found type message.  Also Network places on the computer can't 'see' any other computer on the network.  It appears to be free of viruses (has NOD32 installed and also checked with Malware Bytes).

I've tried a windows repair but that made no difference.

Any ideas?

thanks
Paul

Answer : Browser not able to find web sites but computer can ping sites

Then, the morning after the cut off date, run this script, and it will read the text file and disable the accounts.

Regards,

Rob.
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:
Set objFSO = CreateObject("Scripting.FileSystemObject")
Const intForReading = 1
Const intForAppending = 8
strDisableAccountsFile = "\\serverxx\tracking\UsersToDisable.txt"
strDisabledReportFile = "\\serverxx\tracking\DisabledUsers.txt"
Set objOutput = objFSO.OpenTextFile(strDisabledReportFile, intForAppending, True)
Set objFile = objFSO.OpenTextFile(strDisableAccountsFile, intForReading, True)
While Not objFile.AtEndOfStream
	strUserDN = objFile.ReadLine
	If Trim(strUserDN) <> "" Then
		Set objUser = GetObject("LDAP://" & strUserDN)
		objUser.AccountDisabled = True
		objUser.SetInfo
		Set objUser = Nothing
		objOutput.WriteLine strUserDN
	End If
Wend
objFile.Close
objOutput.Close
Set objFile = Nothing
Set objOutput = Nothing
Set objFile = objFSO.CreateTextFile(strDisableAccountsFile, True)
objFile.Close
Set objFile = Nothing
MsgBox "Accounts that have been disabled have been written to " & VbCrLf & strDisabledReportsFile & VbCrLf & "and the file of users to disalbe has been cleared " & strDisableAccountsFile
Random Solutions  
 
programming4us programming4us