Presets over a network

Is there a way to set presets up to work over a network for several other computers? So you'd have all the presets in one location and several computers will all look at that network location for them.
Thanks,
- Matt

Maybe an alias... There's no directory presets path in the preferences that I know of. Animation presets are not necessarily compatible with different versions of AE so some care will have to be taken there.
I have an alias to a bunch of expression presets that I have collected over the years. It works just fine across the AE versions I have on my main work station and my laptop. The Alias is in the ProgramFiles(Applications)Adobe After Effects CS6 (version)/Presets folder. My custom presets are stored in a shared dropbox folder so that every machine that's synced to the dropbox folder has access to all of the custom presets through Bridge or through the Effects and Presets Panel.

Similar Messages

  • Corrupt Logic Files over a Network

    Hi,
    I am running Logic Pro 7.2.3 over a network of eMacs running back to an XServe. All students have their own individual Home Folders stored back on the Xserve. The Logic Pro application lives on the local eMac.
    Students are regularly experiencing corrupted files when they do an incremental 'Save As'. For example students have a Logic Pro document titled 'Mysong 1.1' which has a file size of 432K, they add some additional work to their composition and this gets saved as 'Mysong 1.2' but the resulting file is only 4K - and is totally corrupted.
    Often as they do the 'Save As' operation a message comes up saying:
    'File with specified name and version number already exists Result Code = -48'
    Some students get this dialog box practically every time they do a 'Save as' - other students only get it occasionally. All students have started their composition with the same Logic Template (Autoload) that we distributed to them. This Autolaod was rebuilt from scratch back in May.
    Our current workaround is that when the 'File with specified name and version number already exists Result Code = -48' message appears when saving 'Mysong 1.2', the student then does another 'Save As' but this time clicks on the greyed out 'Mysong 1.2' text in the 'Save As' dialog box. This automatically renames the document 'Mysong 1.2'. A 'This file already exists do want to replace it' dialog box comes up, the student clicks 'yes' and the 'Save A's process now works. Simply retyping the file name while trying a 'Save As' doesn't always work but selecting the greyed out text to rename the document does.
    One theory put forward by a local tech is that Logic uses a Temp file (stored somewhere in either the local eMac or in the Users Home Folder somewhere) and when a Save As operation is executed the Temp file is copied to the selected location. This process appears to work fine saving Logic files to a local drive (I use Logic all day on a standalone G5 and have never encountered this problem) but somehow gets screwed up in a Network environment.
    Anyone aware of Temp files being used by Logic? or have experience with Result Code -48 and its implications.
    All was fine with our network setup running Logic 6.4.3/OS X 10.3 but Logic Pro 7/OS 10.4 has had ongoing issues from the day we installed it.
    Just to clarify users aren't moving documents with large audio files around the Network - the files are typically MIDI only - not even using virtual instruments.
    All eMacs and XServer currently running OS X 10.4.8 - although this problem first occurred as early as April 2006 this year running 10.4.4.
    cheers
    Scott

    i ran into a problem with logic 6.4.3 which was not letting me edit audio files destructively, because a temporary file could not be written to the applications/logic folder - the users did not have permissions to access that part of the HD...
    http://discussions.apple.com/message.jspa?messageID=3417133#3417133
    your problem sounds like it is different but in some way might still be related.
    i really wish logic would let you configure where the program stores it's files so you can anticipate these problems more easily!
    this also applies to the library of fx presets and audio files, which under logic, soundtrack pro, garageband, cannot be put in a user definable folder... (or at least to my knowledge!) and why put them in ridiculous places like library/application support/logic/bla bla????
    especially when you consider applications such as FCP let you do this easily!!!
    <sigh> end of rant
    back to your problem:
    so far i have not experienced this problem with logic 7 in a similar setup to yours.
    Xserve and G5 workstations running OSX 10.4.7 / 4.8
    the only difference i can think of is that our setup as a system drive (1st HD) with OSX and all the apps, and a temp drive (2nd HD) where students can save their work...
    are you attempting to save the files directly to a network server? if so that might be the cause of the problem... if possible, try to "save as" files locally, then move the files to the server. It may not be an elegant solution, but it will confirm that it is a network issue rather than a logic issue...
    hope that helps.
    j

  • I want to share my external hard drive over the network

    I found a lot of threads and discussions about this, but no answers.
    I have a WD My Book External Hard Drive that I'm looking to share over the network. However, when I add the volume to the "Shared Folders" or even a folder within the volume and the "Users:" are grayed out.
    When getting info on the volume, Sharing & Permissions says, "You can read and write"
    Any ideas?

    Hi Keith,
    Thanks for your response; however, the first screenshot is through the Sharing settings in the System Preferences.

  • Problem with using JMF audio over a network

    Hiya, I'm using IBM JMF code but I'm having problems trying to get it transmit data from the MediaTransmitter to the MediaPlayerFrame.
    I'm kinda new to JMF so I assume I'm missing something basis for why this doesn't work.
    Any help would be greatly appreciated.
    MediaPlayerFrame
    import javax.media.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    * An instance of the MediaPlayerFrame may be used to display any media
    * recognized * by JMF.  This is intended to be a very simple GUI example,
    * displaying all possible controls for the given media type.
    public class MediaPlayerFrame extends JFrame {
         * The frame title.
        private static final String FRAME_TITLE = "developerWorks JMF Tutorial " +
            "Media Player";
         * The panel title of the main control panel.
        private static final String CONTROL_PANEL_TITLE = "Control Panel";
        // location and size variables for the frame.
        private static final int LOC_X = 100;
        private static final int LOC_Y = 100;
        private static final int HEIGHT = 500;
        private static final int WIDTH = 500;
         private final static long serialVersionUID = 1;
         * The current player.
        private Player player = null;
         * The tabbed pane for displaying controls.
        private JTabbedPane tabPane = null;
         * Create an instance of the media frame.  No data will be displayed in the
         * frame until a player is set.
        public MediaPlayerFrame() {         
            super(FRAME_TITLE);
            System.out.println("MediaPlayerFrame");
            setLocation(LOC_X, LOC_Y);
            setSize(WIDTH, HEIGHT);
            tabPane = new JTabbedPane();
            getContentPane().add(tabPane);
            /* adds a window listener so that the player may be cleaned up before
               the frame actually closes.
            addWindowListener(new WindowAdapter() {
                                   * Invoked when the frame is being closed.
                                  public void windowClosing(WindowEvent e) {
                                      closeCurrentPlayer(); 
                                      /* Closing this frame will cause the entire
                                         application to exit.  When running this
                                         example as its own application, this is
                                         fine - but in general, a closing frame
                                         would not close the entire application. 
                                         If this behavior is not desired, comment
                                         out the following line:
                                      System.exit(0);
         * Creates the main panel.  This panel will contain the following if they
         * exist:
         * - The visual component: where any visual data is displayed, i.e. a
         * movie uses this control to display the video.
         * - The gain component:   where the gain/volume may be changed.  This
         * is often * contained in the control panel component (below.)
         * - The control panel component: time and some extra info regarding
         * the media.
        private JPanel createMainPanel() {
            System.out.println("createMainPanel");
            JPanel mainPanel = new JPanel();
            GridBagLayout gbl = new GridBagLayout();
            GridBagConstraints gbc = new GridBagConstraints();
            mainPanel.setLayout(gbl);
            boolean visualComponentExists = false;
            // if the visual component exists, add it to the newly created panel.
            if (player.getVisualComponent() != null) {
                visualComponentExists = true;
                gbc.gridx = 0;
                gbc.gridy = 0;
                gbc.weightx = 1;
                gbc.weighty = 1;
                gbc.fill = GridBagConstraints.BOTH;
                mainPanel.add(player.getVisualComponent(), gbc);
            // if the gain control component exists, add it to the new panel.
            if ((player.getGainControl() != null) &&
                (player.getGainControl().getControlComponent() != null)) {
                gbc.gridx = 1;
                gbc.gridy = 0;
                gbc.weightx = 0;
                gbc.weighty = 1;
                gbc.gridheight = 2;
                gbc.fill = GridBagConstraints.VERTICAL;
                mainPanel.add(player.getGainControl().getControlComponent(), gbc);
            // Add the control panel component if it exists (it should exists in
            // all cases.)
            if (player.getControlPanelComponent() != null) {
                gbc.gridx = 0;
                gbc.gridy = 1;
                gbc.weightx = 1;
                gbc.gridheight = 1;
                if (visualComponentExists) {
                    gbc.fill = GridBagConstraints.HORIZONTAL;
                    gbc.weighty = 0;
                } else {
                    gbc.fill = GridBagConstraints.BOTH;
                    gbc.weighty = 1;
                mainPanel.add(player.getControlPanelComponent(), gbc);
            return mainPanel;
         * Sets the media locator.  Setting this to a new value effectively
         * discards any Player which may have already existed.
         * @param locator the new MediaLocator object.
         * @throws IOException indicates an IO error in opening the media.
         * @throws NoPlayerException indicates no player was found for the
         * media type.
         * @throws CannotRealizeException indicates an error in realizing the
         * media file or stream.
        public void setMediaLocator(MediaLocator locator) throws IOException,
            NoPlayerException, CannotRealizeException {
              System.out.println("setMediaLocator: " +locator);
            // create a new player with the new locator.  This will effectively
            // stop and discard any current player.
            setPlayer(Manager.createRealizedPlayer(locator));       
         * Sets the player reference.  Setting this to a new value will discard
         * any Player which already exists.  It will also refresh the contents
         * of the pane with the components for the new player.  A null value will
         * stop the discard the current player and clear the contents of the
         * frame.
        public void setPlayer(Player newPlayer) {      
            System.out.println("setPlayer");
            // close the current player
            closeCurrentPlayer();          
            player = newPlayer;
            // refresh the tabbed pane.
            tabPane.removeAll();
            if (player == null) return;
            // add the new main panel
            tabPane.add(CONTROL_PANEL_TITLE, createMainPanel());
            // add any other controls which may exist in the player.  These
            // controls should already contain a name which is used in the
            // tabbed pane.
            Control[] controls = player.getControls();
            for (int i = 0; i < controls.length; i++) {
                if (controls.getControlComponent() != null) {
    tabPane.add(controls[i].getControlComponent());
    * Stops and closes the current player if one exists.
    private void closeCurrentPlayer() {
    if (player != null) {
    player.stop();
    player.close();
    * Prints a usage message to System.out for how to use this class
    * through the command line.
    public static void printUsage() {
    System.out.println("Usage: java MediaPlayerFrame mediaLocator");
    * Allows the user to run the class through the command line.
    * Only one argument is allowed, which is the media locator.
    public static void main(String[] args) {
    try {
    if (args.length == 1) {
    MediaPlayerFrame mpf = new MediaPlayerFrame();
    /* The following line creates a media locator using the String
    passed in through the command line. This version should
    be used when receiving media streamed over a network.
    mpf.setMediaLocator(new MediaLocator(args[0]));
    /* the following line may be used to create and set the media
    locator from a simple file name. This works fine when
    playing local media. To play media streamed over a
    network, you should use the previous setMediaLocator()
    line and comment this one out.
    //mpf.setMediaLocator(new MediaLocator(
    // new File(args[0]).toURL()));
    mpf.setVisible(true);
    } else {
    printUsage();
    } catch (Throwable t) {
    t.printStackTrace();
    MediaTransmitter
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.io.File;
    * Creates a new media transmitter.  The media transmitter may be used to
    * transmit a data source over a network.
    public class MediaTransmitter {
         * Output locator - this is the broadcast address for the media.
        private MediaLocator mediaLocator = null;
         * The data sink object used to broadcast the results from the processor
         * to the network.
        private DataSink dataSink = null;
         * The processor used to read the media from a local file, and produce an
         * output stream which will be handed to the data sink object for
         * broadcast.
        private Processor mediaProcessor = null;
         * The track formats used for all data sources in this transmitter.  It is
         * assumed that this transmitter will always be associated with the same
         * RTP stream format, so this is made static.
        private static final Format[] FORMATS = new Format[] {
            new AudioFormat(AudioFormat.MPEG_RTP)};
         * The content descriptor for this transmitter.  It is assumed that this
         * transmitter always handles the same type of RTP content, so this is
         * made static.
        private static final ContentDescriptor CONTENT_DESCRIPTOR =
            new ContentDescriptor(ContentDescriptor.RAW_RTP);
         * Creates a new transmitter with the given outbound locator.
        public MediaTransmitter(MediaLocator locator) {
            mediaLocator = locator;
         * Starts transmitting the media.
        public void startTransmitting() throws IOException {
            // start the processor
            mediaProcessor.start();
            // open and start the data sink
            dataSink.open();
            dataSink.start();
         * Stops transmitting the media.
        public void stopTransmitting() throws IOException {
            // stop and close the data sink
            dataSink.stop();
            dataSink.close();
            // stop and close the processor
            mediaProcessor.stop();
            mediaProcessor.close();
         * Sets the data source.  This is where the transmitter will get the media
         * to transmit.
        public void setDataSource(DataSource ds) throws IOException,
            NoProcessorException, CannotRealizeException, NoDataSinkException {
            /* Create the realized processor.  By calling the
               createRealizedProcessor() method on the manager, we are guaranteed
               that the processor is both configured and realized already. 
               For this reason, this method will block until both of these
               conditions are true.  In general, the processor is responsible
               for reading the file from a file and converting it to
               an RTP stream.
            mediaProcessor = Manager.createRealizedProcessor(
                new ProcessorModel(ds, FORMATS, CONTENT_DESCRIPTOR));
            /* Create the data sink.  The data sink is used to do the actual work
               of broadcasting the RTP data over a network.
            dataSink = Manager.createDataSink(mediaProcessor.getDataOutput(),
                                              mediaLocator);
         * Prints a usage message to System.out for how to use this class
         * through the command line.
        public static void printUsage() {
            System.out.println("Usage: java MediaTransmitter mediaLocator " +
                               "mediaFile");
            System.out.println("  example: java MediaTransmitter " +
                "rtp://192.168.1.72:49150/audio mysong.mp3");
            System.out.println("  example: java MediaTransmitter " +
                "rtp://192.168.1.255:49150/audio mysong.mp3");
         * Allows the user to run the class through the command line.
         * Only two arguments are allowed; these are the output media
         * locator and the mp3 audio file which will be broadcast
         * in the order.
        public static void main(String[] args) {
            try {
                if (args.length == 2) {
                    MediaLocator locator = new MediaLocator(args[0]);
                    MediaTransmitter transmitter = new MediaTransmitter(locator);
                    System.out.println("-> Created media locator: '" +
                                       locator + "'");
                    /* Creates and uses a file reference for the audio file,
                       if a url or any other reference is desired, then this
                       line needs to change.
                    File mediaFile = new File(args[1]);
                    DataSource source = Manager.createDataSource(
                        new MediaLocator(mediaFile.toURL()));
                    System.out.println("-> Created data source: '" +
                                       mediaFile.getAbsolutePath() + "'");
                    // set the data source.
                    transmitter.setDataSource(source);
                    System.out.println("-> Set the data source on the transmitter");
                    // start transmitting the file over the network.
                    transmitter.startTransmitting();
                    System.out.println("-> Transmitting...");
                    System.out.println("   Press the Enter key to exit");
                    // wait for the user to press Enter to proceed and exit.
                    System.in.read();
                    System.out.println("-> Exiting");
                    transmitter.stopTransmitting();
                } else {
                    printUsage();
            } catch (Throwable t) {
                t.printStackTrace();
            System.exit(0);

    Okay, here's the it copied out.
    Media Transmitter
    C:\John\Masters Project\Java\jmf1\MediaPlayer>java MediaTransmitter rtp://127.0.
    0.1:2000/audio it-came-upon.mp3
    -> Created media locator: 'rtp://127.0.0.1:2000/audio'
    -> Created data source: 'C:\John\Masters Project\Java\jmf1\MediaPlayer\it-came-u
    pon.mp3'
    streams is [Lcom.sun.media.multiplexer.RawBufferMux$RawBufferSourceStream;@1decd
    ec : 1
    sink: setOutputLocator rtp://127.0.0.1:2000/audio
    -> Set the data source on the transmitter
    -> Transmitting...
       Press the Enter key to exit
    MediaPlayerFrame
    C:\John\Masters Project\Java\jmf1\MediaPlayer>java MediaPlayerFrame rtp://127.0.
    0.1:2000/audio
    MediaPlayerFrame
    setMediaLocator: rtp://127.0.0.1:2000/audioAs I said, it just kinda stops there, what it should be doing is opening the MediaPlayer.
    "MediaPlayerFrame" and "setMediaLocator: rtp://127.0.0.1:2000/audio" are just print outs I used to track here the code is getting to.

  • Printing to shared windows printer over wireless network

    Hi,
    I just bought my wife a MacBook and recently updated it to Leopard (OS X 10.5). I have a Lexmark X5150 printer connected to a desktop PC running Windows XP. I can share files between the two computers no problem either wirelessly or through an ethernet connection through my router. But, I'm having troubles accessing the shared printer through the Macbook wirelessly. If I connect the printer directly to the Macbook, I can add the printer with appropriate drivers no problem. However, when I try to add the printer as Windows shared printer, the appropriate driver doesn't show up in the drop down list. I can navigate to and find the printer over the network fine, but I just can't find the right driver. I'm a newbie to Mac and was wondering if there is anyway to find the driver using Finder or something similar to determine where it physially resides on the Mac. I know it's there because it is automatically selected when I directly connect the printer to the Macbook and add the printer. Any thoughts??

    Couldn't figure things out, so I'll just stick with connecting the printer directly to the macbook.

  • One Answer To Sharing Stubborn/Naff Printers Over A Network

    Dear all,
    I posted a previous question concerning sharing a Canon i320 printer and got a swift if disappointing answer. Whilst the answer was entirely correct in that it was a fault with Canon's driver and the lack of a CUPS version, I have found an alternative to giving my perfectly working i320 printer a Viking Funeral which may also answer several other peoples problems. Just as well because it probably wouldn't float anyway.
    It may not be news to some but there is an application for OS X called PrintFab - www.printfab.net which seems to provide CUPS drivers for most printers, including the i320. This allows you to share your disappointingly naff printer over a network just like one of those proper printers you should have bought in the first place.
    I've just achieved a successful printout using the evaluation version of this software. Sadly there's no such thing as a free lunch. This one costs 49 euros in it's basic form but in these ecologically challenged times, it does allow to continue using your current printer. It is presumably cheaper than Airport Extreme which was suggested as an alternative. It did take a while to print so I'm unsure about performance in that area. I guess with an evaluation version, you can check that yourselves.
    Hope this helps.

    Hi Brie,
    I'm not sure exactly what are the 6 steps exactly.... but I did all the check box in ip preferences of both computer.
    I found this in the iP help menu
    To share your photos on a network:
    1-Choose iPhoto > Preferences.
    2-Click Sharing at the top of the Preferences window.
    3-Select the "Share my photos" checkbox, and then choose your entire library or only the albums, slideshows, or books you want to share.
    4-Type a name for your shared items in the "Shared name" field, and a password if desired.
    The shared name you enter appears in the iPhoto Source list on computers set up to look for shared photos on your network. If you select "Require password," users will need to enter that password before they can see your shared photos.
    DONE ( did not use password)
    To look for shared photos:
    1-Choose iPhoto > Preferences.
    2-Click Sharing at the top of the Preferences window.
    3-Select the "Look for shared photos" checkbox.
    DONE
    Not sure what other step there are to do if any!
    michel
    Message was edited by: Michel Vézina
    Message was edited by: Michel Vézina
    Message was edited by: Michel Vézina

  • ITunes library stored on an external hard drive which is connected to my airport extreme, I wish to share my iTunes library over my network, I can do this with my laptop, but not with my iPad, can anyone tell me if it is possible

    I have my iTunes library stored on an external hard drive which is connected to my airport extreme, I wish to share my iTunes library over my network, I can do this with my laptop, but not with my iPad, can anyone tell me if it is possible

    You can't connect directly to the external drive, but should be able to use iTunes Home Sharing via the laptop.
    http://support.apple.com/kb/PH1453

  • I am sharing my macbook pro over a network with windows 7, however through windows 7 I can access my whole computer instead of just the shared files!

    I am sharing my macbook pro over a network with windows 7, however through windows 7 I can access my whole computer instead of just the shared files!

    Hi Sig,
    The issue is that i only want the shared folders to be accessed through windows 7.
    Whats the point otherwise to have shared folders?
    thanks..

  • IMac G5 no longer prints to laser printer over ethernet network

    I have a small office with 6 iMacs networked via ethernet with a Netgear Router. Printers are connected to one machine and people send to print over the network.
    3 iMacs are G5. 3 are Intel. All run OS X 10.5.8.
    A month ago one of the G5 iMacs stopped being able to print to a Brother laser printer (which is connected by USB to an Intel iMac). I believe this happened after we downloaded a periodic Apple update. About 2 weeks ago a second G5 iMac developed the same problem. The 1st G5 iMac still prints fine to an inkjet printer connected directly to it by USB.
    We have tried re-loading drivers, but no improvement.
    Any suggestions as to how we can resolve this?

    Hi DaddyPaycheck
    The iMacs that can't print can see the printer. We have deleted and re-installed via the printer system prefs too. There weird thing is that you can select the printer and send to print, but for some reason the printer then automatically pauses and you can't resume it. The file is listed by the status is 'stopped'. When you open the printer queue on the Intel iMac that the laser printer is connected to, no print file shows up at all...
    We also ran the network diagnostic that you can do when in printer system prefs and that reported that "the G5 iMac could connect to the internet, but not the Server "brother HL 4040CN series-1@ben's-iMac-2.ipp.tcp.local" "
    Hope there's a clue in there somewhere...
    R

  • Error message when using Photoshop over the network

    I am currently working with Apple Aperture. My library is on my computer and references files that are saved over a network on a hard drive connected to another computer. I open an image that is within Aperture having set my primary editor as Photoshop. This creates an automatic duplicate of the image within Aperture so that any changes I make in Photoshop will be a second image and will not affect the original. Normally what is supposed to happen is that once I have made my change in Photoshop, I hit Apple+S to save and then it will update within Aperture. However, when I hit to save, I get the following error message:
    Could not save "file.tiff" because the file is already in use or was left open.
    I know that on my computer and the other computer I connect to that is definitely not open. Not even in Finder. I tried closing Aperture and then saving and I still get the error message. I am not sure what is going on and why I can't save it. Any ideas?

    Hi,
    Try to save in different location and different format not in tiff like PSD. close the photoshop and repon once and open PSD file and save as into tiff in different location.
    just try with this...
    HARI

  • HP Laserjet M1132 MFP is too slow over the network!

    Hi,
    My HP Laserjet M1132 MFP is too slow over the network!
    I have connect the printer to a windows XP 32bit SP3 using UBS port. The printer works fine on the local computer but when sharing it over the network it works too slow, for example with print test page it takes about 45 seconds to print and for other documents it takes much longer time.
    I have installed the latest driver form HP website and upgrade the firmware it the latest version.
    It happens on other Windows XP machines as well.
    I connected the printer to my laptop (Windows 7 64bit) and it works fine (No delays over the network) and it seems that this problem have some relations with the windows XP Driver.
    I have used local port trick on remote machines (instead of regular method) like this:
    ''add a local printer;
    'new port'
    'localport'
    \\XPcomputer\HPPrinterName as port name
    but still nothing!
    There is nothing wrong with the network, we use to use a Samsung printer on the same machines over the network with no problem.
    I Really appreciate your HELP!
    This question was solved.
    View Solution.

    BEHZAD_T, how is the printer connected to the network (wireless or Ethernet)? If it is slow wirelessly, I would suggest trying to connect the printer to your router with the Ethernet cord and install it to the networked computer that way.
    Another question is, relatively speaking, how close to your router are the Samsung printer and the HP printer? Depending on the distance (and what stands between the devices) there can be a lag between sending a print job and it being received by the printer.
    Let me know!

  • WinRM cannot complete the operation. Verify that the specified computer name is valid, that the computer is accessible over the network

    The Exchange Management Shell fails to connect in Exchange 2013 environment, this is a DAG environment and previously it indicates another error message, which is in my another thread. We fixed that error by delete the retired proxy entry in the server registry,
    after that the error is gone but changed to below one, anyway the EMS still fails to connect to all servers:
    VERBOSE: Connecting to NSWVIP999WTMBX.air.abc.au.
    New-PSSession : [NSWVIP999WTMBX.air.abc.au] Connecting to remote server NSWVIP999WTMBX.air.abc.au failed with the
    following error message : WinRM cannot complete the operation. Verify that the specified computer name is valid, that
    the computer is accessible over the network, and that a firewall exception for the WinRM service is enabled and allows
    access from this computer. By default, the WinRM firewall exception for public profiles limits access to remote
    computers within the same local subnet. For more information, see the about_Remote_Troubleshooting Help topic.
    At line:1 char:1
    + New-PSSession -ConnectionURI "$connectionUri" -ConfigurationName Microsoft.Excha ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotin
       gTransportException
        + FullyQualifiedErrorId : WinRMOperationTimeout,PSSessionOpenFailed
    Failed to connect to an Exchange server in the current site.
    Enter the server FQDN where you want to connect.:
    Then it just show can't connect to all the exchange servers, from the wording it seems pointing to the Windows firewall settings for winRM, but when I look at the windows firewall found it's turned off. We use Sophos enterprise for the security, but all
    other 3 exchange servers didn't have the same issue.

    Hi Lynn,
    Thanks for your analyst and reply, I run the command as you suggested and checked accordingly to Task Manager, but seems none of them indicates a firewall or anti-virus.
      TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       4
     TCP    0.0.0.0:808            0.0.0.0:0              LISTENING       2260
     TCP    172.17.2.123:444       172.16.2.127:8050      ESTABLISHED     4
     TCP    172.17.2.123:444       172.16.2.127:8069      ESTABLISHED     4
     TCP    172.17.2.123:444       172.17.2.127:8053      ESTABLISHED     4
     TCP    172.17.2.123:10952     172.16.2.68:80         ESTABLISHED     3296
     TCP    172.17.2.123:11185     172.16.2.90:8080       SYN_SENT        468
     TCP    172.17.2.123:11190     172.16.2.90:8080       SYN_SENT        15268
     TCP    172.17.2.123:11330     172.16.2.90:8080       SYN_SENT        1296
     TCP    [::]:80                [::]:0                 LISTENING      
    4
     TCP    [::]:808               [::]:0                 LISTENING      
    2260
     TCP    [::1]:6001             [::1]:8028             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8029             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8030             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8031             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8032             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8033             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8034             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8035             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8036             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8037             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8040             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8041             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8048             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8049             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8059             ESTABLISHED     4764
     TCP    [::1]:6001             [::1]:8060             ESTABLISHED     4764
     TCP    [::1]:8028             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8029             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8030             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8031             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8032             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8033             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8034             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8035             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8036             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8037             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8040             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8041             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8048             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8049             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8059             [::1]:6001             ESTABLISHED     9980
     TCP    [::1]:8060             [::1]:6001             ESTABLISHED     9980
     TCP    [fe80::9054:e8f5:f885:8105%20]:808  [fe80::9054:e8f5:f885:8105%20]:9901
     ESTABLISHED     2260
     TCP    [fe80::9054:e8f5:f885:8105%20]:9901  [fe80::9054:e8f5:f885:8105%20]:808
     ESTABLISHED     4868
    This is the full result, among them
    4 -- System -- NT Kernel & System
    468 -- There is no process associated with PID 468
    1296 -- svchost.exe -- Host Process for Windows Service
    2260 -- SMSvcHost.exe -- SMSvcHost.exe
    3296 -- CcmExec.exe -- CCM Executive
    4764 -- Microsoft.Exchange.RpcClientAccess.Service.exe -- Microsoft.Exchange.RpcClientAccess.Service.exe
    4868 -- Microsoft.Exchange.ServiceHost.exe -- Microsoft.Exchange.ServiceHost.exe
    9980 -- w3wp.exe -- IIS Worker Process
    15268 -- ServerManager.exe -- Server Manager

  • Airport won't print over the network

    I have a basic HP Photosmart C4200 series printer. It works fine when I plug it directly into my computer but when I plug it into the router, it won't print and this message comes up : "Unable to read response header - short read"
    When I delete/add the printer from Preferences, it finds the printer and establishes connection but when I try to print over the network, it gives me that error message.
    A weird thing I found was that when connected to the airport, my printer shows up under the iDisks tab under the Airport Utilities instead of being in the Printers tab...

    Welcome to the discussions!
    A number of entry level printers are designed so that they will only work when they are connected directly to a computer, so that may possibly explain your problem.
    To verify, you can work your way through Apple's troubleshooting guide to see if this is the case. If you've completed all the steps and still can't print, I think you have your answer.
    http://support.apple.com/kb/TS1253
    http://support.apple.com/kb/TS1253

  • A Bit Off Topic, But Can the HP Photosmart C3140 Be Shared Over a Network?

    I was going to get a MacBook and since I need a new printer, this one looks good since it would be free (after the $100 rebate).
    However, I've had trouble sharing HP printers over a network in the past. Would this one give me any problems. Also, if it's connected to a Windows computer, would it make a difference?

    Hey Large,
    Some printers don't support network printing because of driver issues and what not, but the C3140 should work just fine.
    As for your windows question. I have found it easier to print from a mac, over a network to a PC, than the other way around.
    Also don't be afraid to call apple tech support when you get your macbook. They will walk you through the networking process and answer any questions you might have. It's free for 90 days so use it.
    Good luck

  • Printer HP Envy 4500 Series cannot be contacted over the network

    My wireless printing chooses when it wants to work, and right now it's really acting up. It is connected wirelessly, it is the default printer, but after troubleshooting it is telling me "Printer HP Envy 4500 Series cannot be contacted over the network." What can I do to get printing again?

    Hello featherfamily,
    Welcome to the HP Forums.
    I see that you are having an issue with the printer not connecting with a wireless connection.
    Please click on the following link that deals with when the 'Printer is offline' Message Displays on the Computer and the Printer Does Not Print: Windows 7.
    Please make sure that you have the printer power cable connected directly to a wall outlet and not a power bar/strip. Here is a document that uses a LaserJet printer as an example but it is meant for HP products in general. Please click on the following link that explains the Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector.
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you. If you are calling within North America, the number is 1-800-474-6836 and for all other regions, click here: click here.
    Thanks for your time. 
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

Maybe you are looking for

  • Is there a way to print the pdf documents?

    Hi i have 20pdf files in a folder. i need to pick up all the documents in the folder and sent them for the print. in java how to do this?

  • App photogene not appearing after purchase.. says installed

    New Ipad 2, first purchase, Photogene.  The app does not appear on the ipad.  Does photogene appear as a separate app or is it embedded within the photos?  It looks like from the developer web site demo that photogene is a regular app ... Not sure wh

  • When I copy and paste an image from Word for usage in a Framemaker document it becomes blurred.

    Hi, I am saving graphics from Word for usage in a Framemaker document. When I copy and paste the file into photoshop it becomes blurred and unusable. How do I resolve this? I have tried saving the file in it's highest resolution but that doesn't work

  • Unable to import volumes in 10.3 webtool

    When trying to import volumes in the webtool in 10.3 I receive this error. This worked in 10.2. Error:      can't execute command - no drive specified for this session I know from using the command line that you should not have to choose a drive and

  • Performance Issue of the loop

    I have an ITAB which contains PO header details and another ITAB which has PO Item details. Now  I need to to take this info. in a single ITAB and send it to some FM. Which will be the best  way to do this ? When I do, Loop at it_header into wa_heade