Searching for a file in client backups - Window's Home Server 2011

Here is my problem:
I have great backups on WHS2011, but only need to restore a couple of files.  I am looking for a file a non-standard program uses, and it is not in any of the normal places.  I can restore the file if I can find it, but is there a way I can search
for a file in these .DAT files?
Many thanks.

As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark it as ‘Answered’ as the previous steps should be helpful for many similar scenarios.
 If the issue still persists and you want to return to this question, please reply this post directly so we will be notified to follow it up. You can also choose to unmark the answer as you wish.
 In addition, we’d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems.
 Thanks!
Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
the thread.

Similar Messages

  • Searching for a file in java

    What I am trying to do is not very uncommon. I want to open a file in it's default application (or at least in a common one.)
    Mainly I am currently thinking either HTML files or PDF's.
    What I was wondering is how to search for a file and get its directory path. For example I want to search for the file "Acrobat". In windows its directory is "C:\Program Files\Adobe\Acrobat 5.0\Acrobat\Acrobat.exe"
    But I know in MAC or Unix the path could be very different. Not only that, but what if they did not use the default installation directory. I just want to find the path of a file by invoking a search. Is there currently any way to do this?
    I know I can open a JFileChooser and make the user search and find the program they wish to run it in, but that certainly is not very user friendly. I'd rather the program just searched for the proper application(s) and then called the exec() method to run the file in the program.
    Any help is appreciated.

    java.io.File provides a listRoots() method that returns all file system roots. So for Windoze you'd get 'A:/', 'B:/' 'C:/' ... etc.
    Unix you'd get '/' and so on.
    Now you can use other File methods to recursively scan the roots.
    Here's some (untried) code to get you going that searches for all java.exe found on all roots.
    import java.io.File;
    import java.util.Arrays;
    import java.io.FilenameFilter;
    import java.util.List;
    import java.io.IOException;
    public class FindIt {
      public FindIt () {
        File[] roots = File.listRoots();
        List list = new ArrayList();
        for (int i = 0; i < roots.length; i++) {
          scan(roots,list,new FilenameFilter(){
    public boolean accept(File file, String name) {
    return new File(file,name).isDirectory() ||
    name.equals("java.exe");
    public static void scan(File path,
    List list,
    FilenameFilter filter) throws IOException {
    // Get filtered files in the current path
    File[] files = path.listFiles(filter);
    // Process each filtered entry
    for (int i = 0; i < files.length; i++) {
    // recurse if the entry is a directory
    if (files[i].isDirectory()) {
    scan(files[i],list,filter);
    else {
    // add the filtered file to the list
    list.add(files[i]);
    } // for
    } // scan
    public static void main(String[] args) {
    new FindIt();
    You will run into problems with some roots as they will be removeable media (cd's diskettes) or network drives (potentially huge number of dirs to scan). So I do not recommend that you search on all roots, but a subset.
    Dave

  • I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    To locate large files, you can use Spotlight as described here. That method may not find large folders that contain a lot of small files.
    You can also use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install ODS in the Applications folder as usual.
    Triple-click the line of text below to select it, then copy the selected text to the Clipboard (command-C):sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means.
    When you're done with ODS, quit it and also quit Terminal.

  • Searching for shared files over a server network using a client computer

    I think spotlight can only be used to search for files on a local computer. Is there a way to search for shared files on a server from a logged in client computer?

    It should work on shared HFS volumes. You would have to start the search from the Finder, not from the Spotlight menu.

  • How to search for a file?

    Hi I am currently using the below code to detect a file automaticaly in a thumbdrive. So currently I have to state the path directory to detect the particular file. Is there a way to search for the file in the thumbdrive using Java?
    public class Detect {
    public static void main(String[] args)
    File f = new File("f:\\");
    while (! f.exists())
    try { Thread.sleep(500); }
    catch (InterruptedException e) {}
    System.out.println("drive inserted!");
    }

    You'll need to recursively search through a top directory and all its subdirectories for all files. Here is a link how to do this.
    http://www.javapractices.com/Topic68.cjp
    You can search for all drives A through Z for the file (using something like new File("F:") and catching the exception if not found (and dont do anything with the exception). But exclude C and D drive since they are usually hard drives and take forever to search through. Also, you may want to use File.separator instead of '/" or '\' in your code since windowsXP uses one while Unix uses the other and you would want your code to be able to run on either operating system.
    Are you building a web page with this? if so, it will not work since your search code would be running on the server and not on the client's machine. Even if you were able to run it on the client machine via his browser, you cant because of security reasons (end users dont want to give you access to thier drives). If its a web page, look into file upload html tag called <input type="file". This allows the end-user to navigate on his machine to where the file is and download it without you having to search for it.
    If you writing an application instead of a web page, I think there is an applet you can use that will do the same thing as <input type="file".
    Searching though a directory structure isn't good since it takes too long for users t wait.

  • Search for big files

    I have a MacBook Pro, and I am running out of Hard Disk space. I used to just create a smart folder that contained files larger than 100 meg. Now I can't see the size in the smart folder view. Any way to make this happen? Did apple seriously not include an option to search for large files and display the file size? If this is the case, that is a serious problem.
    Ken

    I should mention a "not really a work around" thing you can do to help, at least a little:
    When you have your list of files larger than whatever, select the first item, then bring up the "Show Inspector" window (Command-Option-I) and place it next to your results window. It shows the actual size of the selected file. Click back on the results window if necessary (this is ANOTHER annoyance--Finder windows sometimes lose focus to the Info window without any visual feedback from either of the windows that this has happened, and sometimes they don't), you can now use the arrow keys to move up and down the list and read the size in the Info window of each file. Not really what one wants, but at least you can locate the biggest files.
    Francine
    Francine
    Schwieder

  • Can't retrieve project from early Photoshop Elements 5.0 as program is searching for Missing Files.  These were transferred from that computer and then lost HELP

    When I bought my new laptop I transferred "My Pictures" onto a memory stick then onto the new laptop which are now lost.  I have a very important family holiday/wedding still on my old computer in Photoshop Elements 5.0.  The photos are there but when I open them I get a window where PE is "searching for missing file".  Is there any way I can save these photos please?

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • Searching for ARCHIVLOG file.

    Hi all,
    I'm hitting this error.
    unable to find archive log
    archive log thread=1 sequence=4367
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 05/04/2010 12:38:29
    RMAN-06054: media recovery requesting unknown log: thread 1 seq 4367 lowscn 176373105
    I need to know where oracle is searching for what file.... is it possible to get this infos ??????
    Thanks
    *T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi.
    thanks for your reply.
    I was trying to move my OEM GC Repository to a new database / host.
    I use the metalink doc 602955.1
    I activated the archivlog Mode descried in the doc.. After that I create the RMAN backup. ...database plus archivelog;
    At the restore point I got the error of missig archivlogs :-(((
    SQL> select FIRST_TIME, SEQUENCE#, THREAD# from V$ARCHIVED_LOG where SEQUENCE# = 4367;
    .. NOTHING SELECTED..
    select first_time, sequence# from V$ARCHIVED_LOG
    FIRST_TI SEQUENCE#
    09.06.09 3247
    09.06.09 3248
    09.06.09 3249
    09.06.09 3247
    09.06.09 3248
    09.06.09 3249
    09.06.09 3247
    09.06.09 3248
    09.06.09 3249
    09.06.09 3247
    09.06.09 3248
    FIRST_TI SEQUENCE#
    09.06.09 3249
    04.05.10 5650
    04.05.10 5651
    What can I do to find the archivlog file or ignore it.
    Thanks. *T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Searching for Missing File Message

    When I click on a picture in Organizer getting a message "searching for missing file". The picture opens ok, but then get the preceding message which eventually goes away.
    Any suggestions as to why this is happening.
    Thanks

    It means you moved or renamed the file outside of PSE (e.g. with Windows Explorer).   PSE is searching your folders for the new location, and it sounds like it is finding it.  It is much better to only move photos and folders containing photos within PSE.

  • Search for a file regardless of OS

    Hi there,
    I want to search for a file regardless of which OS I am using. User can enter a filename like D:/abc/project/file.txt or just simply file.txt. I am required to handle path natively because if the user is using windows they will enter the windows style path and if they're using linux, they will enter it the linux style.
    for all of you who think that im asking you to do my assignment, i am not, its a very very small part of the huge project and if someone could help me on this. I can find the file in the current directory if only a filename is given, but if the whole path is given, my search fails
    thank you very much

    What you might be able to do is take the string that represents the filename and tokenize on both \ and /
    Then, iterate through the tokens and substitute either char for the File.pathSeparator character.
    String fname;
              StringTokenizer st = new StringTokenizer(s,"\\/");
              while (st.hasMoreTokens()) {
                   fname += st.nextToken() + File.pathSeparator;
    something like that (better to use a StringBuffer instead of += too)

  • I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac.  Any suggestions?

    I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac. The drive is not listed in Disk Utility.  Any suggestions?

    Is the computer in you equipment line:
    Dual Core Intel Xenon
    (which is not a PowerMac but a Mac Pro) the one you are asking about, or do you have an older PowerMac?
    If a Mac Pro, their forums are here:
    Mac Pro
    and, as Mac Pros have a totally different architecture from the pre-2005 Macs this forum covers, you may not have the same issues that can affect the older models. If someone didn't notice your equipment line, you could get advice that doesn't apply.
    If you really have a pre-2005 PowerMac, read on.
    If the stubborn external is USB and does not have its own power brick (i.e., it gets power only from the computer's UBS ports--"bus powered"), it may not be getting enough power. As electric motors age, they can demand more power than when new, and the power available on any USB port is limited.
    The typical workabouts to making a computer recognize an aging, bus-powered USB drive are:
    Get a powered USB hub (has its own power brick
    Get a "Y" USB cable: 1 Meter USB 2.0 A to 5 Pin Mini B Cable - Auxiliary USB "Y" Power Design for external hard drives.
    The second gets power from two USB ports on the computer and often that's enough.
    Remember that the USB ports on your keyboard seldom provide enough power even for a thumb drive, so be sure to use the USB ports on the back of the computer.

  • How Can I Search for Media files by Length?

    I want know how can I search for media files (mov, mp4, flv and movie files in general) by their length?
    If this search function is confirmed as definitely not possible on the OS, I would appreciate someone recommending app that might be able to perform such a search?
    Many thanks

    No possible way. Because the files may be enoded with differing codecs, compression, etc., you can only sort by file size, not the 'length' of the movie files.
    Clinton

  • How to search for a file and copy it to somewhere else in terminal

    So basically how can I search for a file on my computer named "testingtesting.txt" and copy it to my desktop using terminal? I have very little experience in terminal, so I was going to try and use the mdfind command, then store that output as a variable, and use that variable as the source for the cp command, but I feel like there is probably a much simpler method. So basically how could I find a file named "testingtesting.txt", copy it, and paste it to my desktop using terminal.

    Is there any particular reason that you must use Terminal?
    You could just download the free EasyFind from the App Store and find the file quickly. Do whatever you wish with it.
    Good luck,
    Clinton

  • Pavilion dv6 - the search for WLAN doesnt exist after installing windows 7 ultimate

    pavilion dv6 - the search for WLAN doesnt exist after installing windows 7 ultimate
    after installing windows 7 my computer only displays the LAN on my quicklaunch bar and I can even search for open WLAN networks =(

    Hi:
    You probably need to install the wireless card driver.

  • How can i search for multiple file names (images) in bridge?

    Hello everyone!
    Does anyone know how to search for multiple file names in bridge?
    That is to copy & paste something like this: _MG_2152, _MG_2177, _MG_2194, _MG_2195, _MG_2202, _MG_2212, _MG_2219, _MG_2261, _MG_2362, _MG_2401
    Not using several criterias in the search box that is. That takes too long.
    Thanks
    Steffen Rikenberg Photographer
    Oslo, Norway.
    www.steffenrikenberg.no

    Try this add-on [https://addons.mozilla.org/it/firefox/addon/find-all/ Find All]

Maybe you are looking for

  • IPod Shuffle(2nd Gen) will not sync or restore

    I've done it all. Tried different USB slots. The 5 R's. Reset Utility. Made the appleipod.bat file and ran it with the .dll's.... My iPod wont sync and allow new music to be put on. I was able to reset the iPod with the reset utility and I have no mu

  • Password for Adobe Flash Player

    When I try to 'install' the "New Version" of Adobe Flash Player it tells me to put in my ID and Password. I put in my ID and Password (I use the same one for everything, and I also have it written down) and it shakes it's head and won't let me do it.

  • Image flickering

    I'm using a different thread to create an animation in which image moves one pixel at a time after every 80 milliseconds or so.but the image flickers every time it is drawn at new coordinates. can anybody help me out. thanks in advance

  • Getting error msg while using SFP tcode to use intaractive ADOBE forms

    Hi All, I wanna make use of Adobe intractive forms in one application. when i use transaction SFP and click on the layout tab i get following error message. Could not start Layout Designer (see long text) Message no. FPUIFB086 Diagnosis The forms des

  • BAPI_ENTRYSHEET_CREATE - Acceptance only. Possible?

    Hi, Is it possible to accept an existing entry sheet using BAPI_ENTRYSHEET_CREATE? Otherwise, are there any existing functions which can achieve that? Many thanks in advance.