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

Recent posts

#1
Welcome to EducomIQ, your ultimate destination for top-notch study materials tailored for competitive entrance exams. At Educomiq, we understand the aspirations of aspirants like you aiming for success in exams such as IAS, PCS, CLAT, SSC, Banking, and UGC CSIR NET. Our platform offers meticulously curated study materials sourced from the best coaching institutes, ensuring comprehensive coverage of exam syllabus.

Main Content Highlights:

•   Study materials for IAS, PCS, CLAT, SSC, Banking, and UGC CSIR NET exams.
•   Content sourced from top coaching institutes.
•   Comprehensive coverage of exam syllabus.
•   Tailored resources to meet the needs of aspirants.
   
Empower your exam preparation journey with Educomiq – where excellence meets accessibility.

Social Links :-
https://twitter.com/educomiq/
https://www.facebook.com/Eduiqnotes/
https://www.facebook.com/studynotes4ias/
https://www.instagram.com/upscstudymaterial/

#2
You can upload the response.varfile to a shared network location accessible by all machines where PMPC will install SoapUI. In the PMPC application settings for SoapUI, locate the installation command line field. Instead of the original command, enter the following:
SoapUI-x64-5.7.0.exe -q -overwrite -varfile "\\server\share\path\to\response.varfile"Replace `\\server\share\path\to` with the actual network path to your `response.varfile`.
#3
After updating Microsoft Visual C++ 2015-2022 to most recent update Microsoft Visual C++ 2015-2022 Redistributable (x86) and (64x) 14.38.33135.0, I continue to be notified that the following versions (shown below) are out of date, without the option to update them in Patch My PC.

Microsoft Visual C++ 2015-2022 Redistributable (x64) - 14.38.33130  -  14.38.33130.0
Microsoft Visual C++ 2015-2022 Redistributable (x86) - 14.38.33130  -  14.38.33130.0


How can I remedy this error?

Thanks for your help.
#4
Looks like they reverted?  Got this on last night's sync:

Downloaded Hash [0K1ab9d40nkYni8aAK+DRd5u6aU=] Catalog Hash [vf7Bt7gvdyd8jx1AmIPpq9Hd6b0=]
#5
Perfect. I will check with the BI team.

Thank you!
#6
Hello Eric,

We are a bit limited in terms of what we can provide from an Intune reporting perspective. You can use the following PowerBI report in conjunction with the App. Manager Utility to get some general reporting information:

https://patchmypc.com/power-bi-reports-for-microsoft-intune-third-party-updates

Beyond that, we are currently in the process of developing/enhancing our Advanced Insights reporting solution to work with the Intune data set. More news on that will be released later this year.
#7
Hello!

Is there a way to have an overview of all deployed PMPC updates from Intune ?

It's kind of annoying to check the status of each and every deployed apps. Custom Workbook in Azure maybe ?

Thanks
-Eric

#8
Furthermore; it looks like you were getting an error uninstalling an MSI because Windows Installer was looking for the cached MSI in order to perform the uninstall. So it wasn't a matter of where the PSADT Remove-MsiApplications function was looking for the MSI, it's more that Windows Installer itself was looking for it. When this happens, you can update the sourcelist for the app as above.
#9
Hi,

Firstly, if this is an SCCM application, then SCCM has native functionality to manage the sourcelist; just browse to the MSI file via the bottom of the Programs tab of the Deployment Type properties. The Patch My PC Publisher does not fill this in, which is something I will raise.

If you want to add/replace the SourceList via PSADT though, there is a community extension for it here that you might find useful:

https://discourse.psappdeploytoolkit.com/t/msi-sourcelist-and-psadt/879

Otherwise, for a more manual approach using the registry, you can get the ProductCode of an MSI application via PSADT (which looks at the uninstall keys like HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall):

$ProductCode = (Get-InstalledApplication -Name 'Acrobat').ProductCode

Or native PowerShell:

$ProductCode = (Get-Package -Provider MSI | Where Name -match 'Acrobat').FastPackageReference

Then you will need to convert that GUID to a new format:

$CompressedGuid = -join (($ProductCode | Select-String -Pattern '^\{?(.{8})-(.{4})-(.{4})-(.{2})(.{2})-(.{2})(.{2})(.{2})(.{2})(.{2})(.{2})\}?$' -AllMatches).Matches.Groups[1..11].Value | ForEach-Object { $CharArray = $_.ToCharArray(); [System.Array]::Reverse($CharArray); -join $CharArray })

Then you can look up the reg key "HKLM\SOFTWARE\Classes\Installer\Products\$CompressedGuid\SourceList".
#10
Hi,
I was wondering how these actions are performed when calling for RemoveMSIApplication in PADT.
Reason I ask, is that I'm trying to change the value returned as LastUsedSource to point it to a different location.
Thanks in advance!
Br
Samuel