Setting up AD at DR site

hi,
We are planning to set up an AD at DR site. The production AD is using windows server 2003 R2 32bit SP2 and is in virtualize environment. 
The DR site also will be in virtualize environment. I need help for steps to setting up the AD at DR site.
My idea is to setup an AD at the DR site then replicate the production AD to the DR site. 
I'm new to this Active Directory any suggestions will be a great helpful.
Thanks

Hi,
Based on my research, you can create a new site, then promote a server as an additional Domain Controller in the new site, configure appropriate DNS settings, and wait for AD replication
to take place.
Although, it is not recommended to place only one virtual Domain Controller in a site, we should maintain
physical Domain Controller in each site to mitigate the risk of a virtualization platform malfunction.
Here are some related links below I suggest you refer to:
Setting up Disaster Recovery AD
http://social.technet.microsoft.com/Forums/windowsserver/en-US/922396cd-531a-44f5-8d2c-f9d231c1bd83/setting-up-disaster-recovery-ad?forum=winserverDS
Disaster Recovery Site and Active Directory (Part 1 of 3)
http://blogs.technet.com/b/isrpfeplat/archive/2011/12/01/disaster-recovery-site-and-active-directory-part-1.aspx
Running Domain Controllers in Hyper-V
http://technet.microsoft.com/en-us/library/virtual_active_directory_domain_controller_virtualization_hyperv(v=WS.10).aspx
Things to consider when you host Active Directory domain controllers in virtual hosting environments
http://support.microsoft.com/kb/888794
I hope this helps.
Best Regards,
Amy Wang

Similar Messages

  • Can I Set Up a 2nd iWeb Site?

    Hi,
    I was wondering if you are able to set up a 2nd iWeb Site. My Daughter has a site but I'd like to set one up too for myself. Any help would be great!
    Thanks in Advance,
    XMTitan

    Hi,
    if you and your daughter have different accounts on the computer there is no problem in having two sites. Your site will show up on iWeb in your user account and her site will show up on iWeb in her user account. If you want to make a site which is independent from your daughter's site and don't have different user accounts on your computer you just have to have two different Domain files (where iWeb stores its files User/Library/Application Support/iWeb/Domain.sites2 ).
    If you don't want to have a completely independent site and don't have different user accounts on your computer open iWeb go to File=>New Site
    Site=>Index where people choose which site they want to visit your daughter's or yours
    Site1=>Your daughter's
    Site2=>Yours
    you then can publish to the same .Mac account or host.
    The only problem that could happen is with publishing two independent sites to the same .Mac account. One site will overwrite (thus delete) the other. That problem is not happening with using two different .Mac accounts or by publishing to two different hosts.
    Regards,
    Cédric
    Oops... Roddy answered faster... Well other information...
    Message was edited by: Akdream
    Message was edited by: Akdream

  • How to set security group as primary site collection admin and secondary site collection admin using powershell in sharepoint online site - office 365?

    How to set security group as primary site collection admin and secondary site collection admin using powershell in sharepoint online site - office 365?

    Hi,
    According to your description, my understanding is that you want to set security group as admin of primary and secondary site collection using PowerShell command in office 365.
    I suggest you can use the command below to set the group to site owner, then it will have the site collection admin permission.
    Set-SPOSite -Identity https://contoso.sharepoint.com/sites/site1 -Owner [email protected] -NoWait
    Here are some detailed articles for your reference:
    https://technet.microsoft.com/en-us/library/fp161394(v=office.15)
    http://blogs.realdolmen.com/experts/2013/08/16/managing-sharepoint-online-with-powershell/
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Setting SharingCapability property for a Site Collection using CSOM in C#

    Hello,
    I am trying to deploy multiple site collections in a SharePoint 2013 Online tenant, using CSOM in C#.
    I am currently using the SiteCreationProperties to do this, but I miss one crucial parameter : SharingCapability.
    Do you guys know a way of activating external sharing for a site collection in CSOM ?

    I believe you can set the SharingCapability of the Site after you create it. You can use the Microsoft.Online.SharePoint.TenantAdministration.Tenant.GetSitePropertiesByUrl(siteUrl, true)
    This returns SiteProperties object with a SharingCapability property you can set with the appropriate enumeration. Then call the Update method.
    http://msdn.microsoft.com/en-us/library/microsoft.online.sharepoint.tenantadministration.tenant.getsitepropertiesbyurl(v=office.15).aspx
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

  • How set hard quota to my site?

    Hi all, 
    I am setting the disk quota as following.
    if (siteTemplate.ToLower() != MySiteHostTemplate.ToLower())
                        Int64 i64DiskSpace = diskspace;
                        SPTlogger.Debug("diskSpace: " + i64DiskSpace.ToString());
                        i64DiskSpace = (i64DiskSpace * 1024) * 1024;
                        SPQuotaTemplate quotaTemplate = null;
                        try
                            quotaTemplate = GetSPTQuotaTemplateByStorageMaxLevel(i64DiskSpace);
                            if (quotaTemplate == null)
                                //we are not supporting storagewarninglevel; setting it 90% of storagemaxlevel
                                long storagewarninglevel = (i64DiskSpace * 90) / 100;
                                long storagemaxlevelMB = (i64DiskSpace / 1024) / 1024;
                                string templateName = string.Format("{0}({1}MB)", i64DiskSpace, storagemaxlevelMB);
                                quotaTemplate = CreateSPTQuotaTemplate(templateName, i64DiskSpace, storagewarninglevel);
                            if (Site != null)
                                Site.Quota = quotaTemplate;
                        catch (Exception ex)
                            SPTlogger.Error("-------------------------ERROR-------------------------");
                            SPTlogger.Error("Error while fetching quota template: " + ex.Message);
                            if (Site != null)
                                Site.Quota.StorageMaximumLevel = i64DiskSpace;
                                Site.Quota.StorageWarningLevel = (i64DiskSpace * 90) / 100;
                    // end setting disk quota template
                    if (Site != null) Site.Close();
    It is setting the disk quota. however during file upload, larger file are also being uploaded. What is missing here?
    Tnanks,
    Moohak

    Hi,
    The following code snippet for your reference:
    SPSite siteCollection = new SPSite("http://MySiteCollection");
    SPQuota quota = siteCollection.Quota;
    quota.StorageMaximumLevel = 5242880; //bytes
    quota.StorageWarningLevel = 5242880; //bytes
    siteCollection.Quota = quota;
    I suggest you debug your code or provide more code(like the GetSPTQuotaTemplateByStorageMaxLevel
    and CreateSPTQuotaTemplate methods) for further research.
    More information:
    http://www.c-sharpcorner.com/uploadfile/anavijai/quota-templates-in-sharepoint-2010/
    http://reality-tech.com/2012/09/04/programatically-setting-site-quota-templates/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • When i'm in safari, if i hit command   to make the type bigger safari doesn't rememberthis setting after i close the site and reload it.  in chrome this happens automatically.  can i make safari remember my type size settings automatically?

    when i'm in safari, if i hit command  +   to make the type bigger safari doesn't remember this setting after i close the site and reload it.  in chrome this happens automatically.  can i make safari remember my type size settings automatically?

    That is normal Safari behavior.
    May be this will help.
    Safari > Preferences > Advanced
    Accessibility:   Never use font sizes smaller than
    Default is 9.    Click the downward arrow and select a larger font size.
    Put a check mark in the box to enable it.

  • How to set page margin for any site being viewed without back and forth scrolling?

    Some sites and most forums, the threads cannot be read without scrolling the screen back and forth. How can these be set where all information is read without moving screen short of up or down and not side ways back and forth.

    Thank you all for attempts to satisfy my needs. The last concerning my screen is 19 inches and 800 resolution. I'm very long in the tooth and if I go higher in
    resolution I have to play squint the fonts are so small. Crank them up and I'm back to scrolling back and forth on the screen.
    Again thanks for help but I' m not interested in spending money on newer
    haha state of the art equipment just to satisfy the need of cyber space Ad
    purveyors to post their wares. Graphics I can do without as well. If they want
    me to see what they have to offer, then stop messing with what once worked just fine.
    I still have Word where I can do with whatever I copy n paste to get done what I need. The convenience of doing so right at the site isn't a requirement as such. Being a retired Master Electronics Technician, I'm short on computer orientations but long on other kinds of smarts.
    Again, Thank you all for the help.
    Gizmoman

  • SP2013 Set default views across multiple site collections (powershell)?

    I am the editor for a large SharePoint 2013 publishing site with approximately 130+ subsites. Based on our most popular content types, I've create two diffferent default views that will come in handy as we move to a distributed authorship model. (I'm thinking
    specifically about the Quick Edit/Excel-like feature to make quick changes to page/document metadata.) 
    The authors/content owner/editors have NO experience with SharePoint, so while the usual benefit of using views is that they can be tailored to individual needs, I'd like to start them off with something that is VERY easy to change on the fly using Ribbon >
    Library > Quick Edit. It's either that or, as just a power user in the CMS, go to each individual page and document library and change it manually, which could take days, if not longer. The ideal solution would look for all subsite of layout/content type
    foo and change the default views within the page libraries to a set of 17 metadata.
    Any help would be greatly appreciated!
    Ryan D Watters

    Hi Ryan,
    As I understand, you would like to change default view for page/document libraries via powershell.
    Firstly, you need to get all page/document libraries in the site, then add columns to default view.
    Here are some articles for your reference:
    1.Get all document libraries:
    http://www.sharepoint-journey.com/get-all-document-libraries-in-a-site-collection.html
    2.Managing List Views:
    https://nkelkar.wordpress.com/2011/06/21/powershell-create-lists-add-columns-set-new-default-view/
    http://get-spscripts.com/2012/02/managing-creating-and-deleting.html
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to set up hosting for Muse site?

    How do I set up Business Catalyst hosting for a new site built with Muse. The new site will replace a site currently hosted by yahoo.
    Stephen

    Hi there,
    You should find this article helpful http://www.adobekb.com/upgrading_and_launching.html
    Cheers,
    Mario

  • Set alias URL for SharePoint site

    Hi,
    I want to set the SP site alias. my server name appearing http://dmfpqabudappcq2 and i want to change it to http://MySharePoint.
    I check the central admin - AAM - Edit alias url. I have updated there.
    Now, i am setting the new alias host in DNS. for this i have open the DNS - expands server name - Forward Lookup zone. When i go for right click then i can not see to add new alias and server IP there.
    Can anyone please tell what i am missing here to complete the setting for SharePoint alias. 
    Any help is much appreciated.
    Thanks, 
    Rakesh

    I've never trusted changing a Web App's URL. I always advise adding a new AAM for http://intranet etc. alongside your already existing server name.
    I would return the inital entry to as it was, then add a new AAM for your site.
    Now if i understand you correctly you haven't added an A host record for the AAM address to DNS yet? This is described here:
    http://technet.microsoft.com/en-us/library/cc779029%28v=ws.10%29.aspx
    Once you have an A host record you should be able to 'ping' that address from a client computer. You should also be able to browse the site from a client computer (assuming there's a site collection created for that web application).
    You will not however be able to browse it from your SharePoint server, this is because of the loop back check:
    http://www.harbar.net/archive/2009/07/02/disableloopbackcheck-amp-sharepoint-what-every-admin-and-developer-should-know.aspx

  • Can I set privileges for publishing a site?

    Is it possible to set up Muse such that one of my team is able to make various changes to a site, but only I am able to publish to Business Catalyst, once the changes have been approved?
    Thanks in advance

    Hi
    With Muse we cannot setup permission privileges for publishing sites, Muse will publish the site to user account which is setup in Publish account ( Edit > Preferences > Publish Account )
    Any user with administrative permission with the site can make changes to the site within Business Catalyst as well from Muse, unless you remove all the permission privilege for that user from Business Catalyst.
    So if user is added as Admin role in Business Catalyst then he can edit the site as well pulish the site from Muse , but if User is removed from admin role then he cannot publish the site from Muse.
    Thanks,
    Sanjit

  • Is it possible to create a super-set materialized view from master site?

    In the replication documents, materialized view is a sub-set of master site. But my scenario is when I delete some records in the master site. I don't want these records(which's been replicated to the materialized view table before) be purged in the materialized view. Is it possible for oracle replication ?

    If your goal is to replicate inserts and updates but to ignore deletes, you would probably be better off setting up Streams and simply not subscribing to deletes.
    Justin

  • Firefox's option bar for saving username and passwords will not show, I have it set to remember passwords for sites. Can sites be added manually?

    I was using Norton to remember my user names and passwords, however I do not use Norton any longer. Firefox does not give me the option of saving passwords even though I have it set to remember them.
    There are no sites in the exceptions list. How can I reset Firefox so the option bar shows?

    * Make sure that you not run Firefox in (permanent) [[Private Browsing]] mode
    * In Private Browsing mode some menu items are disabled (grayed) and features like visited links are disabled and not showing
    * You are in Private Browsing mode if you see "Tools > Stop Private Browsing", possibly grayed
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Automatically start Firefox in a private browsing session"
    See also http://kb.mozillazine.org/Password_Manager

  • New windows open to yahoo when i have it set to open to top sites

    I have the setting to safari to open new windows and tabs to top web sites. Every time i do so it tries to go to top sites the it automatically sends me to yahoo..

    Might be corrupted Safari preferences ...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Preferences/com.apple.Safari.plist
    Click Go then move the com.apple.Safari.plist file to the trash.
    Quit and relaunch Safari to test.

  • Allowing Clients to Set up a Feed to site

    Hi All,
    Would appreciate some help on this, we're developing a
    Property Listing Site - www.easytolet.net, having just spoken to
    one of our clients they have requested that they set up a feed that
    allows them to upload all of their properties at once??? I'm a
    little confused as to how to do this, i'm comfortable with
    uploading one record at a time, but have not utilised feeds before-
    Site is built using ASP VB Script -
    Any ideas, thoughts of links would be appreciated.
    Many thanks

    You've been told before, discussion of jailbroken devices is prohibited by the Terms of Use of this forum (that you agreed to by signing up to post) and you've also been told that restoring is an all or none event.
    There's nothing further to say to you, so please leave before your account gets permanently deactivated.

Maybe you are looking for

  • Subscription and push notifications - Name or password is incorrect (repeat logon)

    Hi , while trying to execute the Push notification scenario,while executing I facing error as Incorrect user name and password, but user name and password are same . By following the below thread i found that i have to assign S_BGRFC role to the user

  • Can any help me i want to downgrade iphone ios 6.1.1 back to 5.1.1

    i am having issue with iOS 6.1.1 it give me so much touble and issues. most time it chashes while in the middle of something i would be doing text, calling, listen to music , etc.. it happened with i installed iOS 6.0 the to 6.0.1 and the last one wa

  • Emailing and saving and editable form

    Hi there HELP! I have converted an existing legal agreement to an editable pdf form, which will be filled out by users. Once it has been filled out, I would like the user to have the option to either email/save this form. The user will need to email

  • How to get the status of MessageBridge STATUS consistently?

    Hi I am using Mbean to get the status of messaging Bridge. try { Iterator iterator = localHome.getMBeansByType("MessagingBridgeRuntime").iterator(); while (iterator.hasNext()) { MessagingBridgeRuntimeMBean bridgeInfo = (MessagingBridgeRuntimeMBean)it

  • Environment Taxes added to Sales Order - Belgium

    Dear Gurus, Due to new legislation, we need to add environmental taxes for certain types of equipments in sales order. Can you please guide me step by step on how to do that? I believe that Tax has to be maintained at material level as it depends - i