How to find the largest contiguous free space in windows xp

Hi, I have two machines, one running Win7, XP running.  I know how my highest contiguous free space is great under w7, using "defrag c: - one" in a prompt "administrator-started":

C:\Windows\System32>defrag c: - one
Microsoft Disk Defragmenter
Copyright (c) 2007 Microsoft Corp.

Citing analysis on OS (C :)...)

The operation completed successfully.

Post report of defragmentation:

Volume information:
Volume size = 283,40 GB
Space free = 60.49 GB
Fragmented space total = 0%
More large size of free space = 46,29 GB

But, by using the same command in XP does not have the same statistics (I tried 'defrag c: - a - v' for a detailed report, but it does not always give this stat.)  Anyone know how to find out what is the largest contiguous amount of free space on a XP computer?

TIA

K

Hey man follow my link http://us.generation-nt.com/answer/how-find-largest-contiguous-block-free-memory-help-27343152.html , and it explains how to find this information. so, this should be your answer

Tags: Windows

Similar Questions

  • How to find the largest

    DECLARE

    Num_tab_ty TYPE TABLE IS NUMBER;

    num_tab num_tab_ty: = num_tab_ty (6,4,8,7);

    BEGIN

    -How to find the largest and the lowest number in a collection

    END;

    DECLARE

    Num_tab_ty TYPE TABLE IS NUMBER;

    num_tab num_tab_ty: = num_tab_ty (6,4,8,7);

    number of l_greatest_value;

    BEGIN

    Select max (column_value)

    in l_greatest_value

    table (num_tab);

    END;

    /

    HTH

  • Find the largest tables (disk space) in a database

    Our problem: customers who have problems that we cannot recreate are asked to export their data as a dmp and then we download the dmp to investigate to import locally and to implement were the problem is.
    Some customer data sets are too large to download (3-4 GB - I know that this shouldn't be a problem but some customers have very slow connection speeds and it would take a lifetime).
    To work around this, they put on a DVD and send (which takes a few days).
    The thing is, that these data sets are probably around 400 MB with a table showing the rest with blobs (and this table is probably not the cause of the problem). So indeed, we can it exclude from the export.

    What we want to achieve:
    There are potentially some of these tables that could be large so we would like to produce a script to determine which tables are the largest disk space. We then (if the problem that the customer experiences is nothing to do with these tables) will not include these export on the DMP. Which means we can get their faster data and subsequently solve their problem in a shorter time.

    Where to start any help will be much appreciated. We use db 10g

    You can query s/n | WHERE user_segments, ordered by decreasing bytes.
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14237/statviews_4097.htm#REFRN23243
    Something like:

    select segment_name
    ,      segment_type
    ,      bytes
    from ( select segment_name
           ,      segment_type
           ,      bytes
           from  dba_segments
           where owner  = user
           order by bytes desc
         )
    where rownum <= 10 
    

    For the 10 largest segments.

  • How to find the product key for pre-installed WIndows 7 Home Premium?

    I bought a laptop that was provided with Windows Home pre-installed permium.

    How can I load Windows once more, because I don't have the key? How can I find the key on my laptop?

    Look for the COA sticker, normally at the bottom or in the battery compartment:

    COA certificate of authenticity:

    http://www.Microsoft.com/howtotell/content.aspx?PG=COA

    What is the certificate of authenticity for Windows?

    http://Windows.Microsoft.com/en-us/Windows7/what-is-the-Windows-certificate-of-authenticity

  • How to find the date of purchase of my windows?

    I don't know the Date of purchase of windows, I can find it using the product key? or another procedure?

    Really, there is no way to find the date of purchase by using a Windows installed, Windows Installer CD or product key.   You need to find the original "Bill" room, you bought your computer or Windows.

  • How to find the largest files on my drive

    My drive becomes full, and I want to delete some of the bigger files. How can I find them without going through each folder?

    Hi llk5,

     

    You can use Details view in windows Explorer to check the size of the files in the folders. You can identify the file that more large sizes depending on the size of the column and then delete them as needed. You can refer to the link below to set the details view in Explorer windows and check -

    http://Windows.Microsoft.com/en-us/Windows-Vista/change-folder-views-and-behavior

     

    I hope this helps.

  • How to find the largest number of text file

    I use the "Read from the text file" block to read the data in my .txt file in labview.  It is now in the string format.  I have a lot of numbers in the file.

    For example:

    0.45

    0.35

    0.12

    1,354

    1.56

    2.89

    5.89

    0.56

    That's what might look like a text file.  I want to find out which of these numbers is larger and do calculations with this number.  I have problems with channels/number/berries formats, etc.  Thank you

    Try to read that the file with File.vi reading worksheet with transposes the True value. Then use the table Max & Min to get the biggest number in the table.

    Lynn

  • How to find the second largest in a pl/sql table

    Hello friends,

    I want to find the first and second maximum items in a pl/sql table.

    Here's the code...

    DECLARE
    Max_earnings_type TYPE TABLE IS NUMBER;
    max_earnings_tab max_earnings_type: = max_earnings_type();
    number of v_count: = 0;
    number of v_max_earnings;


    Can someone give me how to find the maximum first max and second in the type of the given table.

    appreciate your help.

    Thank you/kumar

    Published by: kumar73 on October 21, 2010 09:42

    kumar73 wrote:

    When I tried to implement your logic in my application, I get the following error...

    PL/SQL: digital or value error: NULL index key value table

    What happens if the PL/SQL table has NULL values. Question is how you want to handle NULL values. You want to ignore nulls as GROUP BY do? If you want to consider NULL values, you can say if you want to order the NULLS FIRST or NULLS LAST. I guess that logical GROUP BY:

    DECLARE
        TYPE max_earnings_type IS TABLE OF NUMBER;
        TYPE max_earnings_sorted_type IS TABLE OF NUMBER
          INDEX BY BINARY_INTEGER;
        max_earnings_tab        max_earnings_type;
        max_earnings_tab_sorted max_earnings_sorted_type;
    BEGIN
        SELECT  sal + comm
          BULK COLLECT
          INTO  max_earnings_tab
          FROM  emp;
        FOR v_i in 1..max_earnings_tab.count LOOP
          IF max_earnings_tab(v_i) IS NOT NULL
            THEN
              max_earnings_tab_sorted(max_earnings_tab(v_i)) := 1;
          END IF;
        END LOOP;
        DBMS_OUTPUT.PUT_LINE('MAX value in PL/SQL table is ' || nvl(to_char(max_earnings_tab_sorted.last),'NULL'));
        DBMS_OUTPUT.PUT_LINE('Second MAX value in PL/SQL table is ' || nvl(to_char(max_earnings_tab_sorted.prior(max_earnings_tab_sorted.last)),'NULL'));
    END;
    /
    MAX value in PL/SQL table is 2650
    Second MAX value in PL/SQL table is 1900
    
    PL/SQL procedure successfully completed.
    
    SQL> SELECT  sal + comm
      2    FROM  emp;
    
      SAL+COMM
    ----------
    
          1900
          1750
    
          2650
    
          1500
    
      SAL+COMM
    ----------
    
    14 rows selected.
    
    SQL>
    

    SY.

  • How to find the last pasted paragraphs FMP?

    I'm sticking FMP several objects at once in a file (a file of changes to the sections containing the changebars) in the main text flow. I want a separator line to go at the end of each pasted section, so I try to insert one after the paste operation. But instead of a line between each section, all lines are added at the end of the file, after all the sections. So if there are 3 glued sections at the end of the file are three lines. My code is below, do you know how I could fix this?

    Thank you, Mark

    function copyPasteChanges (doc, chgRange) {}

    Select the section with changebar and copy it.

    doc. TextSelection = chgRange;

    doc. Copy();

    Prepare for the changes doc and paste there the modified section.

    var firstChgPgf = changesDoc.MainFlowInDoc.FirstTextFrameInFlow.LastPgf;

    var changesTloc = new TextLoc (firstChgPgf, Constants.FV_OBJ_END_OFFSET);

    var changesTRange = new TextRange (changesTloc, changesTloc);

    changesDoc.TextSelection = changesTRange;

    changesDoc.Paste ();

    To go at the end of the file again (I think)

    var lastPgf = changesDoc.MainFlowInDoc.FirstTextFrameInFlow.LastPgf;

    var dividerPgf = changesDoc.NewSeriesPgf (lastPgf);

    var TLoc = new TextLoc (dividerPgf, 0);

    changesDoc.AddText (TLoc, '_');

    }

    Hi Mark,

    The problem is that the dough does not occur when you think. The dividing line is added at the end of the file, but are not your actions of dough. Actually, I think that maybe a little random where pasta is produced, because this line:

    var changesTloc = new TextLoc (firstChgPgf, Constants.FV_OBJ_END_OFFSET);

    .. .is does not create a valid text location. You can check this by abandoning the service after:

    changesDoc.TextSelection = changesTRange;

    .. and look at where's the insertion point. It will probably be everywhere where you left it last, because the call is not valid. I can't tell you exactly why, except that it has something to do with the fact that you are using the last paragraph in the stream. There is something weird to try to define a range of full-paragraph text with the last paragraph. I'm sure it's related to how the last TFP in a stream does not show a mark of FMP, but beyond that, I don't know how to do what you're trying to do with the last paragraph.

    Having no knowledge of how do it right, any time I need to do this, I create a paragraph "dummy" at the end of the flow to fill that space strange 'last FMP", then do the work around it. In the end, I just want to remove fake TFP. I don't know if it's a good idea or not, but it's the only way I ever get it to work and it sorts the mirror how you could do this manually in the GUI.

    With this, I modified your script as follows, and it seems to work better. Note that I also modified the logic of how to find the last paragraph of the flow by writing a separate function. Your call to the 'FirstTextFrameInFlow' is OK, unless your doc begins to span several pages and/or begins with several empty pages. The function I wrote ensures that you really the last TFP in the stream.

    I hope this helps.

    Russ

    function copyPasteChanges (doc, chgRange) {}

    Select the section with changebar and copy it.

    doc. TextSelection = chgRange;

    doc. Copy();

    Prepare for the changes doc and paste there the modified section.

    var lastPgf = getLastPgf (changesDoc);

    var dummyPgf = changesDoc.NewSeriesPgf (lastPgf);

    var changesTloc = new TextLoc (dummyPgf, 0);

    var changesTRange = new TextRange (changesTloc, changesTloc);

    changesDoc.TextSelection = changesTRange;

    changesDoc.Paste ();

    To go at the end of the file again (I think)

    Don't forget that last TFP is now fake TFP

    lastPgf = getLastPgf (changesDoc);

    var dividerPgf = changesDoc.NewSeriesPgf (lastPgf.PrevPgfInFlow);

    var TLoc = new TextLoc (dividerPgf, 0);

    changesDoc.AddText (TLoc, '_');

    dummyPgf.Delete ();

    }

    function getLastPgf (doc)

    {

    textFrame var is doc. MainFlowInDoc.LastTextFrameInFlow;

    var lastPgf = textFrame.LastPgf;

    While (! lastPgf.ObjectValid () & textFrame.ObjectValid ())

    {

    textFrame = textFrame.PrevTextFrameInFlow;

    lastPgf = textFrame.LastPgf;

    }

    Return lastPgf;

    }

  • How to find the size of the semantic model

    Hi all

    Please can you tell me how to find the size of the semantic model.

    Thank you
    INDU

    Hi Indu,

    A couple of several things:

    1 we still need an application, in order to account for the storage of the Table in the Application

    This query gives you the name of application table

    Select the table table_name from mdsys.sem_model$
    where model_name = '';

    This will give you the size in MB

    Select semmodel.table_name, dbaseg.bytes/1024/1024 MB
    of mdsys.sem_model$ semmodel, dba_segments dbaseg
    where semmodel.table_name = dbaseg.segment_name
    and semmodel.model_name = '';

    2. If the model is the only one of the semantic network, you can get the space used by the table of $ RDF_VALUE using this query

    Select bytes/1024/1024 MB dba_segments where nom_segment = '$RDF_VALUE ';

    If there are several models, this space is shared between all of them.

    Kind regards!
    Jorge

  • How to find the drive assigned to ASM diskgroup

    Hi all
    I created some ASM disks and do not know if I attributed to a diskgroup. Please may I know how to find the disc by ASM diskgroup or free on the disk that can be used.


    Thank you.

    Hello

    You must make reference to:
    http://download.Oracle.com/docs/CD/B28359_01/server.111/b31107/asmdiskgrps.htm#CHDIBGGH
    If you scroll down a bit you'll find: "groups example 4-3 look at a disk with associated disks.

    You can also check more specifically:
    http://www.Stanford.edu/dept/ITSS/docs/Oracle/10G/server.101/b10755/dynviews_1019.htm

    HTH,
    Thierry

  • How to find the point of intersection of the two geometry?

    Hello
    Could someone give some suggestions on how to find the point of intersection of the two geometry?
    I need just point. (x, y, z)
    Thank you

    Can you post the full result of geometry returned?

    What you should have as a result:

    MDSYS. SDO_GEOMETRY (2001, 1, NULL, MDSYS.) SDO_ELEM_INFO_ARRAY (1,1,1), MDSYS. SDO_ORDINATE_ARRAY (2.0,2.0))

    Notice the sdo_intersection will use only the sdo_ordinate_array, even if the result is a point! (with the SDO_POINT is NULL.)

    where do you find these x, y, z values of?

    On your other question:

    -using the operator space sdo_relate (with mask = ANYINTERACT) will return in pairs, the result of the intersection of each anyinteracting polygon, line combination.

    -of course, these results will vary from point, multipoint, line or multiline even depending on how the interaction takes place.

    -try to explain a bit more what do you mean 'I want only points to return' of nit.

    Luke

  • How to find the size of the scheme with or without fragmentation

    Hello Sir,
    How to find the size of the scheme with or without fragmentation?

    to find all of the bytes used by a schema, you can add the bytes for the owner of the dba_segments views.

    for fragmentation, I guess you want to know about the space left between the segments.

    finding depends on the design and standards of your database.

    Each scheme has its own storage space? If Yes, then you can take the total space used in storage and then subtract the number of the dba_segments.

  • says that there is an update of firmware available for my 3 t time capsule. I get "an error occurred when downloading". How to find the problem?

    I said that there is an update of the firmware available for my 3 t time capsule. I get the message "an error occurred when downloading". How to find the problem? I have elcapitan 10.11.6 and capsule version 7.7.3

    Try temporarily, connect your MacBook Pro to your Time Capsule using an Ethernet connection... If not already, then try downloading the firmware again.

  • How to find the serial number of the processor in the MacBook pro s serial number? I have a dead MacBook that was given for service to a third party. I doubt that they have replaced the original parts. Help, please. Thank you

    How to find the serial number of the processor in the MacBook pro s serial number? I have a dead MacBook that was given for service to a third party. I doubt that they have replaced the original parts. Help, please. Thank you

    As far as I KNOW, the serial number of the MacBook does not have the serial number of the processor.

Maybe you are looking for

  • Qosimo F750 - questions using Tripplehead2go

    I currently have problems with my F750 using a Matrox (http://www.matrox.com/graphics/en/products/gxm/th2go/digital/) and an Analog DualHead2Go Digital Tripplehead2Go, the F750 will not use the NVIDIA card for the second output screen, so I can get a

  • Flags Data Points: copy - lack of flags?

    I use DIAdem 2012 to extract a FFT points. Whenever I use the function ' copy of flags Data Points: "created channels are missing the last point data (flag). in other words channel contains n - 1 points. For the moment, I add an additional indicator

  • Audio device removed by accident.

    How can I re install handheld IDT Audio on my HP Pavilion g6-2260sa running windows 8? I accidentally installed UN.

  • Windows 8 driver for printer 1320c

    The compatibiltiy shows that the drivers are in Windows Update.  I don't see it there.  Are there drivers for a different model that I can use?  Drivers windows 7 will not install unless there is a trick to get to install them.

  • computer ignoring C:

    My computer seems to be installing new programs and downloaded the files on my E: drive, which is a disk storage used for old content, rarely used.  My C: drive is 1.72 free TB while my E: drive is free 536KO.  How to instruct new that it be stored o