Hallo,
I have a problem concerning the usage of xp_cmdshell in one of our SQL Server. The server is 2005 (9.0.4035).
The SQL Server and the agent is running with an domain account
I have activated xp_cmdshell with the following commands...
EXEC sp_configure 'show advanced options',1
RECONFIGURE
EXEC sp_configure xp_cmdshell,1
RECONFIGURE
-- Result:
Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
Configuration option 'xp_cmdshell' changed from 1 to 1. Run the RECONFIGURE statement to install.
If I run sp_configure I see that it is enabled!
Next I want to check some existing files
View Complete Post