Created
April 6, 2017 14:32
-
-
Save mattmc3/04eeb50c845ff0e1bc026ea181b0db52 to your computer and use it in GitHub Desktop.
MSSQL - enable OLE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| exec sp_configure 'show advanced options',1; | |
| go | |
| reconfigure; | |
| go | |
| sp_configure 'Ole Automation Procedures', 1; | |
| go | |
| reconfigure; | |
| go | |
| sp_configure 'show advanced options', 0; | |
| go | |
| reconfigure; | |
| go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment