Hi,
I am running this under my windows login in ssms, which is administrator on the server:
declare @cmd varchar(100)
set @cmd = 'dir \\networkpath\file'
exec xp_cmdshell @cmd
ERROR:
The network path was not found.
Is this a permissions problem? Why can't xp_cmdshell see the unc path?
Thanks
I am running this under my windows login in ssms, which is administrator on the server:
declare @cmd varchar(100)
set @cmd = 'dir \\networkpath\file'
exec xp_cmdshell @cmd
ERROR:
The network path was not found.
Is this a permissions problem? Why can't xp_cmdshell see the unc path?
Thanks