Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > "SC" Command line available for error 0x8DDD0018?

Reply
Thread Tools Display Modes

"SC" Command line available for error 0x8DDD0018?

 
 
bhall
Guest
Posts: n/a

 
      05-13-2005
Greetings,

I was getting error 0x8DDD0018, and I found that when I go to Services, and
make sure Automatic Updates, Background Intelligence Transfer Service, and
Event Log are set to "automatic" and "started" it works.

My question is if there is a command-line command that I can issue in a .bat
file that will set these services to automatic and start them if not already
started. I have many machines on my network that are having this issue and
I'd like to be able to remotely fix them.

I know there is a "SC" (Service Controller) command that you can use to
control services, but I don't know if this would work. I'm going to play
around with it and see if I can figure it out. In the meantime, if anyone
knows how to do this, I'd appreciate a reply. Thanks!

-bhall
 
Reply With Quote
 
 
 
 
bhall
Guest
Posts: n/a

 
      05-13-2005

Windows Help and Support Center (F1) has a pretty good amount of info! I
wrote a .bat file that automatically stops Automatic Updates, BITS, and
Eventlog, sets them to auto, and starts them again. It seems to work, so
perhaps someone else can benefit. Copy the following and paste it into
Notepad, and save the file as <whatever>.bat :

sc stop wuauserv
sc stop BITS
sc stop Eventlog
sc config wuauserv start= auto
sc config BITS start= auto
sc config Eventlog start= auto
sc start wuauserv
sc start BITS
sc start Eventlog

-BHall

"bhall" wrote:

> Greetings,
>
> I was getting error 0x8DDD0018, and I found that when I go to Services, and
> make sure Automatic Updates, Background Intelligence Transfer Service, and
> Event Log are set to "automatic" and "started" it works.
>
> My question is if there is a command-line command that I can issue in a .bat
> file that will set these services to automatic and start them if not already
> started. I have many machines on my network that are having this issue and
> I'd like to be able to remotely fix them.
>
> I know there is a "SC" (Service Controller) command that you can use to
> control services, but I don't know if this would work. I'm going to play
> around with it and see if I can figure it out. In the meantime, if anyone
> knows how to do this, I'd appreciate a reply. Thanks!
>
> -bhall

 
Reply With Quote
 
David H. Lipman
Guest
Posts: n/a

 
      05-13-2005
From: "bhall" <>

| It seems to work, so perhaps someone else can benefit.

< snip >

Not really. You posted in the wrong News Group so you have no targeted audience and thus
the benifit to others will be dismall at best.

This is the Windows Update News Group for discussing performing Windows Critical Updates and
software updates via the Windows Update Website and assiciated updates. What you want is
an OS related News Group. I'll assume WinXP because I didn't see the OS used in your post.

If it is WinXP, you should have posted in; microsoft.public.windowsxp.general

--
Dave
http://www.claymania.com/removal-trojan-adware.html
http://www.ik-cs.com/got-a-virus.htm


 
Reply With Quote
 
bhall
Guest
Posts: n/a

 
      05-13-2005
Dave,

Actually this _would_ be beneficial to anyone who wants to get Windows
Critical Updates via the Windows Update Website since 0x8DDD0018 was the
error I kept getting when I would try to access this very site. The way you
fix it is to ensure the correct services are started and set to auto. The
following .bat file (revised) does just that.

@echo off
sc stop wuauserv
sc stop BITS
sc config wuauserv start= auto
sc config BITS start= auto
sc config Eventlog start= auto
sc start BITS
sc start wuauserv

-bhall

P.S. You can't stop Eventlog, and BITS should be started before wuauserv.

"David H. Lipman" wrote:

> From: "bhall" <>
>
> | It seems to work, so perhaps someone else can benefit.
>
> < snip >
>
> Not really. You posted in the wrong News Group so you have no targeted audience and thus
> the benifit to others will be dismall at best.
>
> This is the Windows Update News Group for discussing performing Windows Critical Updates and
> software updates via the Windows Update Website and assiciated updates. What you want is
> an OS related News Group. I'll assume WinXP because I didn't see the OS used in your post.
>
> If it is WinXP, you should have posted in; microsoft.public.windowsxp.general
>
> --
> Dave
> http://www.claymania.com/removal-trojan-adware.html
> http://www.ik-cs.com/got-a-virus.htm
>
>
>

 
Reply With Quote
 
David H. Lipman
Guest
Posts: n/a

 
      05-13-2005
From: "bhall" <>

| Dave,
|
| Actually this _would_ be beneficial to anyone who wants to get Windows
| Critical Updates via the Windows Update Website since 0x8DDD0018 was the
| error I kept getting when I would try to access this very site. The way you
| fix it is to ensure the correct services are started and set to auto. The
| following .bat file (revised) does just that.
|
| @echo off
| sc stop wuauserv
| sc stop BITS
| sc config wuauserv start= auto
| sc config BITS start= auto
| sc config Eventlog start= auto
| sc start BITS
| sc start wuauserv
|
| -bhall
|
| P.S. You can't stop Eventlog, and BITS should be started before wuauserv.
|

OK then, it wasn't very clear in the post,

--
Dave
http://www.claymania.com/removal-trojan-adware.html
http://www.ik-cs.com/got-a-virus.htm


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
"Rescan Disks" at the Command Line chironex Windows Vista Hardware 2 01-21-2010 03:42 PM
Defrag increases "used space" as reported by command-line defrag - mwhiting001@hotmail.com.NO_SPAM Windows Vista Performance 15 06-19-2009 08:34 PM
DTM "INF Syntax Test" and INFGate.exe... how does '/N' command line switch work? gbarteck Windows Vista Drivers 1 05-15-2007 06:45 AM
Script Error Line 178 Char 2 "Cursite" is undefined Angelita Windows Update 1 01-30-2005 01:15 AM
Another Fix for "Error number: 0x8DDD0018" A3J Windows Update 0 08-26-2004 05:39 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59