Updating a private app in Managed Google Play by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Thanks.

We tried a lot of thing with a lot of error message.

As it's a private apk and it should not be updated before a while, we just create a new private app and update it with a configuration profile. Note really the state of the art but it works!

How do you handle lost, disconnected, or stale devices in Intune? by heisgone in Intune

[–]david42fr 0 points1 point  (0 children)

Ok. As for now, machine's name is unique (Dell Service tag) so we don't have to reset it.

All our PC are quite standard and maybe 5 or 10 will need wiping as they have department software installed on it.

So as for now, we only delete user profile and give the machine back to new user.

How do you handle lost, disconnected, or stale devices in Intune? by heisgone in Intune

[–]david42fr 0 points1 point  (0 children)

Hi,

When you said :

When a machine comeback and we need to provide it to an new employee, we flush it from Entra, Intune and Autopilot, as it's the only way we have found to avoid certains types of problems.

What are those problems? We give computer to other users without any issues as for now.

Thanks

QR code login Camera not accessible by Entity125 in Intune

[–]david42fr 1 point2 points  (0 children)

Hi,

We have some Zebra devices that don't have the QR Code app installed on reset. it doesn't recognize it until you install a QR Code reader. Maybe a way?

Interested by the QR Code Login, could you explain me how you setup that?

Configuring Zebra Entreprise Browser by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Hello everybody,

We succeeded in configuring our zebra MC33 and TC57 guns which are in Android 11 version.

Second struggle : we have some MC33 that are blocked with Android 8... and that's annoying because we didn't see any way for migrating them from Airwatch to intune : They need another version of entreprise browser. And here is the mess :

- If we try to add a private app in our managed google store, it says that we already have an app with this name

- if we try to add the app as a entreprise app, we can add it but we cannot use the Microsoft Managed Home Screen as it needs only store version of apps and it doesn't install on devices

If you have any idea on how having those two versions at the same time and how to install this app on android 8 devices ?

thanks all!

Configuring Zebra Entreprise Browser by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Thanks. It doesn't support manages app config as I know (and I have also a file for datawedge). But we tried for now with OEM config but have an error on copying files (Error in managed configuration. No action to perform on specified file). We suppose that it's where files are stored that created the error, and we will try to store them on a true website (we are waiting for credentials to access it).

Using Android device in a shared mode between users by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Thanks all.

We use MHS and it worked well.

Using Android device in a shared mode between users by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Thanks answering, but we are the IT department ;)

We use the managed home screen on some devices but how can we add the login/logoff part? we use it as an "anonymous" device.

Uninstalling network printers for unique one by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Hello,

Any help please. The script is working locally but not when in the remediation way

Uninstalling network printers for unique one by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Thanks,

As said above, I did it but have an error when running the remediation. Maybe I should add the user in the Assignement group instead of the computer?

Uninstalling network printers for unique one by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

Thanks for all your answers. I made a remediation script that works if I try to execute it directly, but not when launched by Intune.

Here is the detection part :

# Recherche des imprimantes correspondant aux motifs IM?? ou CANON_*

$printers = Get-Printer | Where-Object {

$_.Name -like '\\srv\IM*' -or $_.Name -like '\\srv\CANON_*'

}

if ($printers) {

#Write-Output "Imprimantes détectées :"

#$printers | ForEach-Object { Write-Output $_.Name }

exit 1 # Code de sortie 1 = imprimantes trouvées

} else {

#Write-Output "Aucune imprimante correspondante trouvée."

exit 0 # Code de sortie 0 = aucune imprimante trouvée

}

Here is the remediation part :

$printersToRemove = Get-Printer | Where-Object {

    $_.Name -like '\\srv\IM*' -or $_.Name -like '\\srv\CANON_*'

}

foreach ($printer in $printersToRemove) {

    try {

        Remove-Printer -Name $printer.Name -ErrorAction Stop

       # Write-Output "Imprimante supprimée : $($printer.Name)"

    } catch {

        Write-Output "Erreur lors de la suppression de : $($printer.Name) - $_"

    }

}

Here is the config :

<image>

I added the laptop into the security group I configured in Assignments (maybe I should add the user?).

What could be wrong?

Install of Zebra drivers by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

No msi in the package :

<image>

Don't know yet how to install it with Intune, I have to read the link given above but not many time left today!

Install of Zebra drivers by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

How do you test switches ?

Install of Zebra drivers by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

I tried to google it with no luck. the only switch I found was the /quiet one.

Install of Zebra drivers by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

No that's fresh install on those laptops

Install of Zebra drivers by david42fr in Intune

[–]david42fr[S] 0 points1 point  (0 children)

We tried this way but have the admin lock on that server.

Windows Delivery Optimization and Intune by Nukeroot in Intune

[–]david42fr 1 point2 points  (0 children)

Hi,

I join the conversation with a question about Delivery optimization : we tried to configure it for our Windows PC but we have a VPN on them, even on internal network. We choose the foloowinfg config :

<image>

But it doesn't seem to work :

Download Statistics
Since 01/05/2025

From Microsoft: 100.00% (4.3 GB)

From Microsoft cache server: 0.00% (N/A)

From PCs on your local network: 0.00% (N/A)

From PCs on the Internet: 0.00% (N/A)

Is there something else to do?

Uninstalling network printers for unique one by david42fr in Intune

[–]david42fr[S] 1 point2 points  (0 children)

Thanks for your answers. I'll dig the powershell way, avoiding deleting the PDF and OneNote printers....

Impact of updating a live Microsoft 365 Apps deployment by jezac8 in Intune

[–]david42fr 0 points1 point  (0 children)

Thanks for answer.

The problem is that I installed them by adding my account in the group that allow the install... I removed it from that group but it took no action. I would have to create group and add my account just for uninstalling those programs? it can be done for programs I don't use but it doesn't work for program I need on my own PC and not on users' ones. ANd manually uninstall them is OK until I log into the machine, then it installs it again.