Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Note If you have a service that needs to start late in the boot cycle but you do not have a specific service dependency, as explained above, then choose one of the services which startup last as the data value for the value "Depends on Service". Services commonly selected are Spooler and Messenger.

2008 R2 AD Recycling Bin

You can enable an Active Directory Recycling bin so that you can restore objects Accidentally Deleted. Following a summarized configuration in http://technet.microsoft.com/en-us/library/dd379481(WS.10).aspx#BKMK_2 :

  1. Click Start, click Administrative Tools, right-click Active Directory Module for Windows PowerShell, and then click Run as administrator
  2. Insert the following Command:
    Code Block
    Enable-ADOptionalFeature -Identity 'CN=Recycle Bin Feature,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=contoso,DC=com' -Scope ForestOrConfigurationSet -Target 'contoso.com'
    Now you can restore objects quickly and easily.
  3. Click Start, click Administrative Tools, right-click Active Directory Module for Windows PowerShell, and then click Run as administrator
  4. Insert the following Command: 
    Code Block
    Get-ADObject -Filter {String} -IncludeDeletedObjects | Restore-ADObject

How to restart services that require a restart otherwise

...