replace the folder $ $hf_mig in xp sp3

I deleted this file because I miss read the operating instructions from Ms.  My question is it need to be replaced or whatever?  So you need how?  Thank you

http://forums.MajorGeeks.com/showthread.php?t=86514

Tags: Windows

Similar Questions

  • I accidentally lost some jpeg files using movement and replace the function when transffering in a new folder. Where will the replaced files?

    I moved some images in a folder, some of the images already in the folder had the same name as the new scanned images IE 1 Scan, Scan 2 etc. I used the move and replace the folder without thinking that I was in a hurry. I still need replaced images but now I can not find them I thought that they would have ended up in the trash, but they aren't there?

    You can download some like this free data recovery software to recover deleted files.

    1 panda Recovery http://www.pandorarecovery.com

    2 recuva http://www.snapfiles.com/get/recuva.html

    3. undelete more http://undelete-plus.com/

    How does it work?

    When you delete a file on the FAT32 or NTFS file system, its content is not erased the disc, but only the reference to the data file in the file Table of Allocation or the master file Table is marked as deleted. This means that you might be able to recover files deleted, or to be visible through the file system again.

  • Delete/remove/replace the files/folders during recording

    Hello again.

    I am a simple script similar to the one you have probably already seen and used more than probably before (multiexporter.jsx by Tom Byrne) finish. My production department asked that we give them one PDF file per the artboard in the document with the specific export settings and an appropriate filename (based on the name of the artboard).

    I wrote a loop to save on each work plan with all the right settings... but now I'm on the problem of duplicates. It is very likely that I will have many names in double artboard, but they all need to be saved. By default, the files are overwritten by subsequent backup function. I spent that by adding a kind of number sequence at the end of the file name if a duplicate is found.

    The problem is now, I want the script runs correctly, regardless of whether or not the destination folder exists. For example, I have already run the script and saved my file .ai and PDF files. Now I realize that I had to make a change in the file and re - register (via script) and overwrite the files that I saved it the first time. Unfortunately, due to the sequence of numbers that I talked about above, I get all the old files, but also all of the new files in the folder.

    My first thought was to delete the destination folder and re-create. However, it seems that Javascript cannot do this. Should I just tell my artists that they must manually delete their records before they re - run the script? or is it possible to replace the folder while keeping the sequencing of files in the folder?

    Here is the code:

    #target Illustrator
    
    
    //Script name: Save Document and Extract PDFs
    //Author: William Dowling
    //Creation Date: 10/15/15
    /*
        Saves active document to user's desktop in dated folder with order number as filename.
        Saves each artboard as a PDF with artboard name as filename.
    */
    
    
    function container(){
        var docRef = app.activeDocument;
        var layers = docRef.layers;
        var aB = docRef.artboards;
        var dest = findDest();
        var date = getDate();
        
        function findDest(){
            var dest = new Folder("~/Desktop" + "/Today's Orders");
            return dest.fsName;
        }
        
        function getDate(){
                var today = new Date();
                var dd = today.getDate();
                var mm = today.getMonth()+1;
                var yyyy = today.getYear();
                var yy = yyyy-100;
    
    
                if(dd<10) {
                    dd='0'+dd
                } 
                if(mm<10) {
                    mm='0'+mm
                } 
                return mm+'.'+dd+'.'+yy;
            }
        
        dest = "/Volumes/Macintosh HD" + dest + " " + date;
        if(!dest.exists){
            var newFolder = new Folder(dest);
            newFolder.create();
        }
        if(docRef.name.substring(0,2) == "Un"){
            var oN = prompt("Enter Order Number", "1234567");
            var fileName = oN;
        }
        else{
            var fileName = docRef.name;
        }
        var saveFile = new File(dest + "/" + fileName);
        if(saveFile.exists){
            if(!confirm("This File already exists.. Do you want to overwrite?", false, "Overwrite file?")){
                return;
            }
        }
        docRef.saveAs(saveFile);
        var pdfdest = dest + "/" + fileName.substring(0,fileName.indexOf(".ai")) + "_PDFs";
        var pdfFolder = new Folder(pdfdest);
        if(!pdfFolder.exists){
            pdfFolder.create();
        }
        else if(pdfFolder.exists){
            if(!confirm("The PDFs folder for this order already exists.. Do you want to overwrite?", false, "Overwrite PDFs Folder?")){
                return;
            }
            else{ 
                //pdfFolder.Delete(); //within this else statement, i'd like to remove the folder or it's contents and start with a fresh folder
                pdfFolder = new Folder(pdfdest);
                pdfFolder.create();
            }
        }
        
        //loop artboards to save individual PDFs
        
        var pdfSaveOpts = new PDFSaveOptions();
        pdfSaveOpts.preserveEditability = false;
        pdfSaveOpts.viewAfterSaving = false;
        var seq = 1;
    
    
        for(var a=0;a<aB.length;a++){
            var range = (a+1).toString();
            pdfSaveOpts.artboardRange = range;
            var pdfFile = new File(pdfdest + "/" + aB[a].name);
            var thisPDF = new File(pdfFile + ".pdf");
            if(thisPDF.exists){
                thisPDF = new File(pdfFile + " " + seq.toString());
                docRef.saveAs(thisPDF, pdfSaveOpts);
                seq++;
            }
            else{
                docRef.saveAs(pdfFile, pdfSaveOpts);
            }
        }
    }
    container();
    

    I just did a test, and Yes, it looks that you must first delete all the stuff in the folder. the remove() method returns a true or false value, so you can check if the file could be deleted or not.

  • Problems with folder permissions after replacing the hard drive

    Hello

    Recently, I replaced the hard drive on my mac.  Already before the replacement, I got the files that I had locked.  Now I'm unable to open the file.  I get the error "the folder 'nom_de_dossier' can not be opened because you don't have permission to see its content".  I looked at the permissions for the folder and everything he says is fetch.  I ran a command in the Terminal and for one of the records in question, that's what I see-

    drwxr-x - 13 501 501 442 5 July 2013 MG

    Any help would be greatly appreciated!

    Running OS X El Capitan

    10.11.4 version

    Try this first:

    Start the mac all holding the SHIFT key, it is slow, connection, and then select Restart from the Apple menu.

    When this does not help:

    Reset password utility in the recovery Partition:

    1. Restart your computer from the recovery partition.
    2. Open disk utility and run a repair permissions on your boot volume (in ElCapitan click the first aid tab). Once this completed, close disk utility. We do this for good measure.
    3. Open a Terminal from the Utilities menu. Type in resetpassword and select your user (NOT administrator system/root) account in the menu drop-down.
    4. Click on the Reset button at the bottom of the window ACL section and Reset the folder permissions.
    5. Exit the utility password and return to the main recovery menu.
    6. On your keyboard, press + Q and restart your computer. It is very important that you don't hold down the power button to exit the recovery session, or the ACL Reset to occur.
  • Replace the iTunes from Mac to another folder and make it synchronize with the iPhone?

    I copied the iTunes folder full of an iMac of El Capitan 2013 a 2015 running iMac running a little newer version of El Capitan. I want to replace the iTunes folder on the new Mac with my backup and everything on the new Mac to work as it did on the old, well that the old iMac and a new have different names, I do not know if what counts.

    1. my entire library of music appear and be available after replacing the files?

    2. home sharing with all my devices work after replacing the files?

    3. what happens with my iPhone and iPad that already synced with my old iMac? Will they continue to synchronize on the new iMac, as I replaced the entire folder?

    4. are there any other questions or things that I need to address with what I do?

    Thank you!

    1 Yes

    2. no doubt. If this isn't the case, you may need to reconfigure. I don't know exactly where these settings are stored.

    3. Yes

    4. nothing much as your installation is as described and the entire library is stored in the iTunes folder. Some elements used in iTunes related activities are not stored in the iTunes library folder, but in special folders.  If you move a library to another computer, you can copy these too:

    -Music Apple file cache: http://dougscripts.com/itunes/2015/09/new-flush-apple-music-cache-files/

    -device iOS, various preferences files backups: https://discussions.apple.com/thread/3285925

  • Give permission to the domain users to replace the file in the folder created by domain admin

    We have a domain controller in our network. also we have the domain users and domain administrator. We create a batch file that copies a file to the folder by using a script to the server policy when users open a session input/output. However if the admin area access system cant use overwrite file in the folder. We want to give permission to the domain users to replace the file in the folder created by the domain administrator.

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    http://social.technet.Microsoft.com/forums/en/category/w7itpro, w8itpro, windowsvistaitpro, windowsxpitpro, windowsintune

    Hope the information is useful.

  • In XP PRO SP3 WMP11, will add all my files in the library. I added the folder, but it adds only 116 records 2000

    In XP PRO SP3 WMP11, will add all my files in the library. I added the folder, but it adds only 116 records 2000

    In XP PRO SP3 WMP11, will add all my files in the library. I added the folder, but it adds only 116 records 2000

    You cannot view, add, or delete items in the library of Windows Media Player 11

  • How to replace a bad IDE disk with a USB Flash drive system - and have all the functionality of XP Pro SP3

    How to replace a bad IDE disk with a USB Flash drive system - and have all the functionality of XP Pro SP3
    Given a PC without hard disk...
    How can you use a flash drive instead?
    So, indeed, the USB key works as an SSD...
    I saw online options that gives partial functionality of the system... and an option that is more than $100 (more than the system's worth)...
    None of these options are acceptable in the circumstances.
    It is an effort to create a machine for a particular use, built from a recycled pc for which hard drive was removed and destroyed by the original owner...
    The criterion is that it must work just like it was a mechanical drive running xp pro sp3 with all updates, etc...
    Thanks for any help.

    You can not install XP on a Flash as his unsupported drive. Your only two options are a traditional hard drive or Solid State Drive (SSD).

    J W Stuart: http://www.pagestart.com

  • How can I download and replace the fonts directory in the folder Windows for Vista

    Separated from this thread.

    How can I download and replace the fonts directory in the folder Windows for Vista?

    I think I have a corrupted font file, but I don't know which.

    Thank you

    George Criffield

    Oh sorry, you will need to obtain from another computer Windows Vista or your install disc (if you have one, these instructions are here).  I have just the zip and give you a complete file of fonts, but it's against the license (and technically to the United States law) for them to be distributed.

  • Cannot replace the authui.dll in the system32 folder

    Yes I know I'm not supposed to do that, but I want to change the Vista login screen.  I copied and edited the original authui.dll, but when I try to ' move and replace "/" copy and replace "it in the system32 folder, nothing happens - screen flashes as if the file has been moved, but when I check, there is no authui.dll in the system32 folder.  I opened the file in Reshacker and has replaced the original authui.dll file with my changes successfully but the result is the same in both cases: Vista does not accept an edited version of authui.dll and the login screen remains black with only a slider and I'm forced to use sytem restore to restart vista.

    Why authui cannot be changed?  I don't understand!? I know that imageres.dll and basebrd.dll can be changed, why not authui.dll?

    I have vista 32 sp0 Home premium and I took possession of the file.

    It seems that this person was able to do it if its not impossible:

    http://www.AeroXP.org/Board/index.php?showtopic=7545

    Hello

    Check this link and no need to change anything:
    http://www.Vistax64.com/tutorials/79886-logon-screen-change.html

    All the best!

  • Replace the user folder?

    I had a drive hard failure and then spent two days time Machine * (restore failed over and over again) before finally giving the place and moved manually on my supported up to data (ugh).

    I moved on my user folder, but it is not recognized in the system (users and groups), just the new preferences (another name) that I created when you install a new copy of El Capitan (former user folder is to El Capitan).

    I don't want to create a new user with the same name as my old username in the fear of it being deleted (tons of data that took forever to copy).

    Someone at - it experience with this situation?

    Advice would be appreciated - nearly three days of no productivity... I've gotta get back operational.

    Thank you in advance,

    Rick...

    Move this folder to one location other than/Users /, then create a new user. The items in the folder /Users/ are regular folders; the actual list of accounts is stored elsewhere.

    (143664)

  • Replace the home workstation folder path local user domain different drive

    I have a network with Windows 7 Pro and SBS2011 DC.  I added a new SSD as boot drive.  Since it's a small disc, I want to put home directory of the user on a different hard disk on this workstation.  If I change the home folder E:\users\ users what happens when that user connects to a computer that does not drive E:?  Is there a better way to redirect the folder to another local drive?

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

    Hope this information helps.

  • Replace the "Devlop Presets" folder in Lightroom CC (mac)

    Hello!

    Could you tell me if it is possible to change the way to develop cc lightroom presets folder?
    For example, if I want to put all my presets in a folder on my desktop or my image folder. I can match that record with lightroom?

    Thank you very much!

    Tom

    Lightroom does not have this option. The two choices you have are (1) stored in the catalog, and (2) is not saved with the catalog.

    My recommendation is NOT with the catalog. You should be able to create a shortcut to an OS in the folder "develop presets" for ease of use.

  • Setup removes the junction point NTFS redirect the folder system "\Windows\Installer" on another disk.

    On a computer running Windows XP Professional SP3, I redirected the "\Windows\Installer" system folder, with a junction to a record point in a tree of directories to a different drive.  The operation was conducted and verified using "junction v1.06 - creator of junction point analysis viewer and Windows' published in 2010 by Mark Russinovich. I moved all the files and subdirectories contained in the original "\Windows\Installer' in the target directory (the these files had been previously copied to a temporary directory and after the move, I checked that they were visible in the folder '\Windows\Installer' open the symbolic link with the Explorer).
    Then I launched a system patch, and I discovered that the installation of the update of the software deleted program point junction that I created, deleted all the cache contained in the directory with the name of substitute target different files and recreated the "\Windows\Installer" folder in the original disc.
    I tested this behaviour a couple of times, installing various software and updates, so I assume that it does not depend on the software that is installed but the installation program itself, which cannot handle a point of junction of the folder "install".
    No warning is given before deleting the junction point and all of its contents.  With a similar procedure, I made two points of junction for '\Windows\Downloaded facilities' and '\Windows\Microsoft.NET' and they have exploited properly.
    Out of understanding points do not work on startup, so it is impossible to redirect for example. :

    • \Windows
    • \Windows\System32
    • \Windows\Config

    "\Windows\Installer" isn't one of those cases, and it is not used at startup.

    Is it possible to use a junction point to redirect the \Windows\Installer on another disk/partition folder, or Setup will always delete all the files that have been targeted in the naming of replacement?

    Hello

    Your question would be better suited for the TechNet forums.

    I suggest you to ask your question to the TechNet forum for better support.

    http://social.technet.Microsoft.com/forums/en-us/itproxpsp/threads

  • Why not open Outlook Express the text from the first email in any folder rather than see a list full of all messages in the folder

    Without any notice when I opened one of my e-mail folders in Outlook Express list of the messages in the folder no longer appears. Only the text and the content of the email to punch in the folder appear.

    Alos, some of my folder of shave disappered content and everything.

    What should I do to fix

    You uncheck the preview pane? Why did you switch to a different identity?

    For lost messages, the two most common reasons for what you describe any disruption of the compacting process, (never touch anything until it's finished) or bloated folders. More about that below.

    Why OE insists on compacting folders when I close it? :
    http://www.insideoe.com/FAQs/why.htm#compact
     
    Why mail disappears:
    http://www.insideoe.com/problems/bugs.htm#mailgone
     
    About file Corruption:
    http://www.Microsoft.com/Windows/IE/community/columns/filecorruption.mspx

    Recovery methods:

    If you use XP/SP2 or SP3, and are fully patched, then you should have a backup of your dbx files in the Recycle Bin (or possibly the message store), copied as bak files.

    To restore a folder bak on the message store folder, first find the location of the message store.

    Tools | Options | Maintenance | Store folder will reveal the location of your Outlook Express files. Note the location and navigate on it in Explorer Windows or, copy and paste in start | Run.

    In Windows XP, the .dbx files are by default marked as hidden. To view these files in the Solution Explorer, you must enable Show hidden files and folders under start | Control Panel | Folder options | View.

    Close OE and in Windows Explorer, click on the dbx to the file missing or empty file, then drag it to the desktop. It can be deleted later once you have successfully restored the bak file. Minimize the message store.

    Open OE and, if the folder is missing, create a folder with the * exact * same name as the bak file you want to restore but without the .bak. For example: If the file is Saved.bak, the new folder should be named saved. Open the new folder, and then close OE. If the folder is there, but just empty, continue to the next step.

    First of all, check if there is a bak file already in the message. If there is, and you have removed the dbx file, go ahead and rename it in dbx.

    If it is not already in the message, open the trash and do a right-click on the file bak for the folder in question and click on restore. Open the message store up and replace the .bak by .dbx file extension. Close the message store and open OE. Messages must be in the folder.

    If messages are restored successfully, you can go ahead and delete the old dbx file that you moved to the desktop.
     
    If you have not then bak copies of your dbx files in the Recycle Bin:

    DBXpress run in extract disc Mode is the best chance to recover messages:
    http://www.oehelp.com/DBXpress/default.aspx

    And see:
    http://www.oehelp.com/OETips.aspx#4

    A general warning to help avoid this in the future:

    Do not archive mail in default OE folders. They finally are damaged. Create your own folders defined by the user for mail storage and move your mail to them. Empty the deleted items folder regularly. Keep user created folders under 300 MB, and also empty as is possible to default folders.

    Disable analysis in your e-mail anti-virus program. It is a redundant layer of protection that devours the CPUs, slows down sending and receiving and causes a multitude of problems such as time-outs, account setting changes and has even been responsible for the loss of messages. Your up-to-date A / V program will continue to protect you sufficiently. For more information, see:
    http://www.oehelp.com/OETips.aspx#3

    And backup often.

    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx

Maybe you are looking for

  • Mac Pro running very slow after El Capitan install

    My portable Mac Pro (before mid-2013) was working fine until I installed 3-weeks to El Capitan. Now the spinning color wheel open almost all the time when I switch to another operation.

  • Using Smart Keyboard with iPad Pro

    Y at - it as a user manual for the Smart keyboard used on iPad Pro.  I bought the smart keyboard and there are keys that I don't know what they are doing; Control, Option, command. Are there any shortcuts that can be used on the Smart keyboard?  Ther

  • iMac will not fall asleep

    My iMac will not fall asleep, well put me in mode 'sleep' manually or automatically after 10 minutes of sleep. The screen will be disabled for a few seconds up to a minute and then wake up to the top. I have restored the default settings in the energ

  • 6250 OR to analyse the pulses

    Hello I'll use the 6250 OR for my application. I have 4 channels including 500 US output wide pulse at 4 Hz. Issues related to the: 1. I would like to taste each channel for 4 seconds.  With a sampling frequency of 1 Mhz, it will take a sample of 4 M

  • not to receive emails from shopstyle

    Hi, lately my emails from shopstyle does not appear in my Inbox or junk. I called to ask them why they stop sending at shopstyle, and they said that they never collapsed and they send every day. then I send an email from my page on shopstyle for me a