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...

Similar Messages

  • 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

  • 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...

  • 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.

  • 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?

  • 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

  • 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

  • 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 my iTunes songs from getting accidentally deleted

    I am on OS X Lion 10.7.4 and iTunes 10.
    I have set up a user for each member in the family.
    I centralised the iTunes library into macintosh HD>users>shared>family iTunes library>iTunes library.itl
    Music files are centralised in macintosh HD>users>shared>family iTunes library>iTunes media>music>
    For each user I hit 'option iTunes' to choose macintosh HD>users>shared>family iTunes library>iTunes library.itl
    Works well, each user sees the same library, it appears to be completely transparent.
    I am now concerned my 5 year old son might accidentally delete my precious songs.
    I tried assigning read only access for him to macintosh HD>users >shared, I find he can still delete music files.
    Any advice on how I can let my 5YO son have full access to this iTunes library without allowing him permission to delete?
    I have a similar requirement for iPhoto too.
    Thanks
    Ramond0

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • Please help I just accidentally deleted a very very important note from my "Notes" on my iPhone 4s.  How can I get it back? Is there a "Trash" file somewhere for deleted notes?  Thank you, Susan

    Please help I just accidentally deleted a very very important note from my "Notes" on my iPhone 4s.  How can I get it back?
    Is there a "Trash" file somewhere for deleted notes?
    Thank you,
    Susan

    Had you never backed up the phone before? When you saw the iTunes logo and cable, the device was in recovery mode. The data was already lost. The only way to recover from that is to restore the device, which will delete all of your data. You will only be able to restore to your last backup, whenever that was. Sorry this happened, but this highlights the importance of doing regular backups. The backup is the only protection you have against a problem like this.

  • Accidentally deleted my BBID associated with Anti-theft protection that was still on.

    On July 15 I bought $600 BB Passport from a vendor at a popular IT market in Bangkok, Thailand. Currently, Blackberry is completely gone from Thailand, no service provider nor authorized dealer for BB Passport. I accidentally deleted BBID used with Anti-theft protection feature and it was on when this happened. I can't remember exactly how that happened and why it was so easy to delete the BBID without knowing I actually did. I recreated new BBID by using the same email and question for recovery but it did not work as my device won't accept it and kept saying the Anti-theft protection is on. Unfortunately I have tried so many times to put the password associated with the accidentally deleted BBID but it still did not work. Now the BB passport is like an expensive brick to me. I have taken the photo of my old BBID that was deleted. I have my BBM Pin that was set up by using this old BBID. I know the screen name of it, except one thing the password that no matter how I tried it was not accepted to my device. Things got worst when the vendor I bought the device from reformatted my device and i still CANNOT use my new BBID to set up the device. I have no carrier as BB passport is not official to Thailand. Please help i am so desperate. I have been waiting for so long to have this device. I took the risk of knowing that no provider in Thailand. Thank you so much

    I might be able to help you some more. If your able to log onto protect.blackberry.comAnd you can see your deviceGo to manage devicesNear the bottom select removeThen log out of Protect web page. Then go back to the device,Enter the password to many times until it wipes clean.If it didn't power off and back on during the wipe then do that first. Now you should be able to log onto the device using your protect.blackberry.com ID and password You should be all set than Unfortunately I don't have an support email for them

  • HT4191 how do i lock or hide the notes apps from being accidentally deleted its content?

    How do i lock or hide 'notes' apps from my ipad so that the won't be accidentally deleted by my daughter?

    The built in Notes app does not have such a feature. However, I'm sure among the hundreds of note apps available in the App Store, some of them offer passcode protection. You're just going to have to search.

  • I accidentally deleted my photos; how do I download my files and photos from Adobe Online Storage?

    I accidentally deleted my photos; how do I download my files and photos from Adobe Online Storage?

    So i think backup online the the most effective way to protect data loss!
    If you found you have lost your important files, you can just download it from the online server.
    And if you delete your files from hard disk and cannot download it from online storage, there is still another way-data recovery software to recover your lost files.

Maybe you are looking for

  • Could not create the Java virtual machine error during installation

    Hi, We are doing an ERP 2005 Installation on AIX 5.2 ML08 with DB2 as the database.During "Import ABAP" Phase of the installation we are getting the below error. ========================================================================ERROR 2007-03-12

  • Bots not visible in Xcode

    Hi forum users, today i wanted to test Xcode bots and the integration into the UI. Unfortunately the bots are not visible in Xcode if i set the "view-only for" to anything else as  "anyone". I only want that the stats are visible to people who are re

  • Safari 5 stops loading, internet connetion is bad for a few minutes

    hi, i'm new to the forum, but I have spent a lot of time here and have found some great answers but this time i can't find a solution. i have installed safari 5.0 on my 15" MBP (running 10.6.3) and now working is impossible: pages don't load complete

  • Horizontal Scrollbar - GridControl

    Is it possible to add a horizontal scrollbar to an InfoSwing GridControl in a JDeveloper2 applet, without using the InfoBus Data Form? null

  • Type conflict in join PTREQ_ITEMS-ITEM_INS = PTREQ_ATTABSDATA-ITEM_ID

    Is it possible PTREQ_ITEMS and PTREQ_ATTABSDATA in a view?  PTREQ_ITEMS-ITEM_INS is Raw 16 and PTREQ_ATTABSDATA-ITEM_ID is Char 32.  I'm getting a type conflict error.  I tried using the "Mod" check box but all the data elements I can choose have the