Protect documents from accidental deletion/modification by site administrator

Hi,
I have several documents in a SharePoint site that should never be modified/deleted (except under extraordinary circumstances), so I'd like to make sure that even when logged in as Site Administrator I can't delete/edit these documents accidentally (though
obviously I'd be able to grant myself permission to do so). I've tried just about every combination of permissions I can think of (at site collection, site, list and document level) but to no avail.  Surely I'm missing something obvious?
The closest I've got is putting them in a library requiring check out and having them checked out to the system account, but that's far from ideal.
Thanks
Dylan

that's not easy thing you trying to achieve. One thing manage your recycle because if a document deleted from a user, its still recover able in 60 days or what ever setting you select.
here is if you want create a event reciever: http://www.the14folder.com/2011/07/20/prevent-accidental-deletion-sharepoint/
or in 2013 you can use Ediscovery feture.
http://msdn.microsoft.com/en-us/library/jj163267.aspx
Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

Similar Messages

  • Protect object from accidental deletion

    When I first tested this, I noticed that protect object from accidental deletion adds and explicit deny for everyone to delete and delete subtree for that object only. However, after testing a bit further, I noticed that if you create a protected OU inside
    another protected OU, the parent OU will also gain the ACE deny Delete All Child Objects for the everyone group.
    Now, why on earth would that be a good thing?? I know most of you will answer "because of accidental deletion" but if that's the case then the child OU should also have the same rights (and all the problems that are inherited with the having of
    these rights).
    A move of an object is a create on the target OU and a delete on the parent OU. This basically means that if you have:
    An OU named "Groups" that is protected from deletion, with a child OU called "Specific Groups" also protected from deletion, with a Group called "My Test Group" under "Groups" OU and another group called "My Specific
    Test Group" under "Specific Groups" OU then "My Test Group" cannot be moved, deleted, etc whilst "My Specific Test Group" can, despite the fact that both OUs are protected from deletion. Even if you then delegate rights to
    Create, Move and Delete groups because the deny takes precedence the delegation would be useless...
    Unless you are an organization where you never have an OU inside an OU containing other objects, how would you possibly benefit from this, and is there a way (without doing it manually) protect ONLY OU's from deletion without protecting child objects?
    Johh

    Hi Marcin,
    It does facilitate OU protection, but by default in 2008 R2 when you create an OU it is set to be protected. Ensuring people untick the box and then manually protect that OU (by assigning rights directly to it rather than ticking the box) every time an OU
    is created for something as futile as preventing an OU from being deleted is almost a complete waste of time and the effort vs utility almost dictates that we'd be better off not having the prevent accidental deletions there at all. After all, we've survived
    Windows 2000 and 2003 without this functionality...
    As for the scenario, I'll give you a very simple example:
    You have Workstations under Workstations>Department Name>Desktops. You obviously have several GPOs linked at either one of those 3 places. All of a sudden, as part of testing a new deployment, you are required to add another GPO to the existing ones.
    As part of the testing phase, you create a Dev OU under Desktops and link the new GPO to the new Dev OU. At the same time that you do this, do you really go and create a new OU under Desktops to hold all the already existing objects under desktops and therefore
    prevent having any leaf-level objects and an child OU under the same parent OU? You could claim that a better way of doing it would be to create a Test OU at the top level of Workstations, but then you'd have to work out the effective permissions and GPOs
    at the other OU level and replicate it on the newly created one...

  • Protecting Podcast Subscriptions from Accidental Deletion

    When I:
    1) select (intentionally or unintentionally) a podcast that does not have any audio files in it, then
    2) click "delete",
    iTunes will delete the Podcast Subscription without asking for confirmation. This is incredibly frustrating to me. Is there a way (iTunes setting, plugin, or otherwise) to "protect" my podcasts from accidental deletion? All I really want is for iTunes to ask me "are you certain you want to unsubscribe from this Podcast?"
    Thank you,
    Dimitri

    Hi Marcin,
    It does facilitate OU protection, but by default in 2008 R2 when you create an OU it is set to be protected. Ensuring people untick the box and then manually protect that OU (by assigning rights directly to it rather than ticking the box) every time an OU
    is created for something as futile as preventing an OU from being deleted is almost a complete waste of time and the effort vs utility almost dictates that we'd be better off not having the prevent accidental deletions there at all. After all, we've survived
    Windows 2000 and 2003 without this functionality...
    As for the scenario, I'll give you a very simple example:
    You have Workstations under Workstations>Department Name>Desktops. You obviously have several GPOs linked at either one of those 3 places. All of a sudden, as part of testing a new deployment, you are required to add another GPO to the existing ones.
    As part of the testing phase, you create a Dev OU under Desktops and link the new GPO to the new Dev OU. At the same time that you do this, do you really go and create a new OU under Desktops to hold all the already existing objects under desktops and therefore
    prevent having any leaf-level objects and an child OU under the same parent OU? You could claim that a better way of doing it would be to create a Test OU at the top level of Workstations, but then you'd have to work out the effective permissions and GPOs
    at the other OU level and replicate it on the newly created one...

  • Protect from Accidental Deletion -Users

    How to apply Protect from accidental deletion for all the users and computers in the domain. Any easiest way to do this???

    Hello,
    Using Powershell it is easy.
    For Users:
    Import-Module activedirectory
    Get-ADUser -Filter * | Set-ADObject -ProtectedFromAccidentalDeletion:$true
    For Computers:
    Import-Module activedirectory
    Get-ADcomputer -Filter * | Set-ADObject -ProtectedFromAccidentalDeletion:$true
    Do not forget to run Powershell in elevated if you faced errors.
    Regards.
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

  • Powershell to Enable "Protect from Accidental Deletion" on ALL OU's

    Howdy folks...
    The client I am currently working with has partially set the "Protect from Accidental Deletion" attribute on their AD...I want to extend this feature to ALL organisation units (OUs) in their forest (but only to the OUs and nothing else). I know how to use
    PS to do for ALL objects however, I'm having problems with the "Filter". I've attempted the following command (and various iterations) but they seem to fail on the filter;
    Get-ADobject -Filter "organizationalUnit" -SearchBase “OU=OU1,DC=DomainComponet2,DC=DomainComponent1” | Set-adobject -ProtectedFromAccidentalDeletion $true
    Does anyone know what the { -Filter "organizationalUnit" } part should be...?
    Rgds
    FMcFF

    I'm new to powershell so don't beat me up to much for my question, but how can i take that command and script it so that when I create the OU i set it to Protect from Accidental Deletion?
    Thanks,
    Ryan B.

  • How do I protect apps from being deleted?

    My 2 year old has been accidentally deleting apps and I have to reload them?  Is there a way to protect them?

    You'll probably also want to set "iTunes", "Installing Apps" and "In-App Purchases" to off as well so that s/he can't inadvertently purchase apps or new components for existing apps.
    Regards.

  • How can I access data from accidentally deleted user?

    I was given a MacBook Pro by a family member. I set myself as the Administrator, but could not get rid of the previous owner's name on the Home folder.
    In my attempts I accidentally deleted something that made the entire computer unaccessable. I can boot up, however, all the work and applications I installed are unaccessable. I can't even open Preferences.
    I used TechTool Pro to start up and explore the drive, and found that the previous owner's name was on a folder with a red-circled minus sign. The data (considerable) was inside, but I can't access it.
    Is there any way I can get access to that data? I slaved the laptop to my iMac and transferred the folder (with 32 gb of data).
    When I tried to open it I got the message: "The folder "sandy....." can't be opend because you don't have permission to see its contents." I used Get Info on the folder and changed Sharing and Permissions to Read and Write, but still no access.
    What can I do, if anything to gain access to that folder?

    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mchlp2968.html

  • Can I retrieve a document I accidentally deleted

    I had flyers and other docs that I delted accidentally a couple weeks ago. Can I retrieve them?

    Hello captronmusic,
    Thank you for contacting Apple Support Communities.
    It depends on how you deleted the documents.
    See the following:
    OS X Mountain Lion: Remove files and folders from your computer
    http://support.apple.com/kb/PH10628
    Specifically:
    If you change your mind
    Click the Trash icon to open it and then drag the item out of the Trash, or select the item and choose File > Put Back.
    This applies if you havn't emptied the Trash.
    Regards,
    Jeff D.

  • How to protect document level javascript against modification?

    Hi,
    Does Adobe Acrobat provide a possibility to password protect deactivation of the javascript code present in the pdf documentation?
    It seems that 3rd party tools, like PDFill or CutePDF can not password protect the document properly and it is trivial to deactivate the code by putting a new code inside, even if the document is master password protected agains modifications.
    Thanks for any information.

    There's nothing to protect against the determined. If you have critical security functionality, embedding it at client end is not the way forward.

  • Sharing Phone - Protecting Contacts From Accidental Dialing

    I have a smartphone that also syncs up real-time to my work email and contacts via touchdown.
    I also let my kids/spouse use the phone from time to time.  how do I ensure that they can use the phone and dial someone, without accidentally calling one of my business contacts?
    Right now, my contacts are easily available on the phone application and my child/spouse could easily dial one of them up by accident which could lead to embarrasing situations.
    thanks

    It will be happened, only if you tap a name with single phone number, so you need no select which number of him/her you want to call. Some may prefer there should be a prompt before calling like it's seems you want to say, but others will consider a needless prompt there will slow down calling procedure.
    E50->6120C->E51->E52->Lumia 620 -> Lumia 830

  • Extract Markup of AutoVue when the document accidentally deleted

    Hi,
    Is it possible to extract AutoVue Markup when the document unintentionally deleted?
    I've found the Markup file in D:\Oracle\Middleware\user_projects\domains\<domain_name>\ucm\urm\vault\application\*
    I tried to save the current markup of document that accidentally deleted.
    Any help would be highly appreciated.
    Thank you.

    Hi,
    If you integrate Oracle UCM with autovue, The autovue Markup document linked to the main document using the column DOCMETA.XMARKUP_BASEDID on UCM database. So maybe you can checkin the same document then change the markup document DOCMETA.XMARKUP_BASEDID with the DID of the new document.
    Best Regards
    Gumas

  • Protect Apps From Deletion

    Anyone know is there a way to protect apps from being deleted be it app or phone setting? If not, is there something in the future that Apple can do to address this?
    Problem is I let my daughter play on the iPhone. She is three but accidently deletes the apps every now and then. I usually supervise when she is on it but my wife gives it to her to get her off her back while she's watching her TV shows. I know the iTunes keeps a list of my apps but it gets annoying going back and finding which exact one got deleted.

    "Anyone know is there a way to protect apps from being deleted be it app or phone setting?"
    No.
    " If not, is there something in the future that Apple can do to address this? "
    Probably. There is absolutely no way to know what Apple may or may not do in the future. You can leave feedback for them at:
    http://www.apple.com/feedback/iphone.html
    Perhaps you should not let a three year old play with an iphone. This would solve the issue completely. Since the iphone is not designed for toddlers, it makes little since to toddler proof them, as this would inconvenience those for whom the iphone is actually designed.

  • I accidentally deleted photo files, can I retrieve them?

    I accidentally deleted photo files, is there any way to undo or retireve them?

    I spoke too soon! The Picassa 3 photos do not import well into my elements 
    program!  I just don't understand why, when I accidentally deleted the 
    files from elements, they don't show up in the trash bin. I looked/searched for
    the pictures...they seem gone! Is it time to call in a tech? I really
    appreciate  your help with this, you can imagine how distraught it is to lose
    about 6,000  pictures!!!
    Dr. Joe  Luciani
    Author Discussion: www.amazon.com/author/selfcoaching
    (http://www.amazon.com/author/selfcoaching)
    Daily  Self-Coaching blog: https://www.selfcoaching.net
    (https://www.selfcoaching.net/)
    Facebook:  https://www.facebook.com/selfcoaching
    Twitter:https://twitter.com/SelfCoaching101
    In a message dated 6/20/2014 10:25:20 P.M. Eastern Daylight Time, 
    [email protected] writes:
    I  accidentally deleted photo files, can I retrieve them?
    created by amosher (https://forums.adobe.com/people/amosher)  in 
    Photoshop Elements - View the full  discussion
    (https://forums.adobe.com/message/6480632#6480632)

  • Protecting PDFs from Unlicensed Sharing

    Hi all,
    I'm aware Acrobat has many features around DRM and protecting documents from unlicensed usage. However, I want to know how scalable this is...for instance, if I'm selling training materials in PDF format, and someone purchases the materials to use for "20 users", are Acrobat's features alone sufficient to prevent this person from giving the materials to 30 users?
    Any thoughts or solutions would be greatly appreciated!
    Best,
    Adam

    Acrobat doesn't have that type of ability at all. The best you can do is to explore the security settings available under File>Properties>Security. Even then keep in mind that it's way easy to get around Adobe security.
    What you need is a server side DRM solution.

  • I've accidentally deleted the System Administrator entry in Directory Utility. How do I recreate it?

    How do I recreate the "System Administrator" entry in Directory Utility. It was accidentally deleted.

    If you see this article: http://www.stupidlittleblog.com/2011/technology/apple/mac-os-x-lion/mac-os-x-lio n-root-user-sigin-error/#.To_DWOsb6jV
    I was having the same root user password login problem.
    So I followed the instructions in it, but instead of deleting "AuthenticationAuthority" setting for System Administrator, I accidentally deleted the whole "System Administrator".
    Therefore, I'll need to recreate the "System Administrator" entry in the Directory Utility. Maybe you can send me a screen capture of the System Administrator settings so I can try to recreate it. Or else if you know how I can recreate is (maybe from Terminal command line), it will be appreciated.
    Thanks.

Maybe you are looking for

  • Need query to compare quantites,add fields of 1 table until it = the other

    I am trying to query the Curr_sched and Ship_dd250 tables to get the date a shipment was completed fulfilling the quantity shipped for the original order. The Curr_Sched table gives the original ship date (SCHED_DT)along with the requested quantity (

  • Need help with photo scanning

    My iMac scans just fine but it only shows a part of the 8 x 10 pix I'm trying to scan. On the preview window on the printer, it shows it's scannng the whole thing, though. How do I adjust?

  • Registering db's with ODBC through Java code?

    Hey, I have a project which uses an msacces database, I first have to register the database with odbc in windows, but I wonder if you can't do this with Java code instead of letting to user do some things he'd probably screw up while deploying the ap

  • 1 iPod, 2 Computers, 1 big mess

    I just purchased new music on iTunes on 1 PC and downloaded it to my iPod. But now I would like to synchronize my iPod with the (other) PC. When I attach the iPod, I see and play all music on the iPod, but I can't drag music or playlists from the iPo

  • ADF_FACES-60096:Server Exception during PPR

    We see this error in production environment. Any inputs on this error would be deeply appreciated. [2012-05-03T11:29:30.116-07:00] [soa_server1] [ERROR] [] [oracle.adfinternal.controller.state.PageFlowStackEntry] [tid: [ACTIVE].ExecuteThread: '6' for