Posts Tagged ‘xps’

Finally – XP sound card driver for Dell XPS 430

Friday, May 15th, 2009

Finally thanks to driverpacks.net forum I have found sound card driver for my Dell XPS 430.

Sadly but Dell has built driver for this card to works only on Windows Vista and on IDT site it’s impossible to download drivers because they have such agreement with OEMs that they cannot provide drivers by themselves.

Pukkita has modified one of the IDT sound card drivers for Gateway and it works on my Dell.

Link for download you can find on Pukkita’s blog as well as Paypal Donations link.

“‘Agent XPs’ component is turned off as part of the security configuration for this server.” error while creating maintenance plans on MsSQL server 2005

Monday, October 13th, 2008

While trying to create some maintenance plans on MsSql server 2005 (default installation) with SP2 installed I have received this error message:

'Agent XPs' component is turned off as part of the security configuration for this server.

While trying different solutions from Microsoft, MSDN and different forums I have found one that worked for me. Open new query window, copy code below and hit F5 for executing. After this you can create plans.

sp_configure 'show advanced options', 1;

GO

RECONFIGURE;

GO

sp_configure 'Agent XPs', 1;

GO

RECONFIGURE

GO