Clipboard Disable on SSGD

Just started using SSGD, what a great product.
One thing I cant figure out though, is it possible to totally isolate clipboard functions to the remote machine?
My scenario is as follows: SSGD server is on a linux machine, application servers are a bunch of windowsXP boxes. My remote application is the requirement management tool 'DOORS', running on XP. When it published data to a word doc, it does so using the windows clipboard. As it stands at the minute this involves dragging all the export data back to the user client (which may be a large distance away) then pushes it all the way back to the remote machine again.
Obviously this somewhat kills the other wise excellent user experience.
Can I set something so that the remote clipboard and my local clipboard remain totally separate?
Thanks
Andrew

Thanks for the info j.r, but unfortunately it didn't quite answer my particular problem.
Seems the cut&paste options in the SSGD config allow you to control which remote apps can paste to which other remote apps within SSGD, however the data is still always carried back to the local client clipboard, obviously using up bandwidth along the way.
What I was looking for is a way to totally isolate the clipboard of the remote machine, in such a way that the local client machine clipboard remains unused (and therfore available for local cut/paste without interference, eg during a long ,1hour or more, export process on the remote machine.) and with no associated bandwidth hike.
Luckily though, I have found a solution at the following link:
http://technet.microsoft.com/en-us/library/bb457106.aspx
follow the link then search for 'Terminal Services Group Policy' if you have a similar need, the instructions are pretty clear to follow.
Many thanks
Andrew.

Similar Messages

  • Illustrator Problems CS3 13.0.1 - CRASHES

    After extensive amounts of searching these forums and searching the intra web, I am still having problems with Illustrator CS3 crashing.
    Here is what it's doing:
    - Crashing on copy and paste to Flash CS3
    - Crashing on any previous *.ai saves
    - Crashing on new *.ai RGB files
    - Crashing on any copy and paste to PS CS3
    I really need to copy and paste vector illustrations to Flash CS3 as I do a lot of vector imports to save on size.
    I have been able to do the following things:
    - Save to any other format
    - Save a CMYK *.ai file
    I've done the following fixes:
    - Disabled Print Spooler
    - Moved any legacy versions of illustrator settings/folders to desktop
    - Deleted preferences folder
    - Installing acrobat reader and copying the two files into a specific location (I cant remember, but this was one of the solutions in the previous post)
    - Disabled version cue off/renaming version cue folder
    - Disabled version cue off in File Handling and Clipboard
    - Disabled PDF in File Handling and Clipboard
    Other related:
    - I don't have Windows media 11, its 9~
    - I don't have Zune
    Using:
    - Upgrade from Web Premium --> Master Collection
    - All updated
    My CPU:
    XP Pro
    Athlon 64+ 3800
    4gb ram
    Direct x 9.0c
    I'm out quite a bit of coin not using this program.

    1) Uninstall Illustrator using DVD.
    2) Delete Pref's
    3) Reinstall Illustrator from DVD.
    4) Don't let Illustrator auto-update to 13.0.1 ever again, not even at the end of time itself. I smashed my head on the keyboard many many times until I uninstalled/reinstalled to 13.0.0.
    I have NOT done any of these "solutions": (and my Ai works all the time, though I do have to delete Pref's once in a while)
    - Disabled Print Spooler
    - Moved any legacy versions of illustrator settings/folders to desktop
    - Installing acrobat reader and copying the two files into a specific location (I cant remember, but this was one of the solutions in the previous post)
    - Disabled version cue off/renaming version cue folder
    - Disabled version cue off in File Handling and Clipboard
    - Disabled PDF in File Handling and Clipboard
    In particular, I always use Version Cue, always have print spooler, always have PDF compatibility enabled with Ai Save. Also, I do not have Zune.

  • Server 2012 R2 disable mapped drives, disables clipboard as well

    Hi All,
    We have a server 2012 R2 deployment set up, everything is enabled on the gateway for resource redirection, on the server manager RDS deployment it is enabled as well.
    Via Group policy computer policy we disable drive redirection and specifically enable clipboard redirection however when logging in as administrator or a standard user they cannot copy and paste from the Session host server to the client.
    We then allow drive redirection and copy and pasting from session host to client works again?

    when you are saying the clipboard copy and paste - can you confirm if you are referring to copying and pasting text? Or are you meaning copy and paste files?
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • Logging clipboard usage SSGD

    Hello,
    We are quit happy using SSGD.
    There is 1 requirement what can't be filled with my current knowlegde.
    Using the clipboard you can copy/paste data from your desktop into the SSGD session and vice versa.
    Is there a possibility to log the information that is copied (using clipboard) between desktop and SSGD.
    We need this information for compliance requirements.
    Thanks for any help.
    Henk.

    SSGD does no store information of the clipboard. If you want to use clipboard logging you should perform the logging on the application server.
    The company Toolbox Solutions (www.tbsol.de) has created software to store a complete video log of all session (see for examples: http://www.tbsol.de/index.php?article_id=97&clang=1). Maybe that might be an option.
    If you have found a solution please post it here or send me an email, since it is a question I hear multiple time per year when talking to SGD customers.
    - Remold

  • JTree DnD, disable clipboard

    We have a JTree which contains custom nodes. We have enabled inter-tree Drag and Drop on the tree (Java 6 only. For java 5, we disable it), which works wonderfully, although in the example that you see below, it's only partially enabled. These nodes contain references to data (in the example, this data is represented via the Death class).
    The problem, though, is that the clipboard appears to be enabled on this tree. In our case, it does not make sense to allow the clipboard, and in fact hinders the usefulness of our tree, because the shortcut keys (in particular, Shift-Delete) throw exceptions about the data not being serializable. We have plans to map Shift-Delete to something else, and would like to disable the clipboard, so that any other shortcuts also do not interfere with the tree's functioning.
    So basically our question is "How do we disable the clipboard on our JTree?"
    The code below is an example that demonstrates the problem. Our project is very large, so of course I'm not going to include the full thing, but this should be enough to give you an idea of the general layout of our tree, as well as the problem. When you run it, you will see a very basic tree with a node selected. You then press Shift-Delete and you will get a NotSerializableException because it's trying to serialize the node to the clipboard.
    Notice, I have only tested this on Windows. It is most likely OS dependent and Look and Feel dependent due to the shortcut keys.
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JTree;
    import javax.swing.TransferHandler;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.TreePath;
    public class ResNode extends DefaultMutableTreeNode implements Transferable
         private static final long serialVersionUID = 1L;
         private static final DataFlavor NODE_FLAVOR = new DataFlavor(ResNode.class,"Node");
         private static final DataFlavor[] flavors = { NODE_FLAVOR };
         public Death death; //used in another module
         public ResNode(String name)
              super(name);
              death = new Death();
         //Truncated for the purposes of this example
         public class Death
         public DataFlavor[] getTransferDataFlavors()
              return flavors;
         public boolean isDataFlavorSupported(DataFlavor flavor)
              return flavor == NODE_FLAVOR;
         public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException
              if (flavor != NODE_FLAVOR) throw new UnsupportedFlavorException(flavor);
              return this;
         public static void main(String[] args)
              ResNode root = new ResNode("Root");
              ResNode node = new ResNode("Node");
              root.add(node);
              JTree tree = new JTree(root);
              tree.setSelectionPath(new TreePath(node.getPath()));
              tree.setTransferHandler(new TransferHandler()
                        private static final long serialVersionUID = 1L;
                        protected Transferable createTransferable(JComponent c)
                             return (ResNode) ((JTree) c).getLastSelectedPathComponent();
                        public int getSourceActions(JComponent c)
                             return MOVE;
              JFrame frame = new JFrame("Test");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.add(tree);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         }

    We have a JTree which contains custom nodes. We have enabled inter-tree Drag and Drop on the tree (Java 6 only. For java 5, we disable it), which works wonderfully, although in the example that you see below, it's only partially enabled. These nodes contain references to data (in the example, this data is represented via the Death class).
    The problem, though, is that the clipboard appears to be enabled on this tree. In our case, it does not make sense to allow the clipboard, and in fact hinders the usefulness of our tree, because the shortcut keys (in particular, Shift-Delete) throw exceptions about the data not being serializable. We have plans to map Shift-Delete to something else, and would like to disable the clipboard, so that any other shortcuts also do not interfere with the tree's functioning.
    So basically our question is "How do we disable the clipboard on our JTree?"
    The code below is an example that demonstrates the problem. Our project is very large, so of course I'm not going to include the full thing, but this should be enough to give you an idea of the general layout of our tree, as well as the problem. When you run it, you will see a very basic tree with a node selected. You then press Shift-Delete and you will get a NotSerializableException because it's trying to serialize the node to the clipboard.
    Notice, I have only tested this on Windows. It is most likely OS dependent and Look and Feel dependent due to the shortcut keys.
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JTree;
    import javax.swing.TransferHandler;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.TreePath;
    public class ResNode extends DefaultMutableTreeNode implements Transferable
         private static final long serialVersionUID = 1L;
         private static final DataFlavor NODE_FLAVOR = new DataFlavor(ResNode.class,"Node");
         private static final DataFlavor[] flavors = { NODE_FLAVOR };
         public Death death; //used in another module
         public ResNode(String name)
              super(name);
              death = new Death();
         //Truncated for the purposes of this example
         public class Death
         public DataFlavor[] getTransferDataFlavors()
              return flavors;
         public boolean isDataFlavorSupported(DataFlavor flavor)
              return flavor == NODE_FLAVOR;
         public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException
              if (flavor != NODE_FLAVOR) throw new UnsupportedFlavorException(flavor);
              return this;
         public static void main(String[] args)
              ResNode root = new ResNode("Root");
              ResNode node = new ResNode("Node");
              root.add(node);
              JTree tree = new JTree(root);
              tree.setSelectionPath(new TreePath(node.getPath()));
              tree.setTransferHandler(new TransferHandler()
                        private static final long serialVersionUID = 1L;
                        protected Transferable createTransferable(JComponent c)
                             return (ResNode) ((JTree) c).getLastSelectedPathComponent();
                        public int getSourceActions(JComponent c)
                             return MOVE;
              JFrame frame = new JFrame("Test");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.add(tree);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         }

  • Disable/Hide Clipboard Sharing in remote control viewer

    I need to give access to Help Desk Users so that they can take remote Control of the local machine but
    they can not copy paste files. I want 'Enable Clipboard Sharing' disabled. Is this possible?
    1. I tried thru registry entry in every helpdesk machine to change clipboard value to 0/1, Where users
    are allowed to modify to modify registry in HKLU entries  so unable to block.
    2. I am planning to control the clipboard settings in server level.
    So other than SCCM administrator, no one allowed to modify.
    Pls suggest

    This should do the trick:
    http://social.technet.microsoft.com/Forums/en-US/cbc8cd28-4314-4988-8d32-6fba7b57fdad/remote-control-with-disable-clipboard-sharing?forum=configmanagergeneral
    It's a user setting and not configurable through ConfigMgr. I would think you can use a GPO to set that key.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How to disable silverlight "Do you want to allow this Web application to access your clipboard?" popup window, when tyring to right click and paste?

    Hi,
    When im trying to right click and choose paste. im getting a dialog box.. "Do you want to allow this Web application to access your clipboard?". How do i disable it for all users?
    i found that, we can able to disable it for only one user, if we create a 'Clipboard' DWORD key with value '11' in the registry path: HKEY_USERS -> S-1-5-21-159.. -> Software -> AppDataFlow -> Software -> Microsoft ->
    Silverlight -> [website url]
    Even, i tried
    Internet Options> Security> Internet Zone> Custom Level> Scripting section> Allow Programmatic clipboard access> Enable. But its not working.
    Please let me know how to disable that popup for all users?

    It works fine on my machine here which is win7 pro.
    Your options are limited
    You know one way - the registry entry.
    The option:
    Internet Options> Security> Internet Zone> Custom Level> Scripting section> Allow Programmatic clipboard access> Enable.
    Has been changed by later versions of Internet explorer tightening security.
    I guess you could try:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
    meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    Bit difficult for me to test at the moment, but that could work.
    If that's no good.
    The alternative is to give the app elevated trust.
    This is a PITA because you have to obtain a security cert and sign the xap with it.
    They expire as well and you then need to buy a new one.
    Costs several hundred quid a year ( this is one time cost rather than per user ).
    Hope that helps.
    Recent Technet articles:
    Property List Editing   ;  
    Dynamic XAML

  • Do not allow clipboard redirection - enable/disable per user

    I have a requirement to for all users, by default, to enable the following GPO on a Windows 2008 R2 RDS server:
    "Do not allow clipboard redirection" 
    This policy is configurable in both the computer and user policies.
    When I enable the policy for the computer only it disables the use of clipboard redirection for all users.
    When I enable the policy for the user only (enabling loopback processing on the computer policy as the user is in a different OU to the server) it does not disable the use of clipboard redirection, the setting is grayed out in the RDP settings but it remains
    enabled (un-checked).
    So it would appear that the setting is only configurable (or will only work) as a computer policy. Can anyone confirm if this is an expected behavior as I have tested in both a lab and live environment with the same result?
    Cheers,
    Phil

    Hi Phil,
    Thank you for post in Windows Server Forum.
    If you disable redirection of the Clipboard, for example, users connecting remotely to the RD Session Host server on this connection will not be able to redirect their Clipboard in their remote session, even if they select the Clipboard check box on the Local
    Resources tab under Options in Remote Desktop Connection. 
    If you enable redirection of a local device or resource on the RD Session Host server, users will still have to specify that they want to redirect that type of local device or resource by making the appropriate selection on the Local Resources tab under Options
    in Remote Desktop Connection.
    Note: These Group Policy settings will take precedence over the settings configured in Remote Desktop Session Host Configuration and over the settings specified by the user in Remote Desktop Connection. If both the Computer Configuration and the User Configuration
    policy settings are configured, the Computer Configuration policy settings take precedence.
    More information:
    Make Local Devices and Resources Available in a Remote Session
    http://technet.microsoft.com/en-us/library/cc770631.aspx
    Hope it helps!
    Thanks,
    Dharmesh

  • Html script disable clipboard

    Is there a simple html script to disable clipboard copy/paste
    on and html form in DW? I have spammers dumping html links in my
    comments textArea. Or - restrict content of a textArea to text only
    & no html code?

    I'd rather see you do 'honeypot' than CAPTCHA.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Ted Dawson" <[email protected]> wrote in message
    news:g3mib0$p56$[email protected]..
    >> Is there a simple html script to disable clipboard
    copy/paste on and html
    >> form
    >> in DW? I have spammers dumping html links in my
    comments textArea. Or -
    >> restrict content of a textArea to text only & no
    html code?
    >
    >
    > No and no. You need some other form of form validation.
    Many around here
    > recommend you Google captcha:
    http://www.captcha.net/
    >
    > I like something a little more simple. Add another text
    field to your
    > form, tell your users to type PANTYHOSE in the field,
    then on the form
    > action page, check to see if the field contains
    PANTYHOSE, and if not,
    > redirect them back to the form page. Oh, you can use any
    word you want,
    > just tell the user what it is and check for it.

  • Disabling import clipboard in ps cs5?

    In the preferences there's disable export clipboard. I use a win7 machine with built-in card reader, which is many times faster than usb2.0 card reader connected to mac mini. Then I copy from the cf-card to win7 hard disk and then via samba to bibble download. Using copy with Remote desktop, leaves the data in Mac clipboard. Now opening photoshop, it complains it can't import the clipboard and the file given to photoshop from bibble fails to open. Is there possibility to disable importing clipboard in photoshop?. As a remedy I wrote an AppleScript to empty the clipboard, but it needs to be run before opening photoshop.Not a big deal, but sometimes I forget to run it after copying and get error.
    thanks

    Thanks for that.  If I open the exported XMP file (exported from a TIFF) with Notepad I see it has all the
    EXIF data in it.  So it looks like an issue with importing.
    I've tried doing this within Bridge and CS5, and importing into a TIFF, PSD and JPEG with the same result.

  • Copying to the clipboard is disabled. How can I fix this?

    WHen I am inside any application in Firefox (oe Google Apps, etc.) ANY application, I receive the following message when trying to use Edit, Copy
    Your browser does not allow access to your computer's clipboard.
    Instead, please use Ctrl-C for Copy, Ctrl-X for Cut and
    Ctrl-V for Paste, or use your browser's Edit menu.

    You are probably better off / much safer using copy and paste yourself
    But this is what is referred to
    * Security Policies - MozillaZine Knowledge Base <br>http://kb.mozillazine.org/Security_Policies
    * Granting JavaScript access to the clipboard - MozillaZine Knowledge Base<br> http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard

  • Firefox 11 seems to disable Windows clipboard features

    When Firefox is running in the background, Excel 2003 will no longer cut or copy cell information.

    Hi,
    Please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode].
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]
    Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > '''Use hardware acceleration when available'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u Options > Advanced]. All these settings/add-ons can also be individually or collectively disabled/enabled/changed in Firefox normal mode to check if an extension, theme or hardware acceleration is causing issues.
    [https://support.mozilla.org/en-US/kb/Options%20window Options]

  • CSCus07365 - should I not use DNS local database at all or I can enable it again after disabling?

    I had an issue with my RV320 that it suddenly stops answering DNS queries from my LAN. I just found out that a new firmware was released last month (v1.1.1.19), and one of its "known issues" is bug id CSCus07365 according to the release notes:
    Sometimes the DNS process is gone and can not reply the DNS request from LAN network.
    Solution: Check if you have enabled DNS local database feature on RV320/325, disable it, and then configure and save the WAN setting page again.
    From that description I am not sure if this is a one-time issue after upgrading (so that I should disable and re-enable it), or if this is still a current issue and it will be better to keep away from DNS local database at all until a new firmware is released.
    Thanks in advance!

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click the line below to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Quit and relaunch Mail, and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • How do I enable the clipboard options on my MacBook Pro?

    I need to post information into a discussion thread for class. I copied the information from Pages and I tried to paste the information in the compose section of the discussion board. Every time I try this an error message pops up on my screen...
    Copy, Cut, Paste is disabled in your Mozilla browser. You can use keyboard shortcuts instead or visit http://www.mozilla.org/editor/midasdemo/securityprefs.html for more information on how to grant access to the clipboard. However, when I proceed to this website there isn't anything that's helpful to me. Help!!!!

    ''Samarion22 wrote:''
    You can use keyboard shortcuts instead
    You can press '''Command + V''' on your keyboard to paste.
    * [[Keyboard shortcuts - Perform common Firefox tasks quickly]]
    ''Samarion22 wrote:''
    visit http://www.mozilla.org/editor/midasdemo/securityprefs.html
    If you absolutely need to grant websites access to your clipboard, you can try the following extension.
    * https://addons.mozilla.org/firefox/addon/allowclipboard-helper/

  • When I close firefox "everything " is cleared! EXCEPT when I open it again and anything i have copied to the clipboard (paste icon) remains lit... I believe this can be a security breach because I clear everything when closing firefox !!

    I have my settings to clear everything when I close firefox ver 3.6.13. If I copy something to the clipboard, the Paste icon lights up so I can paste the text... which is normal.
    The problem is when I close the browser and everything is suppose to clear (history, etc) the PASTE Icon still lights up for me to paste again.
    This can be a security breach because I want everything cleared when closing the browser !!!
    The only way I can rid myself of this problem is to restart the computer... which clears the clipboard of the operatinging... which is absolutely normal as well.
    I should not have to restart the computer each time.
    Try It !!! type text in any box... then paste it by using the PASTE Icon
    CLEAR all your history, everything ... then close firefox
    Reopen the browser... and the PASTE Icon will light up

    I only had a few addons installed, I disabled Zone Alarm toolbar, View Source Chart 3.01. I also had 5 separate java console updates/addons, and I uninstalled all but the latest java console 6.0.21. All I have now is Roboform 6.9.98, Firebug 1.5.4, Java console 6.0.21, Java quick starter 1.0. So far, so good, the problem has not occurred today. I hope this is it, I will be more sure after a few days problem free. Thanks for the info.

Maybe you are looking for

  • IOS 8.1 Weather App/Notification Center

    I'm currently using iOS 8.1 on my iPhone 5c and since i have upgraded i have noticed that, randomly, the native weather app looses its detailed information. Sometimes i can view the details (sunrise, sunset, chance of rain, humidity, etc..) other tim

  • Recompressing PDF files?

    I just got sent a bunch of PDF files (archived newsletter issues) for inclusion on a web page. Unfortunately, they were apparently converted using "High Quality Print" settings or some such, since many of them are 2 and 3 MB in size, obviously unusab

  • B2B Document Editor

    Where is the B2B Document Editor? I am reading Oracle® Fusion Middleware User's Guide for Oracle B2B 11g Release 1 (11.1.1)

  • BDLS vs BDLSS

    I used BDLS many times but can any one explain what exactly BDLSS used for? I read that BDLSS can be used to change logical sys names remotly.(Can any one explain me on this) thank you

  • Backup Error in RAC?

    Hi friends i have 2 node RAC running on Windows 2003 Enterprise Edition. when i am taking backup of archivelog from one node i got following error RMAN> backup archivelog all; Starting backup at 16-JUN-07 current log archived using target database co