Alert on Low disk space

Hi  All
I have created an alert of WMI event in sql server  which send mail if disk space on D drive is less than 10GB
Query :
SELECT * from __InstanceModificationEvent
WITHIN 60
WHERE
TargetInstance ISA 'CIM_LogicalDisk'
AND
TargetInstance.FreeSpace < 10000000000
AND
TargetInstance.DeviceID = 'D:'
when I enable this alert It sends alert for low disk space
but some time it does'nt send alerts. I am not sure when this __InstanceModificationEvent   occure
and is there any another way to alert low disk space in my mailbox

Take a look on link:
http://blogs.technet.com/b/fort_sql/archive/2012/08/01/alert-on-low-disk-space-including-mount-points.aspx
http://social.msdn.microsoft.com/Forums/sqlserver/en-US/7a750515-8e82-425d-9c97-f37aac8e149a/monitor-disk-space-using-alerts?forum=sqldatabaseengine
--Please click "Propose As Answer"
if a post solves your problem, or "Vote As Helpful" if a post has been useful to you

Similar Messages

  • Reports for Low disk space alerts in scom 2007

    Dear Experts,
    Is there any possible to get the Low disk Space alerts reports in SCOM 2007 R2.
    1, I need reports for Last week SCOM sent alerts on Low Disk space for the servers list
    2, Likewise I need SCOM Low disk space alerts reports for last month.
    Can somebody please explain me with the steps and I played much with Reporting pane.
    Thanks,
    Saravana

    Hi,
    The below code should work to get all servers that have alert of logical disk free space is low in specific period:
    get-alert -criteria 'Name = ''Logical Disk Free Space is low'' AND TimeRaised >=''3/24/2014'' AND TimeRaised <= ''4/24/2014''' | select MonitoringObjectDisplayName,MonitoringObjectPath,Name,TimeRaised | sort MonitoringObjectDisplayName
    Here is a similar thread for your reference:
    how to create a report showing the servers that had the alerts of "Logical Disk Free Space is low" for a specific period?
    http://social.technet.microsoft.com/Forums/en-US/50f2c3fb-2dfc-47c6-8c2a-8a2f0149df10/how-to-create-a-report-showing-the-servers-that-had-the-alerts-of-logical-disk-free-space-is-low?forum=operationsmanagerreporting
    Regards,
    Yan Li
    Regards, Yan Li

  • 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

  • Powershell script to get the low disk space on the servers...

    Hi,
    We have many SQL & Sharepoint servers running on windows server. I need some Powershell script to get the low disk space on those servers and it should send an mail alert saying "Disc d:\ have less than threshold 15% free space".
    Awaiting for response.
    Thanks
    Anil

    you should be able to use this powershell script which you can run as a scheduled task.
    just change the details at the start of the script to point the script to the right location to create log files. you will need to have a plain text file containing a list of server names or ip addresses that you want to check drive space on.
    # Change the following variables based on your environment
    #specify the path to the file you want to generate containing drive space information
    $html_file_dir = "\\server\share\DriveSpace"
    #specify the path and file name of the text file containing the list of servers names you want to check drive space on - each server name on a seperate line in plain text file
    $server_file = "\\server\share\servers.txt"
    #speicfy the from address for the email
    $from_address = "[email protected]"
    #specify the to address for the email
    $to_address = "[email protected]"
    #specify the smtp server to use to send the email
    $email_gateway = "smtp.domain.com" # Can either be DNS name or IP address to SMTP server
    # The seventh line from the bottom (line 167) is used if your smtp gateway requires authentication. If you require smtp authentication
    # you must uncomment it and set the following variables.
    $smtp_user = ""
    $smtp_pass = ""
    # Change the following variables for the style of the report.
    $background_color = "rgb(140,166,193)" # can be in rgb format (rgb(0,0,0)) or hex format (#FFFFFF)
    $server_name_font = "Arial"
    $server_name_font_size = "20px"
    $server_name_bg_color = "rgb(77,108,145)" # can be in rgb format (rgb(0,0,0)) or hex format (#FFFFFF)
    $heading_font = "Arial"
    $heading_font_size = "14px"
    $heading_name_bg_color = "rgb(95,130,169)" # can be in rgb format (rgb(0,0,0)) or hex format (#FFFFFF)
    $data_font = "Arial"
    $data_font_size = "11px"
    # Colors for space
    $very_low_space = "rgb(255,0,0)" # very low space equals anything in the MB
    $low_space = "rgb(251,251,0)" # low space is less then or equal to 10 GB
    $medium_space = "rgb(249,124,0)" # medium space is less then or equal to 100 GB
    #### NO CHANGES SHOULD BE MADE BELOW UNLESS YOU KNOW WHAT YOU ARE DOING
    # Define some variables
    $ErrorActionPreference = "SilentlyContinue"
    $date = Get-Date -UFormat "%Y%m%d"
    $html_file = New-Item -ItemType File -Path "$html_file_dir\DiskSpace_$date.html" -Force
    # Create the file
    $html_file
    # Function to be used to convert bytes to MB or GB or TB
    Function ConvertBytes {
    param($size)
    If ($size -lt 1MB) {
    $drive_size = $size / 1KB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' KB'
    }elseif ($size -lt 1GB){
    $drive_size = $size / 1MB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' MB'
    }ElseIf ($size -lt 1TB){
    $drive_size = $size / 1GB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' GB'
    }Else{
    $drive_size = $size / 1TB
    $drive_size = [Math]::Round($drive_size, 2)
    [string]$drive_size + ' TB'
    # Create the header and footer contents of the html page for output
    $html_header = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Server Drive Space</title>
    <style type="text/css">
    .serverName { text-align:center; font-family:"' + $server_name_font + '"; font-size:' + $server_name_font_size + `
    '; font-weight:bold; background-color: ' + $server_name_bg_color + '; border: 1px solid black; width: 150px; }
    .headings { text-align:center; font-family:"' + $heading_font + '"; font-size:' + $heading_font_size + `
    '; font-weight:bold; background-color: ' + $heading_name_bg_color + '; border: 1px solid black; width: 150px; }
    .data { font-family:"' + $data_font + '"; font-size:' + $data_font_size + '; border: 1px solid black; width: 150px; }
    #dataTable { border: 1px solid black; border-collapse:collapse; }
    body { background-color: ' + $background_color + '; }
    #legend { border: 1px solid black; ; right:500px; top:10px; }
    </style>
    <script language="JavaScript" type="text/javascript">
    <!--
    function zxcWWHS(){
    if (document.all){
    zxcCur=''hand'';
    zxcWH=document.documentElement.clientHeight;
    zxcWW=document.documentElement.clientWidth;
    zxcWS=document.documentElement.scrollTop;
    if (zxcWH==0){
    zxcWS=document.body.scrollTop;
    zxcWH=document.body.clientHeight;
    zxcWW=document.body.clientWidth;
    else if (document.getElementById){
    zxcCur=''pointer'';
    zxcWH=window.innerHeight-15;
    zxcWW=window.innerWidth-15;
    zxcWS=window.pageYOffset;
    zxcWC=Math.round(zxcWW/2);
    return [zxcWW,zxcWH,zxcWS];
    window.onscroll=function(){
    var img=document.getElementById(''legend'');
    if (!document.all){ img.style.position=''fixed''; window.onscroll=null; return; }
    if (!img.pos){ img.pos=img.offsetTop; }
    img.style.top=(zxcWWHS()[2]+img.pos)+''px'';
    //-->
    </script>
    </head>
    <body>'
    $html_footer = '</body>
    </html>'
    # Start to create the reports file
    Add-Content $html_file $html_header
    # Retrieve the contents of the server.txt file, this file should contain either the
    # ip address or the host name of the machine on a single line. Loop through the file
    # and get the drive information.
    Get-Content $server_file |`
    ForEach-Object {
    # Get the hostname of the machine
    $hostname = Get-WmiObject -Impersonation Impersonate -ComputerName $_ -Query "SELECT Name From Win32_ComputerSystem"
    $name = $hostname.Name.ToUpper()
    Add-Content $html_file ('<Table id="dataTable"><tr><td colspan="3" class="serverName">' + $name + '</td></tr>
    <tr><td class="headings">Drive Letter</td><td class="headings">Total Size</td><td class="headings">Free Space</td></tr>')
    # Get the drives of the server
    $drives = Get-WmiObject Win32_LogicalDisk -Filter "drivetype=3" -ComputerName $_ -Impersonation Impersonate
    # Now that I have all the drives, loop through and add to report
    ForEach ($drive in $drives) {
    $space_color = ""
    $free_space = $drive.FreeSpace
    $total_space = $drive.Size
    $percentage_free = $free_space / $total_space
    $percentage_free = $percentage_free * 100
    If ($percentage_free -le 5) {
    $space_color = $very_low_space
    }elseif ($percentage_free -le 10) {
    $space_color = $low_space
    }elseif ($percentage_free -le 15) {
    $space_color = $medium_space
    Add-Content $html_file ('<tr><td class="data">' + $drive.deviceid + '</td><td class="data">' + (ConvertBytes $drive.size) + `
    '</td><td class="data" bgcolor="' + $space_color + '">' + (ConvertBytes $drive.FreeSpace) + '</td></tr>')
    # Close the table
    Add-Content $html_file ('</table></br><div id="legend">
    <Table><tr><td style="font-size:12px">Less then or equal to 5 % free space</td><td bgcolor="' + $very_low_space + '" width="10px"></td></tr>
    <tr><td style="font-size:12px">Less then or equal to 10 % free space</td><td bgcolor="' + $low_space + '" width="10px"></td></tr>
    <tr><td style="font-size:12px">Less then or equal to 15 % free space</td><td bgcolor="' + $medium_space + '" width="10px"></td></tr>
    </table></div>')
    # End the reports file
    Add-Content $html_file $html_footer
    # Email the file
    $mail = New-Object System.Net.Mail.MailMessage
    $att = new-object Net.Mail.Attachment($html_file)
    $mail.From = $from_address
    $mail.To.Add($to_address)
    $mail.Subject = "Server Diskspace $date"
    $mail.Body = "The diskspace report file is attached."
    $mail.Attachments.Add($att)
    $smtp = New-Object System.Net.Mail.SmtpClient($email_gateway)
    #$smtp.Credentials = New-Object System.Net.NetworkCredential($smtp_user,$smtp_pass)
    $smtp.Send($mail)
    $att.Dispose()
    # Delete the file
    Remove-Item $html_file
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • Nagging "Low Disk Space" on Lenovo_Rec​overy Q:

    Hi,
    Just got my new T530. I loaded my application and data and everything works all right.
    However, several times a day I get a "low disk space" popop on the Recovery directory. When displaying the details from the popup there is only a cleanup options, but being the recovery directory there is nothing to cleanup.
    Any idea how I can stop the popup?
    Thanks
    Gerd

    gerdgoebel wrote:
    Any idea how I can stop the popup?
    A couple of ideas:
    1. You can stop Windows from "crying wolf" using this Registry hack: Disable Low Disk Space Notification Alert In Windows 7 / Vista. That's probably the easiest solution but it has the disadvantage that it disables the alert on all disks.
    2. Another approach might be to extend the size of the Q: partition using Computer Management, Storage, Disk Management. This could take a lot of time because you'll have to first shrink the C: partition that follows it to make room.
    Cheers... Dorian Hausman
    X1C2, TPT2, T430s, SL500, X61s, T60p, A21p, 770, 760ED... 5160, 5150... S360/30

  • 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!

  • Does low disk space make my Macbook Pro act weird?

    Hi! I have an early 2011 15" MBP with a 750gb hard disk space. Just the other day, while I was using photoshop with my laptop, the screen went off so I had to reset it. My laptop acted weird after: doing a screen split (the right part goes to the left and vice versa), one time it had weird pixels that were scattered all over, recently, a blue striped screen. All of this froze my laptop by the way. And all of this happened after a few minutes of usage. And I noticed if I use photoshop, it would only take a little amount of time before it would act weird again compared to when I don't. All the times caused me to reset my laptop by holding the power button.
    Yesterday, it wouldn't boot past the gray screen after resetting about five times. But after it turned off by itself, I tried turning it on again and it booted normally. And I could use it normally again, but with extra care (using it beside an electric fan, checking the temperature with iStat pro).
    I tried the extended Apple Hardware Test but it told me no trouble was found.
    Another thing was, everytime my laptop froze and did the weird screen thingy, my laptop was hot.
    I tried to use it again yesterday to just surf the web, and after some minutes it was still functioning. But I remember one time I was only surfing the web, it did the split screen and froze after almost an hour or so.
    Also, my laptop heats up quickly compared before. And can stand being hot for a long time until now.
    I haven't used any heavy applications besides photoshop to test my laptop's weird behavior by the way.
    So I guess it's because of the laptop's heat. Because I can only use it for a very short time when using photoshop but I can use my laptop for a longer time when only surfing the web.
    I also noticed that if I was forced to reset my laptop and turn it on again, it would boot longer than normal. But if I was able to shut it down properly and turn it on again, it would boot normally.
    And, just a while ago, I remembered my laptop's disk space was only 14gb from 750gb (downloaded a lot of series since I bought my laptop). So maybe what's causing the heat was the low disk space. Just a guess.  So is it possible that my laptop is behaving weird because of the low disk space?

    The problem is back. But this time, it only happened when I used photoshop or played a 1080p video. I was using my laptop for almost 3 hours when i decided to use photoshop. It froze as soon as it started and made my screen display weird pixels. I restarted and tried to open photoshop again and this time, it froze. I did it the third time and after using PS for a minute, it did the split screen. After restarting yet again, I tried to play a 1080p video to just test my laptop. It froze as soon as VLC started. But when i only surf the web (which is the only thing I did before using PS), everything goes well. So I guess it really is the GPU and not the logic board or some other parts. I've decided to just have my laptop checked.

  • Finder fails to open when starting up macbook pro due to low disk space (possibly)

    Dear forum,
    I have a Macbook Pro (13") running snow leopard and have a partitioned hard drive (half OS X and half Windows 7). This morning I was using the Mac side and was running low on disk space (very low) so I was moving desktop files into folders to free up some space. I restarted the computer to see what the free space was but the computer stopped/froze at the desktop image (no folders or dock appeared. I restarted the computer many times but the finder never opens and all I see is the desktop wallpaper. I donnected usb drives and put in dvds but the finder never appears so I cn do nothing but shut down and start up.
    I ran Disk Utility but it found no problems with the disk. I do not have a backup of the important file forlders on my drive and due to low disk space I am worried to reinstall and archive the OS since there may not be enough disk space to archive (only about 220 mb free on the apple side when I am in windows using bootcamp).
    Does anyone know what happeded to my machine? Is there such low disk space that finder had an issue? I have started on such low memory before.
    What does Archive actually do when reinstalling OS X? Does it make a copy of the HD files and folders or does it simply reinstall the operating system piece by piece while protecting the files and folders that I wish to save?
    Thanks for all your help and sorry for the length of the writing (I wanted you to understand all before replying).

    Solved
    By chance I got itunes to pop up (running hands over keys blindly) and with it the apple menu icon so I had access to my recently used items and so I could delete images from iphoto and thus bring the free disk space up above zero and then the dock/folders and finder came back....I have just backed up my important files......feeling better now
    Any advice on how to more quickly handle this type of issue next time?
    Thanks.

  • Low disk space message due to scratch disk full (c: drive)

    My computer improperly shut down while I was editing large files.  I had to alt-ctrl-del to shut down. Upon rebooting I received the message "low disk space" My windows drive now has only 75 MB of free disk space which is critically low. My c drive is a 300 GB drive and used for my programs only.  I am guessing that with the improper shut down the temporary files were left.  Is there a way I can manually clear the temporary files.  When I ran disk clean up in Windows system tools it did not show a large number of files. I cleaned out the files that were there and still my c drive shows the 75 Mb free.
    Thank you. Carolyn

    Sure would be nice if Photoshop would clean up it's orphaned temporary files.  As far as I recall it used to do so...  Why was this changed?
    At the moment, with CS5, if you have a Photoshop crash you WILL have a multi-gigabyte file left on your hard drive, and subsequent runs of Photoshop will not clean them up.
    Found just now in my D:\ folder:  Photoshop Temp144397513436   4.5 GB
    Not a big deal if you have 2 TB free, but not everyone does.
    Of course, if Photoshop didn't crash in the first place, this would be much less a problem. 
    -Noel

  • 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 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

  • Low disk space (Boot Camp) - can I repartition my hard drive?

    Hi there -
    I am a MacBook user through and through.  However, I partitioned my hard drive 3 years ago using Boot Camp to do some light Windows-only work.  I only partitioned 8 GB to Windows, which wasn't a problem til now.  I'm now trying to use some Windows-only software again, but am faced with a "low disk space" message.  I cleaned up as much as I could with 8 GB, but it's still not enough.  Can I re-partition the hard drive to more like 20 GB without losing any of the data and/or installed software (I don't have access to the install disks...)?  I tried to install WinClone but I have OSX 10.5.8, and it said it only runs on 10.6 or 10.7.  Can anyone offer advice on an option to re-partition with Boot Camp, without losing the installed software and files/data?
    I have a MacBook running OS 10.5.8 with 2.16 GHz Intel Core 2 Duo and 2 GB 667 MHz DDR2 SDRAM (I know, it's old!!!)
    Thanks

    The correct answer to the question was given by The hatter so take notice please. I will help you gain knowlege ot CampTune by providing the url to the site. Happy sailing!
    http://www.paragon-software.com/home/camptune/

  • 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-||

  • HP Support Assistant indicates low disk space on primary station C:

    Hi,
    My system is a HP Pavilion 500-130ed with Windows 8.1, 64 bits. I'm running version 7.4.45.4 of the HP Support Assistant, currently the most recent version according to same. 
    I get the message 'low disk space on primary station C:'  (my translation, in Dutch it literally says 'Weinig schijfruimte op primair station C:').
    Now I know Windows is resource hungry, but I've 250 GB available on C:! What's happening and how can I make it disappear?
    Cheers,
    Sando

    Uninstall any programs you are no longer using.
    Perform a Disk Cleanup as advised via this site:
    http://windows.microsoft.com/en-us/windows/delete-files-using-disk-cleanup#delete-files-using-disk-c...
    Download and run CCleaner Free from this site and perform a cleanup and registry cleanup:
    https://www.piriform.com/ccleaner/download
    Please mark my post as SOLVED if it has resolved your problem. It helps others with similar situations.

Maybe you are looking for

  • Socket connect slow in JDK 1.5?

    We recently began testing our Java Swing application with JDK 1.5, and we noticed that socket.connect() calls are taking several seconds to return, when before in 1.4 the calls returned immediately. Here is some sample code: Socket sock = new Socket(

  • Mac shuts down when in sleep

    I have a macbook late-2009 and when I am in boot camp and my computer goes to sleep, it shuts  down the computer and  gives me an error that the hibernate file was corrupted. I am thinking that it might be the main battery or the CMOS battery.

  • Problem with Interaction edits to subtitle

    Can't select the subtitle to add instructions in Widget Properties. Updated to Captivate 6.0.1.240 that solved other edit problems, however still can't select and edit the subtitle of the Accordian interaction. Any suggestions?

  • Warning: No more firmware rollback? Or from 1.2 it's only forward?

    Apple has said this in regards to restoring our iPods: Click the Restore button. You will be prompted with one or more restore options that may prompt iTunes to automatically download of the latest iPod Software. The 4 possible restore options are: R

  • Has anyone else noticed light leaking out from the top left corner of your iPhone 4s?

    I took notice of this issue a while back. I haven't gone into apple yet but I will be going in today to see what can be done. I read other threads but they felt with older model I phones and I have te iPhone 4s so I am not sure if it would be the sam