Protect object from accidental deletion
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Protect object from accidental deletion相关的知识,希望对你有一定的参考价值。
We may need to enable the feature for OU and Account
Protect object from accidental deletion
# Using powershell
Set-ADObject -Identity "OU=User Accounts,DC=vccware,DC=com" -ProtectedFromAccidentalDeletion $true
Set-ADObject -Identity "CN=Terry Shen,OU=User Accounts,DC=vccware,DC=com" -ProtectedFromAccidentalDeletion $true
In Active Directory User and Computer, we may need to click View->Advanced Features, in order to check this setting
本文出自 “AlphaBook” 博客,请务必保留此出处http://alphabook.blog.51cto.com/232573/1883486
以上是关于Protect object from accidental deletion的主要内容,如果未能解决你的问题,请参考以下文章
Rails 6中的protect_from_forgery?
`protect_from_forgery with: :exception` 是不是会崩溃?
使用protect_from_forgery时,Rails 403 会话响应过期
在 rspec 中为 API 规范存根protect_from_forgery