Deploy Google Chrome for macOS - Manage macOS in Intune (8/10)

Поділитися
Вставка
  • Опубліковано 20 чер 2023
  • In this video, we first package Google Chrome from PKG format and deploy to our enrolled macOS device in Intune.
    The second part, we do a configuration profile to enroll the Chrome Browser to Google Chrome Browser Cloud Management.
    Configuration File (change to your Token else you will register in mine :) )
    Angeled Brackets are not allowed in UA-cam descriptions, so change the ⋖ ⋗ to real brackets :)
    ⋖key⋗CloudManagementEnrollmentToken⋖/key ⋗
    ⋖string⋗97b6a475-65fe-46f8-af6a-2812a11d3af7⋖/string ⋗
    Links:
    Download Google Chrome for mac: chromeenterprise.google/brows...
    Plist issue in Intune/fix: support.google.com/chrome/a/a...
    Admin Google:
    admin.google.com
    Enroll browsers with Microsoft Intune (macOS): support.google.com/chrome/a/a...
    Manage Google Chrome with Chrome Cloud Browser Management: • Manage Google Chrome w...
    Full Playlist: • Learn to master and ma...

КОМЕНТАРІ • 11

  • @3143iamsam
    @3143iamsam 10 місяців тому +2

    Thank you John! Another great video series!

  • @ibrahimabdeltawab6418
    @ibrahimabdeltawab6418 11 місяців тому +1

    Great! Thanks so much ❤

  • @MrZ____
    @MrZ____ 5 місяців тому +1

    My Goodness find you Vita Doctrina, anyway to upload images to the mac device using shell script ?

    • @IntuneVitaDoctrina
      @IntuneVitaDoctrina  5 місяців тому

      Hi, image like an DMG image or PKG file? if you don't want to use the Web Console, you can do it through MS Graph from a shell script, not that easy but doable if you spend a lot of time on it.

    • @MrZ____
      @MrZ____ 5 місяців тому +1

      @@IntuneVitaDoctrina Hi Thanks for reply your videos are rocking in intune querys , in my case there is no blob storage, like the same windows app like wish to push the image as per config setup , any possible

    • @IntuneVitaDoctrina
      @IntuneVitaDoctrina  5 місяців тому +1

      image = picture file? like background.jpg? if so package it as an DMG, push the image to like /Users/Shared/backgrounds or alike and then have the config reference that LOCAL path that the package has copied the file to, that is how I solve things like that without any need for a blob storage

  • @AmitKumarVerma-l3d
    @AmitKumarVerma-l3d 20 днів тому +1

    Hey buddy, I have followed ur video to eroll MacOS to Intune however I need to set a naming convention for Mac devices. Kindly suggest the easiest way to do this.

    • @IntuneVitaDoctrina
      @IntuneVitaDoctrina  20 днів тому +1

      Hey buddy, do you have a naming convention that can be scripted? such as me I have JBN-[SerialNumber] so JBN-C02QSD34FE etc.. if so I got a script I can share that after enrolled, run this script and rename the device.

    • @AmitKumarVerma-l3d
      @AmitKumarVerma-l3d 20 днів тому +1

      @@IntuneVitaDoctrina please share the script. I will try

    • @IntuneVitaDoctrina
      @IntuneVitaDoctrina  20 днів тому

      cool, try this but change the JBN- to your prefix of course :)
      #!/bin/bash
      # Retrieve the serial number of the Mac
      serial_number=$(system_profiler SPHardwareDataType | awk '/Serial Number/ {print $4}')
      # Generate the new names with the prefix "JBN-" followed by the serial number
      new_hostname="JBN-${serial_number}"
      new_local_hostname="${new_hostname}"
      new_computer_name="${new_hostname}"
      # Set the new names for HostName, LocalHostName, and ComputerName
      sudo scutil --set HostName "${new_hostname}"
      sudo scutil --set LocalHostName "${new_local_hostname}"
      sudo scutil --set ComputerName "${new_computer_name}"
      echo "Mac names updated successfully."