• Welcome to Support Forum: Get Support for Patch My PC Products and Services.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - JoeH

#2
Thanks Jake.  We only have 4 blocking apps in our ESP profile, only one of which (Office 365) takes more than a few seconds to install.

The issue seems to be that Intune runs the detection for every app assigned as required to that computer/user, whether or not it's on the blocking app list.  With so many apps assigned as required to All Users, Intune just takes forever to run detection methods, in this case the PMPC PowerShell script, for all those apps.  Since you can't specify the order that required apps are installed, if Office 365 happens to be the 59th out of 60 apps in Intune's random app detection order, it won't trigger the Office 365 install until it's iterated through the detections for the other 58.
That's an Intune issue and not PMPC, but I figured someone may have found a better way to handle that situation.
#3
We currently have a large number of application updates assigned to All Users in Intune via PMPC.  Unfortunately, assigning to All Users is causing the Autopilot process to take an extremely long time during the Apps portion of Autopilot due to the large number of application detection checks.  Is there a better way to handle update assignments instead of using All Users or All Devices?
#4
Am I misremembering, or did I read somewhere that the PMPC team had come up with a way to only show the true "bitness" of an application in the "scan installed applications that are also supported in our catalog" with Intune?  Currently, that scan feature shows a duplicate number for both x86 & x64, even if no x86 version is installed.
#5
For what it's worth, I have a PowerShell script that runs via Post Script in PMPC which disables the built-in autoupdater.

ForEach ($user in (Get-ChildItem -Path "C:\Users")) {
    $jsonPath = "C:\Users\" + $user.Name + "\AppData\Roaming\Code\User\settings.json"
    If (Test-Path "$jsonPath") {
        $json = Get-Content "$jsonPath" -Raw | ConvertFrom-Json
        $json | Add-Member -Force -MemberType NoteProperty -Name "update.mode" -Value "none"
        $json | ConvertTo-Json | Out-File "$jsonPath" -Encoding utf8
    }
}
#6
Microsoft has just released a setting that allows users to uninstall applications from Company Portal in Intune.  It is a per application setting, so I'm assuming that it will need to be added as a setting to the PMPC console.  Any idea when that might happen?

https://techcommunity.microsoft.com/t5/microsoft-intune-blog/what-s-new-in-microsoft-intune-2307-july-edition/ba-p/3884051
#7
Thanks Andrew.  I finally got it working, though not sure what changed.  Anyway, for others who come across this:

In Intune Apps, choose the MUI version.  Choose Modify command line, and enter LANG_LIST=<language code>  For example, to install US English and Spanish, it would be LANG_LIST=en_US,es_ES.  Supposedly LANG_LIST=ALL will install all languages, if you have a need for that.

These are the supported languages, according to the MSI file table as of the date I posted this:
en_US,ca_ES,eu_ES,bg_BG,zh_CN,zh_TW,cs_CZ,da_DK,de_DE,es_ES,et_ET,fr_FR,hr_HR,hu_HU,it_IT,ja_JP,ko_KR,lt_LT,lv_LV,nl_NL,nb_NO,pl_PL,pt_BR,ro_RO,ru_RU,sk_SK,sl_SI,fi_FI,sv_SE,tr_TR,uk_UA
#8
Has anyone figured out how to install additional languages for the Adobe Acrobat Reader DC Continuous MUI (x64) app in PatchMyPC?  I've tried a command-line parameter of LANG_LIST=es_ES and LANG_LIST=en_US,es_ES and neither installs anything but the default English.

Strangely enough, if set Application Language to "Choose at application startup" in Acrobat Reader itself, there's
no dialog allowing you to choose another language when you restart it.
#9
Does PatchMyPC have any way to set Intune dependencies in the Publisher app?  I didn't see any option in the right-click menu.  If not, if I set them in Intune directly will they carry over for each app update?
#10
Notepad++ and Acrobat Reader auto update themselves by default, and I see the option to disable the auto update feature is greyed out for those products in the PMPC console.  I'm assuming there's some issue that prevents PMPC from being able to do disable it.  Does anyone have a script or something they use to disable the auto-update features in those apps?
#11
Just getting started on this myself.  If you go to updates in the PMPC console, right click on the Adobe Reader product you're having issues with and choose "Show package info", is there anything on the command-line to block the installer from rebooting?  I'm working with Intune, so it may be slightly different for SCCM.
#12
When did new Intune related features start requiring an Enterprise Plus license?  I had gotten approval to purchase the Intune version since we don't use Config Manager, and now I have to go back and get approval for a higher amount.   >:(