• 0

Error disabling Connection


Question

I would like to disable my eithernet network connection and I get a error saying error disabling connection - It is not possible to disable the connection at this time. This connection maybe using one or more protocols that do not support Plug and play, or it may have been initiated by another user or the system account., If any help it would be great.

Link to comment
https://www.neowin.net/forum/topic/348866-error-disabling-connection/
Share on other sites

16 answers to this question

Recommended Posts

  • 0
got the same problem any help?

586459729[/snapback]

my problem was because i installed xpize and netcfgx.dll got changed in such a way that it would no longer function. try replacing that file with a known-to-be good file using an app called replacer and see if that helps.

  • 0

THIS HELPED ME!!!!

PRB: Cannot Enable or Disable a Network Device from the Network Connections Folder

SYMPTOMS

If you have a network device driver with an unsigned co-installer and you use the Windows XP operating system, you cannot disable or enable the device from the Network Connections folder (that is, you cannot right-click the device and then click Enable/Disable).

You can, however, enable or disable the device from the Device Manager.

CAUSE

The Device Manager runs in the logged-on user context and is, therefore, allowed to disable or enable devices with unsigned co-installers. However, the request from the Network Connections folder to enable or disable devices is sent to a LocalSystem service, which is not allowed to enable or disable devices because an unsigned co-installer cannot be trusted to run in the logged-on user context.

STATUS

This behavior is by design.

  • 0

I have exactly this same problem,

This happened when I installed Autopatcher XP August 2006.

I get this very error of not being able to disable internet connection from connections menu. I have to do it everytime from the device manager.

So far I have tried replacing netcfgx.dll and it didn't work. And I have also tried the following method too..

corrupted crypo service database...

Click Start, click Run, type cmd in the Open box, and then OK.

At the command prompt, type the following commands, pressing ENTER after each line:

net stop cryptsvc

ren %systemroot%\System32\Catroot2 oldcatroot2

reboot the computer back to normal mode.

None of them worked for me. Please tell me what to do.

Regards,

Furqan

i've had lots of similar problems when i installed xpize :pinch: very poor software

What did you do remove them? Except for ofcourse a new install.

  • 0

Hello everyone, I've been looking into this problem and I think I've come to a solid conclusion. My first hint was numerous posts regarding Cryptographic Services. Anyways it seems that this error is caused by corruption in the db or problems with registered DLL files required by the service. Awhile back I found a little batch script that fixes common Cryptographic Services problems; this script was originally created to correct a Windows Update error (0x800710D9) but seems to also be relevant in this situation that seems to be caused by Autoruns. I suspect by the Speed Tweaks area; but this is just a guess.

This script has been tested on SP1 and SP2 Windows XP Pro systems, should work fine for Home as well.

Hope it helps you all out

Copy between --START-- and --END-- then just paste into a file and name it fixdb.bat

--START--

@echo off

:: Batch file that tries to remedy error # 800710D9

:: "Unable to read from or write to the database".

:: Author: Torgeir Bakken

:: Date: 2004-08-30

cls

echo This batch file will now try to remedy the error 0x800710D9.

echo To abort and not run it now, hold down Ctrl and press C.

echo Otherwise press the space bar to continue.

pause

:: Stop the Cryptographic service

%SystemRoot%\System32\net.exe stop CryptSvc

:: Rename all log files in the %SystemRoot%\Security folder

FOR %%a in (%SystemRoot%\Security\*.log) DO move /y %%a %%a.old

:: Rename the %SystemRoot%\System32\CatRoot2 folder

move /y %SystemRoot%\System32\CatRoot2 %SystemRoot%\System32\CatRoot2old

IF not exist %SystemRoot%\System32\CatRoot2 GOTO CONT01

:: In case the folder rename failed because of locked files

:: rename all log files in the %SystemRoot%\System32\CatRoot2 folder

FOR %%a in (%SystemRoot%\System32\CatRoot2\*.log) DO move /y %%a %%a.old

SET catroot2locked=True

:CONT01

cls

echo.

echo Please wait, this might take some time...

:: Unregister DLL files that are associated with Cryptographic Services

CD /D %SystemRoot%\System32

start /wait regsvr32.exe /s /u softpub.dll

start /wait regsvr32.exe /s /u wintrust.dll

start /wait regsvr32.exe /s /u initpki.dll

start /wait regsvr32.exe /s /u dssenh.dll

start /wait regsvr32.exe /s /u rsaenh.dll

start /wait regsvr32.exe /s /u gpkcsp.dll

start /wait regsvr32.exe /s /u sccbase.dll

start /wait regsvr32.exe /s /u slbcsp.dll

start /wait regsvr32.exe /s /u cryptdlg.dll

:: Reregister DLL files that are associated with Cryptographic Services

start /wait regsvr32.exe /s softpub.dll

start /wait regsvr32.exe /s wintrust.dll

start /wait regsvr32.exe /s initpki.dll

start /wait regsvr32.exe /s dssenh.dll

start /wait regsvr32.exe /s rsaenh.dll

start /wait regsvr32.exe /s gpkcsp.dll

start /wait regsvr32.exe /s sccbase.dll

start /wait regsvr32.exe /s slbcsp.dll

start /wait regsvr32.exe /s cryptdlg.dll

:: Configure and start the Cryptographic service

%SystemRoot%\system32\sc.exe config CryptSvc start= auto

:: Start the Cryptographic Service

%SystemRoot%\system32\net.exe start CryptSvc

cls

echo.

If "%catroot2locked%"=="True" GOTO CONT02

echo Finished, please reboot the computer and then try to install SP2 again...

GOTO END

:CONT02

echo Please run the batch file again with a newly restarted computer...

echo (but if it is newly restarted, just do a reboot and then try

echo to install SP2 again)...

GOTO END

:END

echo.

pause

--END--

  • 0

Hello everyone, I've been looking into this problem and I think I've come to a solid conclusion. My first hint was numerous posts regarding Cryptographic Services. Anyways it seems that this error is caused by corruption in the db or problems with registered DLL files required by the service. Awhile back I found a little batch script that fixes common Cryptographic Services problems; this script was originally created to correct a Windows Update error (0x800710D9) but seems to also be relevant in this situation that seems to be caused by Autoruns. I suspect by the Speed Tweaks area; but this is just a guess.

This script has been tested on SP1 and SP2 Windows XP Pro systems, should work fine for Home as well.

Hope it helps you all out

Copy between --START-- and --END-- then just paste into a file and name it fixdb.bat

--START--

@echo off

:: Batch file that tries to remedy error # 800710D9

:: "Unable to read from or write to the database".

:: Author: Torgeir Bakken

:: Date: 2004-08-30

cls

echo This batch file will now try to remedy the error 0x800710D9.

echo To abort and not run it now, hold down Ctrl and press C.

echo Otherwise press the space bar to continue.

pause

:: Stop the Cryptographic service

%SystemRoot%\System32\net.exe stop CryptSvc

:: Rename all log files in the %SystemRoot%\Security folder

FOR %%a in (%SystemRoot%\Security\*.log) DO move /y %%a %%a.old

:: Rename the %SystemRoot%\System32\CatRoot2 folder

move /y %SystemRoot%\System32\CatRoot2 %SystemRoot%\System32\CatRoot2old

IF not exist %SystemRoot%\System32\CatRoot2 GOTO CONT01

:: In case the folder rename failed because of locked files

:: rename all log files in the %SystemRoot%\System32\CatRoot2 folder

FOR %%a in (%SystemRoot%\System32\CatRoot2\*.log) DO move /y %%a %%a.old

SET catroot2locked=True

:CONT01

cls

echo.

echo Please wait, this might take some time...

:: Unregister DLL files that are associated with Cryptographic Services

CD /D %SystemRoot%\System32

start /wait regsvr32.exe /s /u softpub.dll

start /wait regsvr32.exe /s /u wintrust.dll

start /wait regsvr32.exe /s /u initpki.dll

start /wait regsvr32.exe /s /u dssenh.dll

start /wait regsvr32.exe /s /u rsaenh.dll

start /wait regsvr32.exe /s /u gpkcsp.dll

start /wait regsvr32.exe /s /u sccbase.dll

start /wait regsvr32.exe /s /u slbcsp.dll

start /wait regsvr32.exe /s /u cryptdlg.dll

:: Reregister DLL files that are associated with Cryptographic Services

start /wait regsvr32.exe /s softpub.dll

start /wait regsvr32.exe /s wintrust.dll

start /wait regsvr32.exe /s initpki.dll

start /wait regsvr32.exe /s dssenh.dll

start /wait regsvr32.exe /s rsaenh.dll

start /wait regsvr32.exe /s gpkcsp.dll

start /wait regsvr32.exe /s sccbase.dll

start /wait regsvr32.exe /s slbcsp.dll

start /wait regsvr32.exe /s cryptdlg.dll

:: Configure and start the Cryptographic service

%SystemRoot%\system32\sc.exe config CryptSvc start= auto

:: Start the Cryptographic Service

%SystemRoot%\system32\net.exe start CryptSvc

cls

echo.

If "%catroot2locked%"=="True" GOTO CONT02

echo Finished, please reboot the computer and then try to install SP2 again...

GOTO END

:CONT02

echo Please run the batch file again with a newly restarted computer...

echo (but if it is newly restarted, just do a reboot and then try

echo to install SP2 again)...

GOTO END

:END

echo.

pause

--END--

Thanks.. my problem solved using this method..

so is there anyhting else I need to take care of ?

  • 0

If you... cannot disable or enable the device from the Network Connections folder (that is, you cannot right-click the device and then click Enable/Disable).

You can, however, enable or disable the device from the Device Manager.

That helped me to remove an annoying "Bluetooth-Disconnected" icon from my [32-bit] systray. It was so easy, I'm sure to be the hero on someone else's computer, too. Thanks.

  • 0

New to this forum so Hello everyone. I would like to try the method that tripbert gave to fix the Error Disabling Connection message problem. Unfortunately unlike gr8leo87, I need a little more help. I know how to copy what tripbert posted that is in between Start and Stop, but I don't know how to paste it into a file. I certainly tried, and even renamed one, but I couldn't paste the info in to it and was even sure where the file should go if I could. If any of you could give me a step by step explanation on how to accomplish this I'd appreciate it. Like others here, although this problem isn't a big deal, it still bothers me. I'm not sure exactly when it began, but it worked fine up until an install of AVG Internet Security Suite about two weeks ago, (Uninstalling it didn't make a difference) and updated to the newest FireFox version and McAfee SiteAdvisor. Other than that I'm not sure what caused this Error, and that's what bothers me the most about it I think. LOL. I did uninstall and reinstall the Wireless Network Adapter, as I was also getting a message that it may not be installed correctly. whenever I tried to use the repair feature. Anyway thanks ahead of time, it will certainly be appreciated.

  • 0
Hello everyone, I've been looking into this problem and I think I've come to a solid conclusion. My first hint was numerous posts regarding Cryptographic Services. Anyways it seems that this error is caused by corruption in the db or problems with registered DLL files required by the service. Awhile back I found a little batch script that fixes common Cryptographic Services problems; this script was originally created to correct a Windows Update error (0x800710D9) but seems to also be relevant in this situation that seems to be caused by Autoruns. I suspect by the Speed Tweaks area; but this is just a guess.

This script has been tested on SP1 and SP2 Windows XP Pro systems, should work fine for Home as well.

Hope it helps you all out

Copy between --START-- and --END-- then just paste into a file and name it fixdb.bat

--START--

@echo off

:: Batch file that tries to remedy error # 800710D9

:: "Unable to read from or write to the database".

:: Author: Torgeir Bakken

:: Date: 2004-08-30

cls

echo This batch file will now try to remedy the error 0x800710D9.

echo To abort and not run it now, hold down Ctrl and press C.

echo Otherwise press the space bar to continue.

pause

:: Stop the Cryptographic service

%SystemRoot%\System32\net.exe stop CryptSvc

:: Rename all log files in the %SystemRoot%\Security folder

FOR %%a in (%SystemRoot%\Security\*.log) DO move /y %%a %%a.old

:: Rename the %SystemRoot%\System32\CatRoot2 folder

move /y %SystemRoot%\System32\CatRoot2 %SystemRoot%\System32\CatRoot2old

IF not exist %SystemRoot%\System32\CatRoot2 GOTO CONT01

:: In case the folder rename failed because of locked files

:: rename all log files in the %SystemRoot%\System32\CatRoot2 folder

FOR %%a in (%SystemRoot%\System32\CatRoot2\*.log) DO move /y %%a %%a.old

SET catroot2locked=True

:CONT01

cls

echo.

echo Please wait, this might take some time...

:: Unregister DLL files that are associated with Cryptographic Services

CD /D %SystemRoot%\System32

start /wait regsvr32.exe /s /u softpub.dll

start /wait regsvr32.exe /s /u wintrust.dll

start /wait regsvr32.exe /s /u initpki.dll

start /wait regsvr32.exe /s /u dssenh.dll

start /wait regsvr32.exe /s /u rsaenh.dll

start /wait regsvr32.exe /s /u gpkcsp.dll

start /wait regsvr32.exe /s /u sccbase.dll

start /wait regsvr32.exe /s /u slbcsp.dll

start /wait regsvr32.exe /s /u cryptdlg.dll

:: Reregister DLL files that are associated with Cryptographic Services

start /wait regsvr32.exe /s softpub.dll

start /wait regsvr32.exe /s wintrust.dll

start /wait regsvr32.exe /s initpki.dll

start /wait regsvr32.exe /s dssenh.dll

start /wait regsvr32.exe /s rsaenh.dll

start /wait regsvr32.exe /s gpkcsp.dll

start /wait regsvr32.exe /s sccbase.dll

start /wait regsvr32.exe /s slbcsp.dll

start /wait regsvr32.exe /s cryptdlg.dll

:: Configure and start the Cryptographic service

%SystemRoot%\system32\sc.exe config CryptSvc start= auto

:: Start the Cryptographic Service

%SystemRoot%\system32\net.exe start CryptSvc

cls

echo.

If "%catroot2locked%"=="True" GOTO CONT02

echo Finished, please reboot the computer and then try to install SP2 again...

GOTO END

:CONT02

echo Please run the batch file again with a newly restarted computer...

echo (but if it is newly restarted, just do a reboot and then try

echo to install SP2 again)...

GOTO END

:END

echo.

pause

--END--

1 year later thank you so much for this trick my internet work fine now!

  • 0
1 year later thank you so much for this trick my internet work fine now!

I went into the device manager, right clicked my Ethernet connection and the drop-down menu gave the option to "enable" but "disable" was not present. It was already enabled from the Control Panel so I found this confusing. However, I enabled via the Device Manager, then disabled via the Control Panel, and it worked. I have no idea what all that scripting is or for, but there are some very interesting things that can be done w/ @echo off...

  • 0

hi ...........

wre 2 paste this one and how 2 proceed....

thank u

Copy between --START-- and --END-- then just paste into a file and name it fixdb.bat

--START--

@echo off

:: Batch file that tries to remedy error # 800710D9

:: "Unable to read from or write to the database".

:: Author: Torgeir Bakken

:: Date: 2004-08-30

cls

echo This batch file will now try to remedy the error 0x800710D9.

echo To abort and not run it now, hold down Ctrl and press C.

echo Otherwise press the space bar to continue.

pause

:: Stop the Cryptographic service

%SystemRoot%\System32\net.exe stop CryptSvc

:: Rename all log files in the %SystemRoot%\Security folder

FOR %%a in (%SystemRoot%\Security\*.log) DO move /y %%a %%a.old

:: Rename the %SystemRoot%\System32\CatRoot2 folder

move /y %SystemRoot%\System32\CatRoot2 %SystemRoot%\System32\CatRoot2old

IF not exist %SystemRoot%\System32\CatRoot2 GOTO CONT01

:: In case the folder rename failed because of locked files

:: rename all log files in the %SystemRoot%\System32\CatRoot2 folder

FOR %%a in (%SystemRoot%\System32\CatRoot2\*.log) DO move /y %%a %%a.old

SET catroot2locked=True

:CONT01

cls

echo.

echo Please wait, this might take some time...

:: Unregister DLL files that are associated with Cryptographic Services

CD /D %SystemRoot%\System32

start /wait regsvr32.exe /s /u softpub.dll

start /wait regsvr32.exe /s /u wintrust.dll

start /wait regsvr32.exe /s /u initpki.dll

start /wait regsvr32.exe /s /u dssenh.dll

start /wait regsvr32.exe /s /u rsaenh.dll

start /wait regsvr32.exe /s /u gpkcsp.dll

start /wait regsvr32.exe /s /u sccbase.dll

start /wait regsvr32.exe /s /u slbcsp.dll

start /wait regsvr32.exe /s /u cryptdlg.dll

:: Reregister DLL files that are associated with Cryptographic Services

start /wait regsvr32.exe /s softpub.dll

start /wait regsvr32.exe /s wintrust.dll

start /wait regsvr32.exe /s initpki.dll

start /wait regsvr32.exe /s dssenh.dll

start /wait regsvr32.exe /s rsaenh.dll

start /wait regsvr32.exe /s gpkcsp.dll

start /wait regsvr32.exe /s sccbase.dll

start /wait regsvr32.exe /s slbcsp.dll

start /wait regsvr32.exe /s cryptdlg.dll

:: Configure and start the Cryptographic service

%SystemRoot%\system32\sc.exe config CryptSvc start= auto

:: Start the Cryptographic Service

%SystemRoot%\system32\net.exe start CryptSvc

cls

echo.

If "%catroot2locked%"=="True" GOTO CONT02

echo Finished, please reboot the computer and then try to install SP2 again...

GOTO END

:CONT02

echo Please run the batch file again with a newly restarted computer...

echo (but if it is newly restarted, just do a reboot and then try

echo to install SP2 again)...

GOTO END

:END

echo.

pause

--END--

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Audacity 3.7.8 by Razvan Serea Audacity is a free, open source digital audio editor and recording application. Edit your sounds using cut, copy, and paste features (with unlimited undo functionality), mix tracks, or apply effects to your recordings. The program also has a built-in amplitude-envelope editor, a customizable spectrogram mode, and a frequency-analysis window for audio-analysis applications. Built-in effects include bass boost, wah wah, and noise removal, and the program also supports VST plug-in effects. You can use Audacity to: Record live audio. Record computer playback on any Windows Vista or later machine. Convert tapes and records into digital recordings or CDs. Edit WAV, AIFF, FLAC, MP2, MP3 or Ogg Vorbis sound files. AC3, M4A/M4R (AAC), WMA and other formats supported using optional libraries. Cut, copy, splice or mix sounds together. Numerous effects including change the speed or pitch of a recording. Write your own plug-in effects with Nyquist. And more! See the complete list of features. Audacity 3.7.8 changelog: #10688 Fixed an exception thrown when pasting into a newly-created track (Thanks, David Bailes (@DavidBailes)!) #10870, #10884, #10775, #10629 Fixed tone generation, waveform-scale setting, SetClip Name parameter, and clip-boundary command names for scripting and macros (Thank you, David Bailes (@DavidBailes)!) #11106 Fixed the loading of presets for the Distortion effect (A million thanks, David Bailes (@DavidBailes)!) #10947 Fixed paste into an empty audio track not preserving the source sample rate (Thanks, Juan Gabriel Colonna (@juancolonna)!) #10776 Allowed AltGr modifier in label and clip name editing (Thanks, Davide Peressoni (@DPDmancul)!) #9938 Added options to choose where silence is truncated (start/middle/end) (Thanks, Noah Rosenfield (@nosenfield)!) #9935 Added Podcast 2.0 chapters JSON export for label tracks (Thanks, Noah Rosenfield (@nosenfield)!) #10103 Improve UI on HiDPI displays on Linux/wxGTK (Thanks, Ivan A. Melnikov (@iv-m)!) #10099 Fixed MixerBoard Mute and Solo button display (Thanks, Ivan A. Melnikov (@iv-m)!) #10681 Fixed multichannel FLAC import #10999 Fixed envelope being broken after joining clips Download: Audacity 64-bit | Standalone ~20.0 MB (Open Source) Download: Audacity 32-bit | Standalone Download: Audacity ARM64 | Standalone View: Audacity Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • There really isn't anything magical about the low latency profile, other OS's do this as well. All they're doing is using your CPUs boost clock options in a more smarter way.
    • So we shouldn't have the option because of people using their laptops on battery? OK? LOL
    • If you hear that fans for a limited time the CPU spikes to open a app I don't think the problem is with the software. There shouldn't be enough time spent at the higher clocks to produce enough heat to peak the fans. Maybe it's time to crack those dell laptops open and clean them out?
    • ActivePresenter 10.5.1 by Razvan Serea ActivePresenter is a screen recording, video editing, and eLearning authoring tool with a range variety of powerful features, helping you to capture screen and edit captured videos in a matter of minutes. Create professional screencasts that contain stunning annotations and effects, high-resolution graphics, videos, and voiceovers. You can capture any application on your computer, customize it easily by adding background music, closed caption, zoom-n-pan, etc., and finally export it to popular outputs (video, document) that can run on any device or platform. ActivePresenter allows you to generate the presentations in many different output forms such as image, videos (MP4, MKV, and AVI), HTML SlideShows, HTML5 simulations, and documents. More importantly, ActivePresenter free version provides full access to all video editing features, and you can edit and export videos without time limit, watermarks, or ads. ActivePresenter Free Edition features: Advanced recording features: Full Motion Recording, Smart Capture Video editing: Cut, Crop, Join, Change Volume, Speed Up, Slow Down, Blur Multiple Audio/Video Layers Rich annotations: Shapes, Image, Zoom-n-Pan, Closed Caption, Cursor Path, Audio/Video Overlays Automatic Smart Annotation Export to: MP4, FLV, AVI, WMV, WebM, MKV No Watermark and No Time Limit Clean & Safe: No adware, No Annoying Ads ActivePresenter 10.5.1 fixes: [Import PowerPoint]: Only the first slide is imported from some Canva-generated PowerPoint presentations. [Import PowerPoint]: Some Chinese theme fonts are resolved incorrectly. Embedded YouTube videos cannot generate preview thumbnails in the editor or play in HTML5 preview. [macOS]: Resources could be inserted into the current slide unintentionally when clicking or dragging in the Resources pane. [Publish uPresenter]: "Failed to process the presentation" error sometimes appears when publishing projects to uPresenter. [SCORM]: User responses are not reported to the LMS for Mouse Click and Key Stroke interactions. Custom hotkeys are reset or incorrectly remapped after updating from version 10.1.2 or earlier. Download: ActivePresenter 10.5.1 | 176.0 MB (Free, paid upgrade available) Download: ActivePresenter 10.5.1 for macOS | 227.0 MB Links: ActivePresenter Website | Demos | Tutorials | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      Star Processing earned a badge
      One Month Later
    • Week One Done
      Star Processing earned a badge
      Week One Done
    • One Year In
      Star Processing earned a badge
      One Year In
    • Week One Done
      FBSPL earned a badge
      Week One Done
    • One Year In
      Jim Dugan earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      495
    2. 2
      PsYcHoKiLLa
      198
    3. 3
      +Edouard
      155
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      69
  • Tell a friend

    Love Neowin? Tell a friend!