Disable SCR

I have got two Exchange 2007 SP1 servers in Standby Continuous Replication (SCR) mode.
The Target server (EXCH2) failed a few days ago and it has been recreated and Exchange has been reinstalled from scratch.
Entering: Get-StorageGroupCopyStatus -Identity "EXCH1\SG1" -StandbyMachine EXCH2 , as a result I get a ServiceDown replication for SG1.
Entering: Disable-StorageGroupCopy -Identity "EXCH1\SG1" -StandbyMachine EXCH2 , I just get this error message:
An unexpected error has occurred and debug information is being generated: The network path was not found.
How can I force or remove this old replication entry?
Thank you!

Issue description: SCR Replication status has problem and unable to disable the storage group copy with SCR source
Error: “An unexpected error has occurred and debug information is being generated: The network path was not found“
Explanation: “ServiceDown” means that SCR target is not reachable, and that’s the reason why NTbackup cannot flush logs after a full backup, server thinks that SCR is enabled on the Storage Group (SG) and it’s trying to contact SCR target to copy the log files before purging the files
Please use ADSI Editor to disable the SCR replication:
a.      Launch ADSI Editor
b.      Find problematic SCR source SG, right-click it, and select “Properties”
c.       In the “Attribute Editor” tab, find “MsExchStandbycopymachine”, the value should be the name of SCR target server, and remove it
d.      Wait for info replication among the DCs
e.      Now, check if SCR has been disabled again with your “Get-StorageGroupCopyStatus” cmdlet. The correct output should like below:
Name         SummaryCopyStatus
SGName       Not configured  
After SCR replication is disabled, we can use the article above to re-enable it
How to Enable Standby Continuous Replication for an Existing Storage Group
If the method above doesn’t solve the issue, please do the following troubleshooting steps:
1.      Please reproduce the issue and check the error/warning events in the application log on the both SCR source and target
2.      Please run ExBPA for a health check on the exchange server
Thank you James.
That was the attribute I was looking for  ;-)

Similar Messages

  • Disable Prt Scr' key

    hi
    i wana some help to disable the print screen option(key)
    i want when my software is run
    then no one can copy my software image through print screen
    key or by pressing 'Alt+Prt Scr'
    i need script of it

    Disabling the print screen key in your Director application
    will not prevent
    people from capturing the screen. At best it will make it
    slightly more
    difficult to do so.

  • Disable the Select-options field in the viewcontainer

    Hi,
    I  have two select option fields(Date,Number) in a viewcontainer .
    Now i need to disable one of the select-option field(Date) in the view container based on the condition.If I give Enability for the view container then both the select options will get diasbled.Is there any way to disable only Date select-option field in the view container.
    Thanks in Advance.
    Regards,
    bala.

    Hi,
    I just tested this solution and it is working for me....Following on Thomas's suggestion...I did the following....
    I just had one select-option on my scr...but it can be done with two too...
    step1: 
    created three attributes at component level under the attribute tab ( as suggested by Thomas )
    ENABLE_PRI_SELECTOPTION type  WDY_BOOLEAN 
    M_HANDLER type ref to     IF_WD_SELECT_OPTIONS
    M_WD_SELECT_OPTIONS  type ref to     IWCI_WDR_SELECT_OPTIONS
    Note: all are with public check box checked....so that all your views can see these attributes
    I created a method at componenet controller leverl:  create_select_option....in this method i have following code:
    DATA:
      lt_range_table TYPE REF TO data,
    *  rt_range_table TYPE REF TO data,
      read_only TYPE abap_bool,
      typename TYPE string.
      DATA:
      lr_componentcontroller TYPE REF TO ig_componentcontroller,
      l_ref_cmp_usage TYPE REF TO if_wd_component_usage.
    * create the used component
      l_ref_cmp_usage = wd_this->wd_cpuse_select_options( ).
      IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
    * get a pointer to the interface controller of the select options
    *component
      wd_this->m_wd_select_options = wd_this->wd_cpifc_select_options( ).
    * init the select screen
      wd_this->m_handler = wd_this->m_wd_select_options->init_selection_screen( ).
    * create a range table that consists of this new data element
      lt_range_table = wd_this->m_handler->create_range_table(
      i_typename = 'PERSNO' ).
    * add a new field to the selection
      wd_this->m_handler->add_selection_field(
      i_id = 'PERSNO'
    I_VALUE_HELP_TYPE = if_wd_value_help_handler=>CO_PREFIX_SEARCHHELP
    I_VALUE_HELP_ID = 'ZHELP_WDA_PERNR'
    I_NO_INTERVALS = abap_true
      it_result = lt_range_table
      i_read_only = wd_this->ENABLE_PRI_SELECTOPTION ).   <-----pls see here how i am controlling the read only property
    I assume you know this much...already....but i am just putting everything down....
    step2:
    in my view where i want to display the select-options....i added this code under my wddoinit method
    DATA lo_componentcontroller TYPE REF TO ig_componentcontroller .
    lo_componentcontroller =   wd_this->get_componentcontroller_ctr( ).
    lo_componentcontroller->ENABLE_PRI_SELECTOPTION = abap_false.    <--pls see initially we want this field to be open
      lo_componentcontroller->create_select_option(
    step3: 
    i did not have much logic to control the select option field so i added a button which if user presses the field become disable...
    under that button action method i added the following code:
    DATA lo_componentcontroller TYPE REF TO ig_componentcontroller .
    lo_componentcontroller =   wd_this->get_componentcontroller_ctr( ).
    lo_componentcontroller->ENABLE_PRI_SELECTOPTION = abap_true.
       "<---pls see here how i am changing the global *attribute which Thomas has suggested for controlling the "read only" attibute for the select-option field....you can put this under *your "if" statement....
    "this step is very important if you do not remove the field you will get the dump...since it will try to add the same field again
    "which produces dump from system....
    lo_componentcontroller->m_handler->REMOVE_SELECTION_SCREEN_ITEM(
    i_id = 'PERSNO' ).
    "now call the same method which we created at component level to create the select_options...
    lo_componentcontroller->create_select_option(
    that is all....it works great for me.....let us know if still have any questions....
    Thanks...
    AS...

  • Servicedown Standby Continuous Replication (SCR)

    Hi Guys
    I have Exchange 2007 enviroment with two server running Version 8.1 (Build 240.6), both had same storage partitions
    so...
    I enable SCR following technet article during process I'm not receive any error message. Ny source server is Exchange and target is Exchange2
    After end, I check SCR status on source server and copy status is not configured.
    [PS] C:\Windows\system32>Get-StorageGroupCopyStatus -StandbyMachine exchange
    Name SummaryCopyStatus CopyQueueLength ReplayQueueLength LastInspectedLogTime
    Users NotConfigured 0 0
    VipUsers NotConfigured 0 0
    Second Storage Group NotConfigured 0 0
    Pusers NotConfigured 0 0
    OldEmploye NotConfigured 0 0
    On taget status is:
    [PS] C:\Windows\system32>Get-StorageGroupCopyStatus -StandbyMachine exchange2
    Name SummaryCopyStatus CopyQueueLength ReplayQueueLength LastInspectedLogTime
    Users NotConfigured 0 0
    VipUsers NotConfigured 0 0
    Second Storage Group NotConfigured 0 0
    Pusers ServiceDown 0 0
    OldEmploye ServiceDown 0 0
    Checking services on target I'm not found Microsoft Exchange Replication Service.
    I run Microsoft.Exchange.Cluster.ReplayService.exe manually 
    C:\Program Files\Microsoft\Exchange Server\Bin>Microsoft.Exchange.Cluster.ReplayService.exe
    Hit <enter> to shutdown...
    After I check status on target again:
    [PS] C:\Windows\system32>Get-StorageGroupCopyStatus -StandbyMachine exchange2
    Name SummaryCopyStatus CopyQueueLength ReplayQueueLength LastInspectedLogTime
    Users NotConfigured 0 0
    VipUsers NotConfigured 0 0
    Second Storage Group NotConfigured 0 0
    Get-StorageGroupCopyStatus : Microsoft Exchange Replication service RPC failed : Microsoft.Exchange.Rpc.RpcException: Error 721 from
    cli_GetCopyStatusEx
    at Microsoft.Exchange.Rpc.RpcClientBase.ThrowRpcException(Int32 rpcStatus, String routineName)
    at Microsoft.Exchange.Rpc.Cluster.ReplayRpcClient.GetCopyStatusEx(Guid[] sgGuids, RpcStorageGroupCopyStatus[]& sgStatuses)
    at Microsoft.Exchange.Cluster.Replay.ReplayRpcClientWrapper.InternalGetCopyStatus(String serverName, Guid[] sgGuids, RpcStorageGroupCopyStatus[]&
    sgStatuses, Int32 serverVersion)
    At line:1 char:1
    + Get-StorageGroupCopyStatus -StandbyMachine exchange2
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : ReadError: (:) [Get-StorageGroupCopyStatus], ReplayServiceRpcException
    + FullyQualifiedErrorId : 905DC728,Microsoft.Exchange.Management.SystemConfigurationTasks.GetStorageGroupCopyStatus
    ServiceDown message disappear, but now I have RPC error.
    I believe that every problem is the lack of service (Microsoft Exchange Replication) on the target server Service
    Anyone can help me?
    Regards!
    Douglas Filipe http://douglasfilipe.wordpress.com

    Hello Douglas,
    Since you found that the issue could be related to Microsoft Exchange Replication because we can’t find Microsoft Exchange Replication Service on the SCR target machine. I would like to confirm the following:
    Can we find the Microsoft Exchange Replication Service within
    Services on the SCR target server? Is the service working fine with
    Started status and Automatic startup type?
    Can we ping the SCR target server from this Exchange local server? Please disable the firewall, check the DNS record and A record.
    Can we restart the service, what will happen?
    Are the
    Remote Registry and other related services working fine? Please try to restart it as well.
    Can we restart the whole server? And all the service started and work fine?
    Which account does the Replication service log on as on both server? Please check the service
    Properties, and check “Log on” tab, let me know whether it log on as a
    Local System Account or a user account.
    Please refer to above steps and let me know if any questions.
    Regards, Eric Zou

  • SCR issue

    Hi Everyone,
    by mistake someone removed the Failover clustering feature from SCR node, now if i am running any command from SCR node i a m getting the error message :
    Suspend-StorageGroupCopy : Standby continuous replication cannot be configured on node <NodeFQDN>without Microsoft Exchange Mailbox role installed.
    At line:1 char:25
    only test replication health commnad is running and giving the error message:
            An RPC request to the Microsoft Exchange Replication service
        did not return a Standby Continuous Replication copy status for s
        torage group '<SG name>'. The Microsoft Exchan
        ge Replication service may be down.
    Enable and Disable command also showing the same error message as mentioned above.
    Someone please suggest how i can fix this issue.
    Thanks
    Dheeraj Mishra
    Thanks Dheeraj Mishra MCSA+MCTS

    First off, according to the directory, is the mailbox role installed on this server still?  To check your directory, see the following TechNet article:  http://technet.microsoft.com/en-us/library/bb123496(EXCHG.80).aspx 
    If the mailbox role is still defined on this server, the server will be in the list, and this setting will show it.  If the server isn't in the list, someone deleted it in the directory without deleting it from the server - you'll have to manually remove
    it (I think setup.com /m:uninstall /r:m /force may do this, but if not, follow the steps in the following article: 
    http://windowsitpro.com/exchange-server/how-uninstall-stubborn-exchange-server)
    If the server is still in the list, you may need to run setup.exe with the /recoverserver parameter to force the system to "remember" that it exists.  Once complete, you should be able to re-enable the SCR feature.

  • How can I disable sending from one Mail account?

    Hello. I have a gmail account that I use to subscribe to various newsletters and accounts. So it's essentially a read-only account for me. But I too frequently accidently send mail from that account. Is there a way to prevent mail from being sent from that account?

    I want to do the same thing as the OP.  I have tried making outgoing server none. And checking "always use this server so it prompts me to edit the message so that I manually select a different address to send from inthe drop down list. And selecting a different account for composing.  Actually, all my outgoing emails keep coming from the one account I am attempting to disable.  Got any other ideas?

  • Not null and enable or disable  column in tabular form

    Hi,
    Using apex version 4.1 and working on tabular form.
    ACT_COA_SEGMENT_MAS is Master table
    and
    ACT_SEGMENT_VALUES_MAS is detail table
    I have entered 8 rows in master table and PARENT_SEGMENT_ID is column in master table which is null able. If i specified PARENT_SEGMENT_ID with value in master table then in detail table there is column PARENT_ID that should not be null and enable.
    How i can enable or disable column when in master table PARENT_SEGMENT_ID column is null then in detail table PARENT_ID column should disable and vice versa.
    I have created tabular form on Detail table. before insert into the tabular form Check in master table in first entry if PARENT_SEGMENT_ID is not null in first row of master table then in tabular form PARENT_ID should enable and not null able in corresponding to this first row id's lines in tabular form.
    Same should check for second row in master table if PARENT_SEGMENT_ID is not null then entered rows with PARENT_ID into tabular form corresponding to 2nd id in master table should not nullable and column should enable in tabular form.
    Thanks & Regards
    Vedant
    Edited by: Vedant on Jan 9, 2013 9:12 PM

    Vedant,
    You need to create you own manual tabular form and not use the wizard.
    Using APEX_ITEM api you should be build you own form and you will be able to control how you wan to display the rows. (See Link [Apex Item Help|http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_item.htm#CACEEEJE] )
    select case when PRIMARY_TABLE_COLUMN is null then APEX_ITEM.DISPLAY_AND_SAVE(3 , DETAIL_COLUMN ) else APEX_ITEM.TEXT(2,detail_column) end "ALIAS" from detail table
    Hope that help.
    Vivek

  • NOT disabling keyboard/trackpad on tablet fold...

    This is probably the opposite of user problems regarding the keyboard/trackpad and turning the Yoga Pro 2 in tablet mode... Here's the situation:
    I'm a Java programmer and I'm sharing my files with my home PC, so I can work from my laptop or desktop easily without transferring files back and forth.
    It's no fun adjusting my typing to multiple different keyboards for different PCs, and overall I tend to prefer a trackpad over a mouse for what I do which makes using my lenovo yoga keyboard ideal for everything (majority of wireless keyboards also aren't backlit).
    I'm using the program Mouse without Borders (from the Microsoft website) so that I can use my lenovo yoga keyboard/trackpad on my desktop.
    What I want to do: keep my keyboard and trackpad enabled when putting the yoga into tablet mode. I've already figured out how to disable the touchscreen for such uses, but the only way I know to keep the keyboard and trackpad active is to uninstall the synaptics driver/software. Obviously that isn't an ideal solution to have to install and uninstall it every time I switch between PCs.
    Is there any way to stop synaptics from disabling the keyboard and trackpad when in tablet mode? Preferrably something such as disabling something in device manager, not uninstalling and reinstalling software depending my use for the moment.

    Please provide more information.
    First, I have no idea what "Jimi to Jimi" means. This is probably just something you need to explain to me; a Google search didn't turn up anything useful.
    You said that the keyboard and trackpad aren't working right. What does this mean, exactly? Regardless, the monitor you use should have no effect on the function of your other peripherals.

  • HT4528 My apple I'd is disable how do I get it working to download apps again

    My apple ID is disable and wont let me download my apps back to my phone how do i fix the problem

    Try to reset your password at http://iforgot.apple.com.
    If that doesn't work, time to contact iTunes Support - http://apple.com/support/itunes/contact/

  • Got my password wrong twice and my mini is disable. I connected to iTunes, but can't get it to work. Can some one guide my through?

    got my password wrong twice and my mini is disable. I connected to iTunes, but can't get it to work. Can some one guide my through?

    If it's showing the red disabled screen due to incorrect passcodes then you may need to put the iPad into recovery mode : http://support.apple.com/kb/ht1808 - you should then be able to reset the iPad via your computer's iTunes and restore/resync your content to it

  • Disabled JMenuItem doesn show animated gif

    Hi there
    I would like to have a popup menu with actions that are enabled after they have finished with some background task taking some time. Basically this works fine for the enabling action on a shown popup. However, adding an animated gif as the icon or disabled icon does not show it in disabled state. In enabled state it works perfect. Please have a try with the sample code. You should see the disabled item for 2 secs and the icon is not showing up. After being enabled, it does. Invoking the menu again shows the animated gif in its last state left, but not moving any more.
    I guess, repaints are not done appropriately in disabled state... Any ideas how to solve that would be highly appreciated :-)
    Actually I used the icon at http://mentalized.net/activity-indicators/indicators/pascal_germroth/indicator.white.gif
    Cheers
    Daniel
    public class Main
      public static void main(String[] args)
        final JFrame frame = new JFrame();
        frame.addMouseListener(new MouseAdapter()
          public void mousePressed(final MouseEvent e)
            final JPopupMenu popup = new JPopupMenu();
            popup.add(new JMenuItem("Open..."));
            popup.add(new JMenuItem("Close"));
            final JMenuItem action = new JMenuItem("Long loading until enabled");
            action.setIcon(new ImageIcon("C:/spinner.gif"));
            action.setDisabledIcon(new ImageIcon("C:/spinner.gif"));
            popup.add(action).setEnabled(false);
            popup.show(e.getComponent(), e.getX(), e.getY());
            SwingUtilities.invokeLater(new Runnable()
              public void run()
                try
                  Thread.sleep(2000);
                  action.setEnabled(true);
                catch (InterruptedException e1)
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(300, 200);
        frame.setVisible(true);
    }Edited by: daniel.frey on Apr 22, 2009 7:50 AM

    The problem is that you are causing the EDT to sleep, which means the GUI can't repaint itself. Read the section from the Swing tutorial on Concurrency to understand what is happening.

  • How to disable IE Security Warning on opening a "local" visio file with Visio Viewer ActiveX?

    Hello all,
    Everyone knows that Microsoft released ActiveX based Visio Viewer for free and allow the users to open Visio drawing and view/print via IE browser.
    The problem that I am facing is that some users are complaining about IE browser's security warning on "active content to run in files on My Computer".
    It means that opening .VSD files from the network, internet, intranet would be all OK but if the user wants to open .VSD files from the local hard drive (or open it as a mail attachment, which will extract it to a temp folder), it prompt the user to select "Allow Blocked Content" EVERYTIME they open them.
    I know that I can GLOBALLY disable this warning by going through Tools - Internet Options - Security section and enable "Allow active content to run in files on My Computer" but I hope that there is a way (or workaround) to allow them by file type or location, etc.
    Questions:
    1. Is there any way to disable those warning for all .VSD only while we still UNCHECK the option on Internet Options?
    2. Is there any 3rd party Win32 based viewer which wouldn't have those restriction?
    3. Is it safe assumption that McAfee VirusScan and Host IPS protection is sufficient enough to remove the IE's security warning feature?
    Thanks in advance?
    Young-

    Are you able to host/launch the VSD file via an HTM page? In that case you can format the HTM page as shown below. This will trick IE into thinking it is loading the file off of a website. Commonly called 'mark of the web'.
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html>
    </html>

  • How can I display step info in User Interface with Tracing Disabled?

    I'm trying to modify the CVI Operator Interface application to update the execute panel with some step information during the execution of the program. i.e. I want to display the measurement, high & low limits during the run WHEN TRACING IS DISABLED. (Doing this, when tracing is enabled is easy, all you do is access the step record that's been constructed (I can cope with that!))
    I've successfully implemented a User defined execution event to signal the User Interface application when the current step is a result (using TS_UIMsg_UserMessageBase etc. I'm posting a UI Message in the Process Model under the ProcessModelPostStep so that I will only display if its a result step.) I've added a user defined
    entry in the execute.c module execution event switch statement which will call a function in the exedisp.c module to update the display. However, I don't have a context to the step that I can use. (I can't use e.g. the exeRec record since this is only completed with the context if tracing is enabled.) I've got a handle to the correct panel to write the information to, but how do I get the context to the current step when tracing is disabled?
    Regards,
    Brian

    Hi,
    no problem - btw, if you wanted to acheive this in TS 1.x, you could always write to a local variable with the ActiveX reference for the step concerned, and then use the msg reference that you have in the OI within the UI Message handler, to dig through to the Execution ->Sequence File->Sequence->Locals, or Execution->Thread->SequenceContext (and you can get almost anywhere from that).
    Hope that helps
    S.
    // it takes almost no time to rate an answer

  • Using a Radio Button to Disable Multiple Checkboxes

    Hi everyone,
    My name is Christian and I am trying to design a form using Adobe Designer 7 that when a user selects a group of two radio buttons (one marked Macintosh and one marked Windows) it automatically disables 3 or 4 checkboxes of various software applications further down the page.
    The idea is if you select the Windows radio button, you would not be able to select the iWorks or StuffIT checkboxes (as that is Mac software), but conversely if you check Macintosh radio button the iWorks and StuffIT checkboxes activate but the Office 2003 and Microsoft Money checkboxes deactivate (because that is Windows software).
    Im not really a developer so any assistance would be appreciated. Thanks for reading and have a great day! :-)
    Christian

    I suspect that you have a problem in some portion of your code that you have not posted. To help debugging I suggest you create a simple test using two pages: input.cfm and action.cfm.  Get the most simple case working then add the javascript, css, and CF code to make your application work.
    <!--- contents of input.cfm --->
    <html>
    <head>
         <title>Input</title>
    </head>
    <body>
         <form action="action.cfm" method="POST">
              Choose type: <br />
              <input name="type" type="radio" value="male" />     Male<br />
              <input name="type" type="radio" value="female" /> Female<br />
              <input type="submit" />
         </form>
    </body>
    </html>
    <!--- content of action.cfm --->
    <html>
    <head>
         <title>Action</title>
    </head>
    <body>
         <cfif form.type eq "male">
              Type is male.
         <cfelseif form.type eq "female">
              Type is female.
         </cfif>
         Here is a cfdump of the form variables:<br />
         <cfdump var="#form#" />
    </body>
    </html>
    Message was edited by: JR "Bob" Dobbs
    Added sample for action.cfm

  • How can I disable 1142N from providing IPv6 access ?

    subject says it all, I failed to find the command in configuration..

    Hi Andre,
    As per my knowledge, you cant disable from ur AP.
    Ipv6 is currently not support on any of the Cisco AP's in autonomous mode. However, they will be able to pass ipv6 traffic.
    May be newer IOS version like : Cisco IOS Release 15.2(4)JA supports IPv6 protocols
    Regards

Maybe you are looking for