Не заходит на большинство сайтов.
На некоторые заходит всегда - например Gismeteo.ru

Посмотрел RSIT (только Sсan), что-то там не то. Но т.к. в этом деле профан ...
Решил лучше обратиться к вам !!!
Надеюсь, все, что нужно, я вложил
Спасибо!
- Вложения



Код: Выделить всё
start
CreateRestorePoint:
GroupPolicy: Restriction - Chrome <======= ATTENTION
GroupPolicyScripts\User: Restriction <======= ATTENTION
HKLM\SOFTWARE\Policies\Microsoft\Internet Explorer: Restriction <======= ATTENTION
HKU\S-1-5-21-329068152-1957994488-839522115-1003\SOFTWARE\Policies\Microsoft\Internet Explorer: Restriction <======= ATTENTION
BHO: No Name -> {8984B388-A5BB-4DF7-B274-77B879E179DB} -> No File
FF DefaultSearchEngine: http://www.mail.ru/
FF DefaultSearchUrl: hxxp://go.mail.ru/search?q={searchTerms}&utf8in=1&fr=ietb
FF SelectedSearchEngine: mail.ru: Поиск в Интернете
FF Extension: Спутник @Mail.Ru - C:\Documents and Settings\slir.COMPUTER000\Application Data\Mozilla\Firefox\Profiles\nahd6ha2.default\Extensions\{37964A3C-4EE8-47b1-8321-34DE2C39BA4D} [2014-01-04] [not signed]
EmptyTemp:
Reboot:
endКод: Выделить всё
var
LogPath : string;
ScriptPath : string;
begin
LogPath := GetAVZDirectory + 'log\avz_log.txt';
if FileExists(LogPath) Then DeleteFile(LogPath);
ScriptPath := GetAVZDirectory +'ScanVuln.txt';
if DownloadFile('http://dataforce.ru/~kad/ScanVuln.txt', ScriptPath, 1) then ExecuteScript(ScriptPath) else
begin
if DownloadFile('http://dataforce.ru/~kad/ScanVuln.txt', ScriptPath, 0) then ExecuteScript(ScriptPath)
else begin
ShowMessage('Невозможно загрузить скрипт AVZ для обнаружения наиболее часто используемых уязвимостей!');
exit;
end;
end;
if FileExists(LogPath) Then ExecuteFile('notepad.exe', LogPath, 1, 0, false)
end.