Mac – Intune/SCCM – Sign PKG, Wrap PKG for Deployment

Create a Signed Package {{{ Required for Intune  }}} [devuser@mac-lab1 Downloads % sudo productsign –sign “Developer ID Installer: Eddie Jackson (YourAppleID-DDD3V2X8N)” Skype-8.83-unsigned.pkg Skype-8.83-signed.pkg Password: {enter password} productsign: using timestamp authority for signature productsign: signing product with identity “Developer ID Installer: Eddie Jackson (YourAppleID-DDD3V2X8N)” from keychain /Users/devuser/Library/Keychains/login.keychain-db productsign: adding certificate “Developer ID Certification Authority” productsign: adding Read More …

SCCM – Exception from HRESULT: 0x80070005 Console Error

ERROR [1, PID:19080][06/23/2022 11:20:56] :Insufficient privilege to connect, error: ‘Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))’\r\nSystem.UnauthorizedAccessException\r\nAccess is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))\r\n at System.Management.ThreadDispatch.Start() SOLUTION This has to do with a mismatched console version, with site version. Meaning, the site and any secondary console install versions need to match. Install the same console Read More …

SCCM Agent: CcmSetup failed with error code 0x80070643

I ran into an issue where I could not install the CM agent. This was the fix. Repair WMI Repair MOF Repair system files Reset Windows Updates   CCMSetup.log Errors File C:\WINDOWS\ccmsetup\{1990B09E-077D-46F9-B575-2AB675E44670}\client.msi installation failed. Error text: ExitCode: 1603 Action: SmsClientInstallSucceeded. ErrorMessages: An error occurred during the installation of assembly ‘Microsoft.ConfigurationManager.WinRTProvider.dll,Version=”5.0.0.0″,Culture=”neutral”,PublicKeyToken=”31bf3856ad364e35″‘. Please refer to Help and Read More …

SCCM – WQL – Return PKI-Client Certificate Type

To return the Client Certificate type (PKI or Self-Signed), use this code in the CM Console: Go to CM Console > Monitoring > Overview > Queries > Create Query Code SELECT DISTINCT SMS_R_System.Name, SMS_CombinedDeviceResources.UserName, SMS_CombinedDeviceResources.Domain, SMS_G_System_OPERATING_SYSTEM.BuildNumber, SMS_CombinedDeviceResources.ClientCertType FROM SMS_CombinedDeviceResources INNER JOIN SMS_R_System ON SMS_R_System.ResourceID = SMS_CombinedDeviceResources.ResourceID INNER JOIN SMS_G_System_OPERATING_SYSTEM ON SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_CombinedDeviceResources.ResourceID   Screenshot

Mac – CMAppUtil – failed with 80004005

Command sudo ./CMAppUtil -c “VLC-3.0.11.1.dmg” -o ./ Error VLC.app/Contents/Info.plist file failed with error The file ‚ÄúInfo.plist‚Äù couldn‚Äôt be opened using text encoding Unicode (UTF-8). ParseDirectory failed with 80004005.   Solution Add ‘-s’ to skip parse detection Command sudo ./CMAppUtil -s -c “VLC-3.0.11.1.dmg” -o ./     Notes Another method of getting around the error: Create Read More …