WRT610N Storage - Can't reset Archive Attribute

I've discovered that the USB storage will not let me reset the archive bit. I can delete files but not clear this bit.
I've looked at the user settings on the router storage and all have read/write permission.
Anybody else see this? Suggestions/
tia... Bob

Check the file permission of that particular folder...Go to router setup page,create a new user and check if you able to delete.

Similar Messages

  • Robocopy wont reset archive attribute with /M switch..incremental backup to zip folder...partially RESOLVED!!!

    hello, OS server 2012, 2008 r2, w7 ult.
    I want to make backup only files which have archive attribute set. /M switch is what I need but robocopy wont reset archive bit from subfolders and only reset bit on files in root of source folder. How to force robocopy to reset archive bit from all copied
    files???
    This is syntax:
    @echo off
    set year=%date:~10,4%
    set month=%date:~4,2%
    set day=%date:~7,2%
    SET Now=%Time: =0%
    SET Hours=%Now:~0,2%
    SET Minutes=%Now:~3,2%
    Robocopy c:\source c:\dest /m /s /r:1 /w:1 /log:"c:\dest\Incremental_%month%-%day%-%year% %hours%h-%minutes%m.log" /NP
    "C:\Program Files\7-Zip\7z.exe" a -tzip -mx1 C:\c\Incremental_%month%-%day%-%year%-%hours%h-%minutes%m.zip C:\dest
    echo Y | DEL C:\Temp\*.*
    I can use attrib command but I have in working folder 900.000 files so this is not option.
    edit....robocopy work as expected in 2012 standard. /M switch reset archive attribute so I can use robocopy for incremental backups.
    Script: c:\a is source and c:\b is destination. c:\b\temp is temporary folder from where 7zip package backed up files to archive. After 7zip finish jod script delete all files folders from temp folder. I want to use zip archive because this will be much
    easier for file system. With time I will have some zip files instead 10000000 files or folders. Zip files will have in name date and time for easier tracking. 
    @echo off
    set year=%date:~10,4%
    set month=%date:~4,2%
    set day=%date:~7,2%
    SET Now=%Time: =0%
    SET Hours=%Now:~0,2%
    SET Minutes=%Now:~3,2%
    Robocopy c:\a c:\b\temp /s /m /r:1 /w:1 /log:"c:\b\temp\Incremental_%month%-%day%-%year% %hours%h-%minutes%m.log" /NP
    "C:\Program Files\7-Zip\7z.exe" a -tzip -mx1 C:\b\Incremental_%month%-%day%-%year%-%hours%h-%minutes%m.zip C:\b\Temp
    set folder="C:\b\temp\"
    cd /d %folder%
    for /F "delims=" %%i in ('dir /b') do (rmdir "%%i" /s/q || del "%%i" /s/q)

    Hi,
    Thank you for your helpful sharing! This will help others who are fighting with similar issues.
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Can I reset my icloud storage?

    Can I reset my icloud storage and start over using the same Apple id???

    Essentially, you can delete your back up, contacts and calendars. All togehter should not take longer then five min. Once you do that if that is only about size you are pretty much golden to start over. You don't even have to touch contacts and calendars if that is only about storage limit.

  • If i factory reset my ipod touch(5th gen), can i reset it as the option 'set up as new ipod', and then i can just go into the app store/itunes store and restore my music and apps and not icloud with photos and ect?

    if i factory reset my ipod touch(5th gen), can i reset it to the option 'set up as a new ipod', and then i can just go into the app store/itunes store and log into my apple ID so i can just restore my music and apps and not icloud with photos, contacts, ect. and then later i can add contacts that i need/want instead of them restoring them from icloud?
    The reason i asked this question is because i have been wondering this a lot ever since i got an exchange on this ipod (and ive only had it for a few weeks now) because my last ipod had a lot of problems. so after i restored my ipod with my computer/itunes, i downloaded apps that i wanted, and then when i went to the storage to see how much storage was left, it said 0 bytes. i was freaking out because i didnt know how that could be, i mean, cause like, that is impossible when i just 'purchased' it, that the space was full but i looked and all my pictures were on this ipod and i already put them on my computer so i dont need them anymore thats why i wanna reset it now so there is nothing on it so i can have more space for stuff to do and download on it.
    it is updated to iOS 8 but that happened when i purchased it, so i didnt have a choice to update it even though i didnt want to update to iOS 8...
    and i hope you understand my problem..
    i would REALLY REALLY appreciate it if someone could tell me a solution to my problem!!! thank you so much!
    -sierra

    Hey Sierra, You can do just what you have stated. My question, what is your "other"? If it is over 1.5 GB you most likely have corrupt files. Doing a Restore to New, Factory restore should correct it. Just make sure you make a full backup of all information on your iPod to your computer before you restore, so you don't lose your stuff, contacts, videos, pictures, non-iTunes music, etc, use the cable and connect with your computer. Then, via cable, connect to your computer, run the Restore to new, don't use your backup. Treat this iPod as if it was your first one ever. When restore is done, set up and add what info you wish to install on this iPod. The music apps etc you purchased should be on your computer, if not you should be able to retrieve purchased apps and music from iTunes. Any music, videos, apps not purchased from iTunes will be lost to you if you do not save them to your computer or the cloud first. When your done, make a current Backup and you should good to go. Hope this helps. Good luck. Cheers.

  • Is there any way to give an archive attribute a variable?

    Is there any way to get the archive attribute to take a variable?
    What I want to do is to be able to change the value in an XML file and have that read at run time.
    For example, what I have now looks like this:
    <jsp:plugin code="Display.class" archive="http://myserver:8080/myapp/Display.jar" height="650" jreversion="1.5" type="applet" width="800">What I would like to do is to be able to give the archive a variable, just like you can with value arguments. I tried doing this:
    jsp:plugin code="Display.class" archive="${Display.jarUrlValue}" height="650" jreversion="1.5" type="applet" width="800">But that didn't work. It threw this:
    com.sun.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: /Display.jsp(14,161) The archive attribute of the jsp:plugin standard action does not accept any expressions
    com.sun.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java:534)
    com.sun.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:301)
    So, is there any way around it, or should I take the error message verbatim?
    Thanks.

    Is there any way to get the archive attribute totake a variable?
    According to the [url
    http://java.sun.com/products/jsp/syntax/1.2/syntaxref1
    215.html#8837] reference, no you can't providea runtime expression to this attribute.
    Yeah, I know it said that but I was hoping there was some sort of hack around it. Seems to be a bit of an oversight to me.
    Oh well!

  • My iPad is frozen and I can't reset it when I try to hold the power button bown. How can I get it unfrozen?

    My iPad is frozen with the message that I need more storage from I cloud and I can't reset it. What can I do to get it reset so I can use it?

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • How can I reset my home setting in maps?

    How can I reset my home location in maps on my iPad

    If your iPad has cellular it can use location services.   Otherwise, the iPad can only locate the approximate address by your IP address (which in my case is in the next state).
    You can edit the bookmarks in Maps to select a new home address and delete the old.
    I believe you can wipe all map contents by turning the switch off:
    Settings
    iCloud
    Storage and backup
    Manage storage
    Show all apps
    Turn off switch, delete, then turn on again.  This will wipe all data from the app.

  • USB port on wrt610n i can see the drive but cannot see the content

    USB port on wrt610n i can see the drive but cannot see the content
    I have followed the instructions I see the drive but when I try to acess the drive I get a empty new folder
    help I am lostwhat should i do

    winmaco wrote:
    Yes i have it is working on my PC
    One thing in setting up the usb I had to use a different password
    my router has a password and the only way I could move forward was to use the default admin admin user name and password
    I could not use my router user name and password.
    The username and password for the share on your attached drive can be anything you want them to be. I assume you set up a share on the attached drive? That's where you need to add a password for the share, although for ease of use I never did assign a password to the shares.
    You do know that the firmware for the Storage Link is buggy, right? File size limitations as well as file corruption issues? Connectivity issues also rise up, with the only workaround that I have found is a script that you have to run every time you boot up your computer. As far as I can see the Storage Link function is a poorly implemented idea. No firmware in sight to fix the issues, and no idea of when.

  • My old email account was disabled and I can't remember my password - how can I reset my password or move $ to a new itunes/email account?  It seems I must have mis-typed my information because I can't answer the security questions correctly...

    My old email account is disabled and I can't remember my itunes password - how can I reset my password or move $ to a new itunes/email account?  It seems I must have mis-typed my account information because I can't answer the security questions correctly...

    ➡ https://iforgot.apple.com/

  • Every time I go to loge in icloud it sends me a message tha t free creating emails has reach the maximum how can I reset this?????

    Every time I go to log in I cloud it tells me that my phone has reaches the maximum free account uses!!!!!!!!!!!!how can I reset this?????

    Have you had a look at this?
    iCloud: Mailbox size and message sending limits

  • HT201303 when i try to purchase something it asks me to enter my security questions but i dont remeber them how can i reset them?

    when i try to purchase something it asks me to enter my security questions but i dont remeber them how can i reset them?

    Try here:
    iTunes Store: My credit card's security code or zip code does not match my bank's records

  • I forgot all of the answers to my security questions and when I set up my apple id I did not add a rescue email, I recently got a new iphone and I cannot purchase anything on it because it asks me to answer my security questions which i can't reset, help!

    I forgot all of the answers to my security questions and when I set up my apple id I did not add a rescue email, I recently got a new iphone and I cannot purchase anything on it because it asks me to answer my security questions which i can't reset because I do not have a rescue email. what do I do?

    this does not help. I have forgotten ALL of the answers to my security questions. I can NOT reset the answers to my security questions without answering two of the three security questions. The other way to reset the answers to these questions is for apple to send me an email on my rescue email addres which I DO NOT HAVE.

  • I am having a Startup problem. Someone comes on the screen with Open Firmware to Startup. How can I reset the PRAM myself to solve this problem?

    I am having a Startup problem. Someone comes on the screen with Open Firmware to Startup. How can I reset the PRAM myself to solve this problem?

    Read these.
    http://support.apple.com/kb/HT1431
    http://reviews.cnet.com/8301-13727_7-10330118-263.html

  • Had to uninstall Firefox, now I can't reinstall. Get error message "Can not find archive file." Please help!

    I believe I had some kind of virus attack. I got everything cleaned up. (I HOPE) In the process of cleaning the virus, I unintalled Firefox because it wouldn't open. Kept getting the error message that Firefox was already open and I had to close out of the sessions or restart the computer. After restarting the computer several times and not being able to find any open sessions in task manager, I uninstalled. When trying to reinstall, I get the error message "can not find archive file." I've tried downloading Firefox from cnet as well as the Mozilla site to no avail. Please help. I'm getting tired of using Chrome already!

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.

  • My iphone 4s froze last night and won't do anything.  I have iOS7, my power button is not working, so I can't reset my phone.  I've tried to restore through iTunes, but it's telling me to turn off find my phone. I can't do that if my phone does nothing

    I've tried all that I know how to do.  My power button quit working awhile ago so I use the Assistive Touch to lock my screen.  Once my phone froze, the screen went black.  The only thing I can do now on my phone is hold down the home key and Siri will beep but she says "not taking requests at this time, try again later."  I can't reset my phone without the power key or the Assistive Touch button.  I've tried plugging into iTunes to restore the phone but I get an error message to first go to Settings in my phone and turn off "find my iPhone."  I can't do that either as nothing will come up on my screen.

    Make sure iTunes is up to date and try again.

Maybe you are looking for

  • How to rectify the  payable account not definderror in down payment request

    how to rectify the  payable account not definderror in down payment request

  • HT201317 Photo stream not automatically sending to my PC.

    Photo stream is not automatically uploading to our PC. Did check to make sure photo stream is checked on. Have been able to use this within the past few weeks and now it won't work.

  • Dynamic populating Drop down using BI Query

    Hi, I have a form which has four drop down lists in it.  I need to populate one drop down using a BI Query dynamically. How to do this ? Thanks in advance. Regards, Bir.

  • LIghtroom 5 plug-in

    Hello  . . . Just wondering if there is, or will be, a plug-in for Lightroom 5 for the Pixma 100 that will be available in the very near future. Thanks. dsp

  • A small question

    // A.java file import java.util.*; import java.io.*; class A      interface bType      public Vector fun1();      public void method1()           Vector v;           try{                Class cls = Class.forName("B");                bType b = (bType)