PowerShell – Sandbox Testing App Attach Apps – No WVD Required

Use these steps to test your MSIX VHD, without having to use Windows Virtual Desktop. It’s a great way to make sure your MSIX package and MSIX VHD are working properly, and simulate the installation of an app attach application.   Microsoft Magic The magic behind app attach is a mounted VHD (Mount-Diskimage), a file Read More …

Intune – Set up Power Management

#1 Access Intune > click Device configuration > click Profiles > click Create profile button #2 Select Platform: Windows 10 or later > click Profile: choose Custom > click Create button > Enter Name and Description  > In Custom OMA-URI Settings, click Add.   #3 Add each of these:   Name: DisplayOffTimeoutOnBattery OMA-URI: ./Device/Vendor/MSFT/Policy/Config/Power/DisplayOffTimeoutOnBattery Data Read More …

Azure – Intune – Disable Antivirus Notification

This is how you get rid of the AV toast notification from the Windows Security Center.   Create Policy Log into Azure Microsoft Intune > Device configuration > Profiles   Configure the Profile Name: Disable Antivirus Notification Platform: Windows 10 and later Profile type: Endpoint protection Select ‘Settings Configure’   Select ‘Microsoft Defender Security Center’ Read More …

Azure – PowerShell – Update Device Registered User

In Azure, you have the ability to update the registered user of a device. This is how you do it using PowerShell.   Notes Get-AzureADUser Get-AzureADDevice Get-AzureADDeviceRegisteredOwner Add-AzureADDeviceRegisteredOwner Remove-AzureADDeviceRegisteredOwner Get-AzureADDeviceRegisteredOwner Substring method   Further Testing   tags: PowerShell, Azure registered user, change registered user in Azure Intune, MrNetTek

Azure – Intune – Deploy Apple iTunes Package

Deploy Apple iTunes using Intune.   Steps Step 1 – Create C:\intune\iTunes folder. Step 2 – Extract and copy iTunes setup files to the C:\intune\iTunes folder. Step 3 – Create _Intune.cmd in iTunes folder containing the following code: cd “%~dp0” msiexec.exe /i “AppleApplicationSupport.msi” /qn /norestart msiexec.exe /i “AppleApplicationSupport64.msi” /qn /norestart msiexec.exe /i “AppleMobileDeviceSupport64.msi” /qn /norestart msiexec.exe /i “Bonjour64.msi” /qn /norestart Read More …