How to enable audio in safe mode

7

2

I would like to listen to music while in safe mode. I have tried to start the audio service manually, but it returns error code 1068.

I would also accept a solution in C or C++ if programming is necessary to do this.

(The easiest way would be to start Windows in normal mode, but I like challenges)

user65130

Posted 2011-11-05T21:46:48.927

Reputation: 203

Version of Windows you are using? – None – 2011-11-05T21:49:08.690

windows 7 -- x64 – user65130 – 2011-11-05T21:50:22.403

7Safe mode is not intended for normal use. – Cat Plus Plus – 2011-11-05T21:51:12.350

4Why don't we just solve the problem of why you are running in safe mode to begin with? It should never be necessary to run safe mode other than to fix whatever is preventing normal mode use. – Paul – 2011-11-05T22:46:48.333

yes PnP has started, but Windows Audio doesn't. – None – 2013-02-13T05:45:56.770

Answers

4

This is how to do it in Windows XP:

  1. Run (⊞Win+R) regedit
  2. Press Ctrl+F
  3. Make sure Keys, Values, and Data are all selected
  4. Type in Sound, video and game controllers
  5. Click [Find Next]
  6. Take note of the branch address in the status bar at the bottom (it will be something like HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Class\{4D36E96C-E325-11CE-BFC1-09002BE10318})
  7. Copy the device-driver GUID (the long numeric part between braces) and paste it somewhere like Notepad
  8. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network
  9. Create a new key (right-click, select New → Key)
  10. Copy the GUID you saved and paste it into the key name
  11. Edit the (Default) value and type Sound, video and game controllers
  12. Create several new keys (under Network) called AudioEndpointBuilder, MMCSS and Audiosrv
  13. Edit the (Default) values of each of the new keys and type Service
  14. Reboot (you’ll boot into safe-mode)
  15. Open the Services snap-in (⊞Win+Rservices.msc)
  16. Start the Multimedia Class Scheduler, Windows Audio Endpoint Builder, and Windows Audio Service services

Travis

Posted 2011-11-05T21:46:48.927

Reputation: 41

2

bookingtohosting.blogspot.com writes you could not only enable sound in safe mode but also printer by starting the print spooler service or it could be any service just by adding the service to safe service list.

How to start Audio Service in safe mode

To Start Audio service in safe mode you also need to start all of its dependent services first.Windows Audio service depends on these three services so add them to safe service list and then start these service from command prompt.

  1. Windows Audio Endpoint Builder (AudioEndpointBuilder)
  2. Multimedia Class Scheduler (MMCSS)
  3. Windows Audio (Audiosrv)

You could start these services in safe mode using command line by typing the following commands.

REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\AudioEndpointBuilder" /VE /T REG_SZ /F /D "Service"

net start AudioEndpointBuilder

REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\MMCSS" /VE /T REG_SZ /F /D "Service"

net start MMCSS

REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\Audiosrv" /VE /T REG_SZ /F /D "Service"

net start Audiosrv.

Now after this you would be able to start audio.

Note :- Similarly to start Print Spooler service in safe mode add Spooler to safe service list and start it.

Nasir

Posted 2011-11-05T21:46:48.927

Reputation: 21

1

  1. Press Windows + R, type devmgmt.msc, press Enter and look for your sound device. (e.g. Realtek High Definition Audio) Double-click it.
  2. Go to the tab 'Details' and click the drop-down list. Select 'Driver key' and copy the text from 'Value'

  3. Copy the text into a word processor (e.g. Notepad)

  4. Replace all lower-case letters with capital letters and remove the \0000.
  5. Open Registry Editor (Windows + R > regedit) and locate HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network.

  6. Create a new key (Rightclick > New > Key)

  7. Copy the text from your word processor and paste it into the key name.

  8. Edit the '(Default)' key and type 'Sound, video and game controllers'.

  9. Create a new key called 'AudioEndpointBuilder', 'MMCSS' and 'Audiosrv'
  10. Edit all their '(Default)' keys and type 'Service'.

  11. Restart your computer

  12. Go to Services (Windows + R > services.msc) and start Multimedia Class Scheduler and Windows Audio Endpoint Builder.

  13. Then start Windows Audio Service

easton

Posted 2011-11-05T21:46:48.927

Reputation: 11

Thank you so much it worked for me though without applying step 12 and 13. – DINA TAKLIT – 2019-11-07T13:05:51.907

0

Use start > run > services.msc

Enable

  • Plug and Play Service

  • Windows Audio Service

enter image description here

sehe

Posted 2011-11-05T21:46:48.927

Reputation: 1 796

Me too I got the same error 1068 I have tried the available options on the net and none worked for me. – DINA TAKLIT – 2019-11-07T12:44:54.440

2thank you but I have tried to start the audio service but it returns width error code 1068. :( – user65130 – 2011-11-05T22:01:47.183

has PnP service started? – Eir Nym – 2011-11-06T00:14:51.910