Posted on 09-17-2015 11:50 AM
Tried to image a machine a machine (10.10.x, Casper 9.8) and when the machine reboots and goes into the "The imaging process is finishing installing software" screen, it sits there for a bit, and then that screen clears away and a popup window opens "A new network interface has been detected - The "Bluetooth PAN" network interface has not been setup yet....and it breaks out of the imaging process. Didn't have that problem yesterday when I was working on this, but today after updating to 9.8 I am.
Posted on 09-17-2015 12:23 PM
I am starting to see this too myself.
Posted on 09-17-2015 12:35 PM
Sorry, just to clarify: I am seeing this myself but on 10.10.5 with Casper 9.73. I'm seeing this on two MacBook Pros (2012 and 2013). Both having TB-Ethernet adapters.
Posted on 09-17-2015 12:37 PM
okedoke.
i'm trying a command from here
Posted on 09-17-2015 01:27 PM
I'm already doing that myself. But this is a false alarm. I thought that screen was holding up the network but it turned out to be something else entirely causing it. I do see that pop-up though, but it's not causing problems here.
Posted on 09-17-2015 01:29 PM
what was the problem you're seeing? maybe I'm chasing the wrong thing.
Posted on 09-17-2015 01:44 PM
Well the first boot process I use is very different from what others are using. I rely on a script first boot script that downloads software updates, some other custom settings are setting for system preferences, recon and user assignment info is uploaded to the JSS and then proceeds to run jamf policy to run all the policies relevant to the computer. The problem I ran into was that it was taking forever to start running jamf policy. Well, I looked at the logs I generate and it was taking a long time to download the latest Apple updates. It must be either our connection or something happening on Apple's end when it comes to these particular updates. Anyways, that's what I said this is a false alarm.
Posted on 09-17-2015 01:56 PM
i see. downloading stuff from the MAS is taking forever today. probably under load from IOS updates.
thank you for the tip though, I will try to look for that.
Posted on 09-17-2015 02:26 PM
... I updated my casper imaging to 9.8 (from 9.73) and it seemed to go through now. I will have to do more testing though.
Posted on 11-18-2015 02:47 PM
I'm seeing the same thing here. 9.81 Imaging with a fairly recent 10.10.5 image. I suspect that the image I'm using may need to be updated for use on this hardware. I'll test and get back to you.
Posted on 03-29-2017 01:26 PM
I just started seeing this error from the original posting. Imaging version 9.98 & 10.12.4 but works fine with 10.12.3. It seems like when the bluetooth detection pops up, the imaging full screen goes away but the rest of the imaging process continues on. The machine auto reboots once the apps from my imaging process finish installing. Was there another work around for this? I wonder if anyone else has tried the process out since 10.12.4 has been released.
Posted on 04-20-2017 07:38 AM
I am seeing this too.
Imaging does complete.
Using 9.98 (cloud) & 10.12.4 image.
Posted on 05-26-2017 07:03 AM
has anyone found a solution to this?
Posted on 05-30-2017 09:28 AM
though I haven't had the issue since a much older version of casper imaging, I believe I made a package that contained this as a postinstall script, and had it run pretty early in the workflow.
#!/bin/bash
/usr/sbin/networksetup -createlocation Default populate
/usr/sbin/networksetup -switchtolocation Default
/usr/sbin/networksetup -deletelocation Automatic
Posted on 06-07-2017 09:41 AM
thanks @grepoli I'll consider adding this as well. For the meantime, I added a pkg with a 1 priority in the workflow that invokes the jamfhelper in a postflight script as described here
#!/bin/sh
## postflight
##
## Not supported for flat packages.
pathToScript=$0
pathToPackage=$1
targetLocation=$2
targetVolume=$3
## Lock down the login window
/usr/sbin/jamf launchJAMFHelper -path '/Library/Application Support/JAMF/bin/jamfHelper.app'