Viewing 2 posts - 1 through 2 (of 2 total)
exec master..xp_cmdshell 'ipconfig'
January 30, 2007 at 4:53 am
#686402
declare @t varchar(100)
select @t = 'ping ' + host_name()
exec master..xp_cmdshell @t
January 30, 2007 at 3:39 am
#686388