<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Trouble Connecting EOS R8 to EOS Utility on a Mac in Camera Software</title>
    <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/480668#M20103</link>
    <description>&lt;P&gt;Awesome command. You saved me a lot of time investigating this issue.&lt;/P&gt;&lt;P&gt;I improved it a bit for my needs script.sh:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#!/bin/bash

# Create the ~/R7 directory if it doesn't exist
mkdir -p ~/R7

# Start the endless loop in the background
{
  while :; do
    kill -9 $(ps aux | grep "[p]tpcamera" | awk '{print $2}')
    sleep 1 # Adding a sleep to avoid high CPU usage
  done
} &amp;amp;

# Store the PID of the background loop
LOOP_PID=$!

# Open the EOS Utility 3 app and wait for it to close
open -W "/Applications/Canon Utilities/EOS Utility/EU3/EOS Utility 3.app"

# Kill the endless loop
kill -9 $LOOP_PID

# Function to move files recursively
move_files() {
  src="$1"
  dst="$2"

  for item in "$src"/*; do
    if [ -d "$item" ]; then
      # If item is a directory, create the destination directory if it doesn't exist
      mkdir -p "$dst/$(basename "$item")"
      # Recursively move files from the source directory to the destination directory
      move_files "$item" "$dst/$(basename "$item")"
      # Remove the empty source directory
      rmdir "$item"
    else
      # If item is a file, move it to the destination
      mv -f "$item" "$dst"
    fi
  done
}

# Move all folders and files from ~/R7 to ~/Google Drive/My Drive/LightRoom/
move_files ~/R7 ~/Google\ Drive/My\ Drive/LightRoom/

# Remove any empty directories left behind in ~/R7
find ~/R7 -type d -empty -delete&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To allow running this script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;chmod +x script.sh&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;This script creates a background task that kills processes that block camera access. Then run EOS 3 utitlity.&lt;/P&gt;&lt;P&gt;I configured the EOS3 utility to download photos into the ~/R7 folder automatically.&lt;BR /&gt;When it's done and EOS is closed, the script kills the loop that allows connection to the camera.&lt;/P&gt;&lt;P&gt;Then, it copies all folders from ~/R7 into the Google Drive folder because the EOS3 utility doesn't want to use it even with Full disk access.&lt;BR /&gt;Since I was preparing everything for my wife, I created an app using Macos Automator.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;To create an app on macOS using Automator that runs a &lt;/SPAN&gt;&lt;SPAN&gt;`script.sh`&lt;/SPAN&gt;&lt;SPAN&gt; script, you can follow these steps:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt; &lt;SPAN&gt;**Open Automator:**&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Go to your Applications folder.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Open Automator.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt; &lt;SPAN&gt;**Create a New Document:**&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; When Automator starts, you will be prompted to choose a type for your document.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Select "Application" and click "Choose".&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;3.&lt;/SPAN&gt; &lt;SPAN&gt;**Add a "Run Shell Script" Action:**&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; In the Library on the left side, find "Run Shell Script" by typing it into the search bar.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Drag the "Run Shell Script" action into the workflow area on the right.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;4.&lt;/SPAN&gt; &lt;SPAN&gt;**Configure the Shell Script:**&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; In the "Run Shell Script" action, you will see a text box where you can enter your script.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Enter the following code to run &lt;/SPAN&gt;&lt;SPAN&gt;`script.sh`&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;```sh&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;#!/bin/bash&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;/path/to/your/script.sh&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;```&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Make sure to replace &lt;/SPAN&gt;&lt;SPAN&gt;`/path/to/your/script.sh`&lt;/SPAN&gt;&lt;SPAN&gt; with the actual path to your script file.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;5.&lt;/SPAN&gt; &lt;SPAN&gt;**Save the Automator Application:**&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Go to &lt;/SPAN&gt;&lt;SPAN&gt;`File`&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;`Save`&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Choose a name for your application and save it to your desired location.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;6.&lt;/SPAN&gt; &lt;SPAN&gt;**Run the Application:**&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Navigate to the location where you saved the Automator application.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; Double-click the application to run your &lt;/SPAN&gt;&lt;SPAN&gt;`script.sh`&lt;/SPAN&gt;&lt;SPAN&gt; script.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;P.S.&lt;BR /&gt;I hope it can help, but Canon is very irresponsible. I want to use an EOS utility to copy my photos to Google Drive without killing processes or using a third-party "image Canon" service.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Sun, 02 Jun 2024 18:56:13 GMT</pubDate>
    <dc:creator>misha-mzs</dc:creator>
    <dc:date>2024-06-02T18:56:13Z</dc:date>
    <item>
      <title>Trouble Connecting EOS R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428023#M16306</link>
      <description>&lt;P&gt;I am having issues connecting my R8 to my Mac via the EOS Utility. I have the latest software and have gone through the user manual. The message I keep getting is:&lt;/P&gt;&lt;P&gt;"Communication with the camera via USB cannot be established.&lt;BR /&gt;Start EOS Utility after closing all the apps that communicate with the camera, and then turn on the camera again."&lt;/P&gt;&lt;P&gt;I am unaware of any apps that I have that would be trying to communicate with my camera in the background. Anyone know what's going on? Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 12:27:30 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428023#M16306</guid>
      <dc:creator>tjdowling</dc:creator>
      <dc:date>2023-09-26T12:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428025#M16307</link>
      <description>&lt;P&gt;Make sure that Wi-Fi and Bluetooth are turned off in the camera in order to use the USB cable.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 00:20:41 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428025#M16307</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-16T00:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428026#M16308</link>
      <description>&lt;P&gt;No luck&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 00:28:47 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428026#M16308</guid>
      <dc:creator>tjdowling</dc:creator>
      <dc:date>2023-07-16T00:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428028#M16309</link>
      <description>&lt;P&gt;Are you using the USB cable that came with the camera? If not, make sure that the cable is a data cable and not a charging only USB cable.&lt;/P&gt;&lt;P&gt;Also, what is your Mac operating system version? Someone else here will have experience with a Mac, as I use a Windows computer.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 00:45:18 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428028#M16309</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-16T00:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428029#M16310</link>
      <description>&lt;P&gt;If you are just trying to transfer pictures to your computer, you could remove the memory card from the camera and use a card reader to transfer the files.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 00:48:24 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428029#M16310</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-16T00:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428062#M16319</link>
      <description>&lt;P&gt;Yep - the one that came with the camera.&lt;/P&gt;&lt;P&gt;MacOS Ventura.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 14:41:49 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428062#M16319</guid>
      <dc:creator>tjdowling</dc:creator>
      <dc:date>2023-07-16T14:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428091#M16323</link>
      <description>&lt;P&gt;Maybe this is a privacy &amp;amp; security issue? &amp;nbsp;On your Mac, launch System Settings and then choose Privacy &amp;amp; Security. &amp;nbsp;Scroll through its settings and see if there's anything related to attaching accessories.&lt;/P&gt;&lt;P&gt;This &lt;A href="https://support.apple.com/en-us/HT213430#:~:text=To%20change%20this%20setting%3A%201%20Choose%20the%20Apple,option%20you%20want.%20Learn%20more%20about%20the%20options." target="_self"&gt;Apple Support&lt;/A&gt; article has some details. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 17:57:02 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428091#M16323</guid>
      <dc:creator>rs-eos</dc:creator>
      <dc:date>2023-07-16T17:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428099#M16324</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.usa.canon.com/t5/user/viewprofilepage/user-id/220719"&gt;@tjdowling&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I am having issues connecting my R8 to my Mac via the EOS Utility. I have the latest software and have gone through the user manual. The message I keep getting is:&lt;/P&gt;&lt;P&gt;"Communication with the camera via USB cannot be established.&lt;BR /&gt;Start EOS Utility after closing all the apps that communicate with the camera, and then turn on the camera again."&lt;/P&gt;&lt;P&gt;I am unaware of any apps that I have that would be trying to communicate with my camera in the background. Anyone know what's going on? Thanks in advance.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It is a problem that seems to have developed with the 13.4.1 update to Ventura.&lt;/P&gt;&lt;P&gt;I was able to sync my 1D X MkIII prior to that update and now I get that error.&lt;/P&gt;&lt;P&gt;If you are only looking to download images you could get a card reader. If you are wanting the tethering features then we have to wait for Apple to fix the problem.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 18:19:40 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428099#M16324</guid>
      <dc:creator>jrhoffman75</dc:creator>
      <dc:date>2023-07-16T18:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428110#M16325</link>
      <description>&lt;P&gt;This is appears to be a setting only on Mac's with the M1/M2 chip. I have an Intel Mac and don't have the setting. Good suggestion though. Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 18:49:23 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428110#M16325</guid>
      <dc:creator>tjdowling</dc:creator>
      <dc:date>2023-07-16T18:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428138#M16327</link>
      <description>&lt;P&gt;Having the same exact issue. It's looking like it's a MacOS problem which hopefully gets addressed soon.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 21:30:19 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428138#M16327</guid>
      <dc:creator>cperugini</dc:creator>
      <dc:date>2023-07-16T21:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428139#M16328</link>
      <description>&lt;P&gt;Sounds like either Apple or Canon would need to provide the solution via an update of some kind and I'm not banking on the speed of Canon updates...&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 21:31:19 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/428139#M16328</guid>
      <dc:creator>cperugini</dc:creator>
      <dc:date>2023-07-16T21:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437401#M17117</link>
      <description>&lt;P&gt;So why do i have to wait for apple to fix it instead of canon just updating their broken program? Don't understand that... yes, maybe it's apples fault, that it's no longer working but what stops canon from fixing it?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 19:32:54 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437401#M17117</guid>
      <dc:creator>sanachrisbumbi</dc:creator>
      <dc:date>2023-09-21T19:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437413#M17118</link>
      <description>&lt;P&gt;I have often wondered why Apple keeps breaking other programs with every OS update?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 21:30:58 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437413#M17118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-21T21:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437772#M17137</link>
      <description>&lt;P&gt;I'm running macOS 13.6 now. Everything is working just fine with EOS Utility.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Sep 2023 16:38:36 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437772#M17137</guid>
      <dc:creator>tjdowling</dc:creator>
      <dc:date>2023-09-24T16:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437778#M17140</link>
      <description>&lt;P&gt;Good to hear it works with macOS 13.6. Thanks for updating us on your results.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Sep 2023 16:55:06 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437778#M17140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-24T16:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437785#M17141</link>
      <description>&lt;P&gt;Unfortunately, still not working for me. Apple Image Capture sees the camera. EOSU3 still generates the can't connect error message.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Sep 2023 17:16:03 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/437785#M17141</guid>
      <dc:creator>jrhoffman75</dc:creator>
      <dc:date>2023-09-24T17:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438110#M17159</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.usa.canon.com/t5/user/viewprofilepage/user-id/1093"&gt;@jrhoffman75&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Unfortunately, still not working for me. Apple Image Capture sees the camera. EOSU3 still generates the can't connect error message.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Same for me... (&lt;SPAN&gt;running macOS 13.6)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2023-09-26 à 14.43.36.png" style="width: 999px;"&gt;&lt;img src="https://community.usa.canon.com/t5/image/serverpage/image-id/45406i4E54479A127C0F9E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2023-09-26 à 14.43.36.png" alt="Capture d’écran 2023-09-26 à 14.43.36.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 12:47:29 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438110#M17159</guid>
      <dc:creator>thomas83</dc:creator>
      <dc:date>2023-09-26T12:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438120#M17161</link>
      <description>&lt;P&gt;Maybe we will get a fix today when Sonoma is released.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 13:15:53 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438120#M17161</guid>
      <dc:creator>jrhoffman75</dc:creator>
      <dc:date>2023-09-26T13:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble Connecting EOS R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438225#M17170</link>
      <description>&lt;P&gt;I had the same problem.&lt;/P&gt;&lt;P&gt;I upgraded to Mac OS 14.0 (Sonoma) which did not solve the problem.&lt;/P&gt;&lt;P&gt;I was able to solve the problem as follows:&lt;/P&gt;&lt;P&gt;1. Make sure that the Wifi connection is disabled on the camera.&lt;/P&gt;&lt;P&gt;2. Shut down all applications which communicate with the camera such as Digital Photo Professional 4 and EOS utility (original) so that only EOS utility 3 is running.&lt;/P&gt;&lt;P&gt;3. Turn off the Wifi on the Mac.&lt;/P&gt;&lt;P&gt;4. Plug in the camera, open EOS utility 3 then turn on the camera.&lt;/P&gt;&lt;P&gt;Hope that helps for everyone else.&lt;/P&gt;&lt;P&gt;The need to disable wifi is frustrating.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 18:45:50 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438225#M17170</guid>
      <dc:creator>jamesu</dc:creator>
      <dc:date>2023-09-26T18:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Connect R8 to EOS Utility on a Mac</title>
      <link>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438244#M17171</link>
      <description>&lt;P&gt;The solution is to go to Settings -&amp;gt; Privacy and Security -&amp;gt; Camera and then disable all the apps that are given access to camera.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="husrona_0-1695759405405.png" style="width: 400px;"&gt;&lt;img src="https://community.usa.canon.com/t5/image/serverpage/image-id/45435i00B0EE1A5BB63A94/image-size/medium?v=v2&amp;amp;px=400" role="button" title="husrona_0-1695759405405.png" alt="husrona_0-1695759405405.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;After this EOS Utility will start without an issue.&lt;/P&gt;&lt;P&gt;Best,&lt;BR /&gt;Hus Rona&lt;/P&gt;&lt;P&gt;EOS 5D Mark III&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 20:17:39 GMT</pubDate>
      <guid>https://community.usa.canon.com/t5/Camera-Software/Trouble-Connecting-EOS-R8-to-EOS-Utility-on-a-Mac/m-p/438244#M17171</guid>
      <dc:creator>husrona</dc:creator>
      <dc:date>2023-09-26T20:17:39Z</dc:date>
    </item>
  </channel>
</rss>

