Error: low disk space HP(C:)

My computer knowledge is below average!!! My 'puter reads Error: low disk space HP(C. I have cleaned and defragmented several hundred times but to no enjoyment. I have also uninstalled whatever I believed to be unneccessary for me to be using on this 'puter. The memory available is reading 4% at the moment and I am feeling quite frustrated and at a loss. IS SOMEONE OUT THERE THAT CAN HELP THIS COMPLETE NOVICE??
This question was solved.
View Solution.

I am an elder novice and also had this problem.I did a disk clean and was amazed when it revealed 8.4gb of stuff in the recycle bin which i am always emptying via c cleaner.After running the cleanup and doing a defrag i ended up with 22.4gb of space.I ran c cleaner and was surprised that it found 18000kb still in the recycle bin.Non of this makes real sense to me but at least i have a lot more space.Hope it helps you.

Similar Messages

  • Low disk space in recovery disk (d) drive in window 8.1

    I continue to receive the subject warning. I have never added any files to D, but I have 32.3 MB free of 25.5 GB. I have Administrator privilrges but am unable to view the files on D. When I click on recovery, I get an HP warning.

    Hi @pjd10 
    I grasp that you are a low disk space error on recovery D.  I regret that you are having that difficulty.
    Here is a link to HP PCs - Error: Low Disk Space. You are running out of disk space on Recovery (Windows 8) that should guide you to resolving this issue.
    Best of Luck!
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • I keep getting a (false) notification from HP Support Assistant: low disk space on C drive?

    Hi, this morning upon starting up my computer the magnifying glass was hovering over the HP Support Assistant icon and usually that means it is checking for updates etc... but I noticed it turned into a yellow exclamation mark so I clicked on it and opened up HP Support Assistant. The exclamation mark was now in the "updates and tune-ups" and said there were "recommended messages available." Upon clicking this the exclamation is now on the HP messages tab and upon clicking that I am taken to a notification that says: "Low Disk Space on Primary Drive C:" So I click on it to find out more information and it says that I am running out of free disk space on my C drive and that I need to perform a disk cleanup etc...
    I went to My Computer to see just how in jeopardy I was in of running out of space on my C drive. To my amazement it stated that I still had 1.27 TB of 1.35 TB available and have only used 6% of my space...
    I tried emptying my recycle bin, clearing my cache, doing an actual disk cleanup, and restarting to no avail, the magnifying glass comes back after restart and the notification returns telling me that I am low on disk space in the C drive...
    I have come to the conclusion that this must be a false notification but I have no idea how to get rid of it...it isn't a huge issue as it doesn't impair my usage on the computer, however, it is kind of annoying to keep seeing this notification...
    Is there any way to get rid of this notification?

    Hello @blackrosevain,
    I understand that you are getting the 'Low Disc Space' error message on your HP Pavilion Elite h8-1010t Desktop PC running Windows 7. I am providing you with an HP Support document: Error: Low Disk Space. You are running out of disk space on Recovery (Windows 7), which addresses the error you are getting and has the steps needed to fix it.
    I hope I have answered your question to your satisfaction. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Low Disk Space in the installation drive

    Dear all,
    One of our test server, is running out of space in the installation drive.
    Do we have any standard jobs/Tcodes to reduce/shrink the disk space of installation drive.
    Please share your inputs,
    Regards,
    Younus

    Hi,
    Thanks Mark for directing the question to the right group.
    Elaborating the issue: It is a test PI server and it has been installed in the D drive of the machine.
    It was only one month ago the server was installed and now the system shows the error "Low disk space in D drive"
    10-12 GB of free space was there earlier and even the server didn't have many messages going through it in this period.
    Please help me with your inputs.
    Thanks
    Younus

  • Low disk space Applescript (AppleEvent handler error -10000)

    Hello,
    I am new to Applescript, downloaded script from online for low disk space alert and was working properly on one mac but getting error on another mac of same version. Someone please help me on this.
    Thanks in advance.
    -- Script to warn users of low disk space remaining on fixed (hard) disks
    -- Created by Matthew Lindfield Seager on 21st March 2007
    -- © Copyright Matthew Lindfield Seager
    ---------- change these settings ----------
    set expectedNumberOfHardDisks to 2
    set minimumFreeSpacePercentage to 60
    set sendToAddresses to {"[email protected]"}
    set sendImmediately to false -- If this setting is false the message will be created but won't be sent until someone manually clicks the "send" button. Only useful for testing!!!
    ---------- change these settings ----------
    tell application "System Events"
              set hardDisks to (name of every disk whose local volume is true and ejectable is false) as list -- list of all hard disk drives
              set notEnoughDisks to false
              set almostFullDisks to {}
              set almostFullDiskNames to ""
              set computername to (do shell script "networksetup -getcomputername")
              if (count of hardDisks) is less than expectedNumberOfHardDisks then
                        set notEnoughDisks to true
              end if
              repeat with i in hardDisks
                        set diskName to (i as string)
                        try
                                  set totalSpace to round ((capacity of disk diskName) / 1024 / 1024)
                                  set freeSpace to round ((free space of disk diskName) / 1024 / 1024)
                                  set percentFree to (round (100 * freeSpace / totalSpace))
                                  if percentFree is less than minimumFreeSpacePercentage then
                                            set almostFullDisks to almostFullDisks & {i}
                                            set almostFullDiskNames to almostFullDiskNames & diskName & ", "
                                  end if
                        end try
              end repeat
    end tell
    if notEnoughDisks or ((count of almostFullDisks) is greater than 0) then
              set messageText to "There is a potential problem with the hard disk drives on the server." & return & return & "Details:" & return
              if notEnoughDisks then set messageText to messageText & " * A hard disk drive may be missing" & return
              if (count of almostFullDisks) is greater than 0 then
                        set messageText to messageText & " * The following hard disks may be close to full capacity: " & almostFullDiskNames & computername & return
              end if
              tell application "Mail"
      activate
                        set warningMessage to make new outgoing message with properties {visible:true, subject:"Warning: Low disk space", contentmessageText)}
                        repeat with i in sendToAddresses
                                  tell warningMessage
      make new to recipient at beginning of to recipients with properties {address:i}
                                  end tell
                        end repeat
                        if sendImmediately then send warningMessage
              end tell
    end if
    Following is the error:
    tell application "System Events"
         get name of every disk whose local volumn = true and ejectable=false
              -->error number -10000
    Result:
    error "System Events got an error: AppleEvent handler failed." number -10000.

    Hi,
    I believe these are the commands (round and do shell script) which causes this error.
    because it's not recommended to use commands of the osax "Standard Additions"  in the 'tell application "System Events"' block, although it works most of the time.
    Here is the modified script that does the same thing :
    set expectedNumberOfHardDisks to 2
    set minimumFreeSpacePercentage to 60
    set sendToAddresses to {"[email protected]"}
    set sendImmediately to false -- If this setting is false the message will be created but won't be sent until someone manually clicks the "send" button. Only useful for testing!!!
    set almostFull to ""
    tell application "System Events"
         set hardDisks to (disks whose local volume is true and ejectable is false) -- list of all hard disk drives
         repeat with tDisk in hardDisks
              try
                   tell tDisk to set percentFree to (100 * (its free space)) div (its capacity)
                   if percentFree < minimumFreeSpacePercentage then
                        set almostFull to almostFull & (get name of tDisk) & ", "
                   end if
              end try
         end repeat
    end tell
    set notEnoughDisks to (count hardDisks) < expectedNumberOfHardDisks
    if notEnoughDisks or (almostFull is not "") then
         set messageText to "There is a potential problem with the hard disk drives on the server." & return & return & "Details:" & return
         if notEnoughDisks then set messageText to messageText & " * A hard disk drive may be missing" & return
         if almostFull is not "" then
              set computername to do shell script "/usr/sbin/networksetup -getcomputername"
              set messageText to messageText & " * The following hard disks may be close to full capacity: " & almostFull & computername & return
         end if
         tell application "Mail"
              activate
              tell (make new outgoing message with properties {visible:true, subject:"Warning: Low disk space", content:messageText})
                   repeat with i in sendToAddresses
                        make new to recipient at beginning of to recipients with properties {address:i}
                   end repeat
                   if sendImmediately then send
              end tell
         end tell
    end if

  • Hard drive says I have more than 300 GB available with a 500 gb capacity. Yet I get "Low Disk Space" error messages when I do anything.

    Hard drive says I have more than 300 GB available with a 500 gb capacity. Yet I get "Low Disk Space" error messages when I do anything.
    Attempted solutions:
    -I created a new User Account and I can download large files with no issues.
    -I ran "Repair Disk Permissions" but still get warnings.
    Google Drive Warning:
    Spotify Warning:        
    But on my other user account I can use spotify and download large files, etc.

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • LOW DISK SPACE ERROR MESSAGE :Recovery Drive(D:)

    I have a HP Pavilion G6 model number:2005AX .Recently I have been receiving an error message as in low disk space(only 1 GB free of 20 GB) in D drive but there are no unwanted files in the drive .I am worried that it might cause any problems in the future.Please help what i should do to increase the disk space in the recovery drive.I have included a screen shot of my recovery drive files.

    pooji wrote:
    I have a HP Pavilion G6 model number:2005AX .Recently I have been receiving an error message as in low disk space(only 1 GB free of 20 GB) in D drive but there are no unwanted files in the drive .I am worried that it might cause any problems in the future.Please help what i should do to increase the disk space in the recovery drive.I have included a screen shot of my recovery drive files.
    That normally occurs because someone has turned on system protection for the partition. I can't see your image just yet. 
    Check to make sure that has not happened.
    The following image is how the system protection  window should look
    The following image is what you should see in your recovery partition if you have file options to show protected files. Anyhting else should not be there.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Premiere Elements reports low disk space error right at the end

    Ok, so I wait for 5 hours for a 3 hour long video to get saved to my computer.  It goes to 99% and then I get a low disk space error.  After I clear up space, and click Ok, it starts all over again.  Firstly, why doesn't PrE calculate/predict how much disk space I would need BEFORE starting to save, and secondly why does it at least not resume the saving process after I clear up disk space, instead it starts all over, with my 5 hours wasted?
    Some serisous usability issues.  Is it just me or do these things drive others crazy too? 
    Expected more from Adobe...

    Unfortunately, as PrE uses a 2-Pass Encoding scheme (helpful to get the best quality within the same file size), it does not know exactly how much space will be used, until well into the second pass - the first is a survey of any motion in the Clips on the Timeline, and the second is the actual Encoding, and writing of a file.
    Another consideration, regarding disk usage is whether one is Exporting/Sharing both Audio & Video. If one IS doing a Multiplexed file (with both an Audio and a Video Stream in one file), a Video-only file is written first, and then an Audio-only file, with a few "helper files" to be used in just a moment. Then, when that has completed, PrE reads those helper files, and creates the final, Multiplexed file. Last, the two separate Audio-only and Video-only files are Deleted. That takes some space, as at some point, one will have three large files, though two will be Deleted, along with the little helper files.
    How much defragmented, free-space do you have?
    What is your I/O setup, i.e. the number of physical HDD's, and how they are allocated?
    Good luck,
    Hunt

  • LMS 3.2 server - low disk space error.. Upm.db increasing rapidly......please help

    we r facing problem of low disk space error......upm.db file incresing 1 to 2 gb per week.
    if this continues our disk will get full & system may get crashed...... pls help

    Probably most space is being consumed by CSCOpx\log.  To quickly cleanup some logs, you can manuall run the command:
    logrot_trunc c:\Progra~1\CSCOpx\log\syslog.log
    Assuming this is the correct path on your server.  You can also schedule log rotation to occur on a regular basis to avoid the logs growing past a certain point.  This can be scheduled under Common Services > Server > Admin > Log Rotation.
    Might also be a good idea to check if you have debugging turned on under the various modules in LMS to decrease the speed of the log growth by setting the logging to a lower level.

  • Low Disk Space Error on Install

    So I've been struggling on this all morning. I can't install
    flash player on my hard drive because it says I have a low disk
    space. I read on some forums that it's because the flash player
    software is hardcoded to check the 'C:\' for sufficient space. My
    hard drive is the 'H:'. My 'C:' drive is allocated as an usb but
    whenever I plug in a flash drive it defaults to 'K:'. I have tried
    to tinker around in disk management but I cannot rename or change
    my 'H' drive to be the 'C:'. I can not also rename the 'K:' to be
    the 'C:' either. This seems like such a simple problem, I'm a
    little disappointed that the software is written so that it checks
    the 'C' drive opposed to the drive the .exe file is running off of.
    Any help would be greatly appreciated.
    Thanks

    Hi,
    Please see the document regarding this issue on the link below.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01508532&cc=us&dlc=en&lc=en
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Qosmio X500 Folder migration utility and low disk space drice C

    This may be a longish post as I try to explain my problem... please forgive.
    I've had my X500 for just over three months now.
    It took a little while before the folder migration utility woke up I didn't know it was there after I'd done a limited copy of folders across from my old Qosmio F20. After it had woken up and I'd been able to transfer folders/files across it cleared a lot of room from the 'tiny' - I feel, 60 Gb SSD C drive.
    I keep getting a message coming up sometimes, when I boot up, that the folder migration utility has a setting for me. If I open the utility it shows no folders in the 'C' drive area and folders already transfered [from first using it] in the right hand side for the 'D' drive. Text in the bottom of the utility says something like "if you have done some manual transfers then it can't do anything"... something along those lines - sorry for not being clear on that.
    I've recently installed some other programs and have endeavoured each time to do a custom install to the D drive to program files [x86] folder. However, drive C is now showing low disk space at 5.58 of 59.2 Gb.
    Checking the folders copies??? I thought for the programs I installed I find lots of folders/files in those program folders so taking up a lot of space.
    What is the best way to free up space on drive 'C' please?
    Should I manually copy the data contained in the folders [not just a 'name' ... ie; AVID... folder but possibly also in the drive C Program files [x86] folder] to the same named folders on drive D?
    If I did, would the programs work properly or would there be problems in the program being located?
    When the utility first activated [by itself] I thought "Great... transfer of all my old data to the X500 will be easy" but it doesn't seem to be the case. I was expecting that any new programs installed would be automatically copied to drive D. I'm getting somewhat paranoid about the low disk space on drive C.
    Help would be appreciated.

    Thanks for coming forward PauPau.
    Firstly, when I got the x500 I had lots of documents etc., I wanted to transfer over so I used the Win7 Transfer program to make the back up/transfer images. In doing the transfer across [after the copies of] the X500 gave an error warning that the C: drive had insufficient space to do the full copies. At this time/stage I was not aware that the X500 had a folder migration utility. What ever made it 'wake up' and make itself known I have no idea but I used it when it did. My first problem was probably in using the Win7 file transfer - for getting files/folders across from the old computer to the x500!
    I ended up doing a factory reset about three times before this utility made it self known. I found NOTHING in ant documentation about the X500 about this utility and how to make use of it when I bought the laptop. Not sure if you are aware of the make up of the X500 having 2 hard drives; a 'C:' drive of 65Gb SSD and a SATA 'D:' drive of 650GB. If you do then my apologies if that comes over in any 'bad' way. The D: drive is NOT a partition of 1 installed hard drive as your reply would seem to suggest you are thinking.
    The migration folder utility, when used first time, copied/transfered folders across - even program folders such as Program files [x86] - and left 'similar' named folders on the C: drive. At that time I then thought that any future installs of programs would be put in the D: drive. Only when watching the first time for a new program install did I see it going to the C: Program and Program files [x86] folders instead of those in the D: drive. I then had to uninstall and do a custom install to direct to the D: drive. However... some data appears that it can NOT be directed from the install disk to the D: drive and still goes to the C: drive - HENCE the issue I am having with the small amount of remaining free space on the C: drive.
    I accept what you say in reply to my question about the best way to free up space but, based on as explained above, should I have to do a re-install of any program I try to run after being moved to the same named corresponding folder on the separate D: drive [if that is what I have to do] I think the install disk will still do an automatic install of these to the C: drive as at that stage there seems no way of stopping it. Although given the option in a custom install to change the 'drive' to install to such as the D: some data is still going to C: and I'll be in the same predicament that I am now.
    If that's the case then maybe this is something that TOSHIBA should be looking in to solving if they are going to produce laptops with two hard drives - - - even if one [the C: drive] is of the SSD make to speed thing up.
    I DO appreciate your input. MAybe I didn't explain properly first time... and maybe I haven't this time - in which case I apologies.
    Are there no other X500 users with the same issue?
    Thanks. I may just have to give it a go and transfer these data files/folders manually to the D: and see what happens if no one here can guide as to stop any hair pulling frustrations if it goes wrong.

  • HP530 OS_ (E:) tools reporting as low disk space

    Hi,
    Following some tinkering by me following some Microsoft support suggestions, I think I have managed to solve my issues with windows updates...It did involve an emergency restart and a system restore from an external hard drive, and I think all is running OK now...the trouble is, I now can't seem to make a new back up on the external hard drive as it comes up with an error code and the OS_(E tools reporting low disk space. The HP_(D recovery is also looking quite full (although not red yet like the (E tools. The OS is Windows Vista Home basic 32- bit.
    Thanks

    these two links will guide you to resolve the issue:
    http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&cc=us&docname=c00678180&dlc=en
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01508532&tmp_track_link=ot_recdoc/c00678180/en_...
    ||-Although I am working on behalf of HP, I am speaking for myself and not for HP.-||
    //Click on Kudos if my reply was helpful and answered your question//
    ||-If my answer solved the problem please mark the topic as the accepted solution-||

  • Could Very Low Disk Space Cause problems?

    Hi, my 600 GB Hard Drive only had around 5 GB of space left . I purchased a new 1 TB Hard Drive in order to delete media so that I could gain the space back. I've since gained back 200 GB of Space but Could very low disk space cause issues? What kind of issues could occur? Thanks
    Message was edited by: Stuart Lawrence

    There are any number of reasons for occasional beachballs to appear. They will appear when some programs are involved in heavy disk I/O which tends to be processor dependent and causes the program to suspend all other activity until the disk activity has completed. This is more often the case when writing to the disk. Beachballs may also appear if the OS has to use disk I/O and is slowed down by an over-filled and/or fragmented hard drive. The fuller a drive gets the greater the likelihood that fragmentation will become a more noticeable problem. Beachballs can appear if you are low on physical memory so applications must resort to disk-based virtual memory which is considerably slower and tends to cause the computer to become slow or unresponsive for a period of time. It can also cause disk-thrashing. Beachballs can occur if the disk has become corrupted causing applications to have difficulty reading from or writing to the disk.
    It is possible to repair a drive's directory, and it's even possible to identify corrupted files, but it's not possible to repair corrupted files nor repair a corrupted drive. If a drive develops corrupted files either the files will need to be replaced or deleted. If a drive develops soft sector errors these can be repaired by erasing the drive (reformatting.) If a drive develops hard sector errors these may or may not be repairable, but if they are repairable it requires zeroing the data during a disk formatting operation. If the disk directory becomes corrupted that can be repaired using Disk Utility or one of the various third-party utilities such as Disk Warrior. Disk Utility can repair many but not all directory corruption problems. What DU cannot fix Disk Warrior usually can.
    You can start repairing a drive as follows;
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    This applies to your startup volume. No need to repair permissions on any but a startup volume.

  • Incorrect Low Disk Space Warning from HP Support Assistant

    I have an HP Envy m7 notebook. I am getting a warning from the HP Support Assistant that the Primary Drive C:  has low disk space. However, my Windows 8.1 Properties box for the C: drive says more that 90% of the drive is free, as I guessed. Why am I getting this seemingly incorrect warning?

    Hi sheryltoo,
    Thank you for your query, I will do my best to assist you.
    I understand the HP support assistant is giving you a low disk space error, but you have plenty of free space available.
    Did the error pertain to a different drive letter other then you main drive?
    I suggest you uninstall and reinstall the  The HP Support Assistant.  If you have an older versions installed that may be why you are getting a false error.
    Please let me know the outcome.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Low Disk Space in WSUS

    Hello,
    The size of content folder in my WSUS upstream Server is 170GB, i am installing updates in one language only and 46 products. its showing low disk space now. i used server cleaning wizard but it cleared only 2GB. I thing somthing is going wrong there. Help
    me to come out from this problem.

    Thanks for your reply and the link.  After my disk became filled to capacity by WSUS updates, I couldn't use WSUS's "Server Cleanup Wizard".  Then I found this thread and began to decline the superceded and 100% installed updates.  I
    got thru maybe 200 updates.  Now I can't even decline any more updates without getting a screen that pops up saying Error: Database Error, asking to reset the node.  This is the same screen that I got when I tried to use the Server Cleanup Wizard.
    Any advice?
    Here are the clipboard error contents:
    When Trying to Use Server Cleanup Wizard:
    The WSUS administration console was unable to connect to the WSUS Server Database.
    Verify that SQL server is running on the WSUS Server. If the problem persists, try restarting SQL.
    System.Data.SqlClient.SqlException -- The transaction log for database 'SUSDB' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
    Source
    .Net SqlClient Data Provider
    Stack Trace:
       at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
       at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
       at Microsoft.UpdateServices.UI.SnapIn.Wizards.ServerCleanup.ServerCleanupWizard.OnCleanupComplete(Object sender, PerformCleanupCompletedEventArgs e)
    When Declining Superceded Updates:
    The WSUS administration console was unable to connect to the WSUS Server Database.
    Verify that SQL server is running on the WSUS Server. If the problem persists, try restarting SQL.
    System.Data.SqlClient.SqlException -- Could not allocate space for object 'dbo.tbDeadDeployment'.'PK__tbDeadDeployment__4AB81AF0' in database 'SUSDB' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded
    files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.
    Change:Deleted deployment(Install) of Security Update for Windows XP (KB835732) by IH-DHCP1TEST\Administrator UpdateID:ED095ADB-093B-4755-8EA4-F84A8AB40C11 Revision Number:104 TargetGroup:All Computers
    Source
    .Net SqlClient Data Provider
    Stack Trace:
       at Microsoft.UpdateServices.UI.SnapIn.Dialogs.ProgressDialog.OnCompleted(Object sender, AsyncCompletedEventArgs e)

Maybe you are looking for