Event details
Join us for a special Ask Microsoft Anything (AMA) live stream on Windows manageability! Our engineering and product teams will be answering all your questions around windows enrollment, updates, configuration and application deployment.
This is a great opportunity to learn from Microsoft experts and your peers.
|
We hope you enjoyed this edition of Tech Community Live! Please take our short survey and let us know what you thought! |
67 Comments
- lalanc01Iron ContributorHow often are Win32 apps detection methods evaluated. Is there a way to force it when retrying to install an application that failed the 1st time. Thks
- SeMeDeIron ContributorIs there maybee a blog or something other writen down for the change Bryan speaked of (7d->24h) which I could point my collegues too?
- Steven-HBrass ContributorBased on my experience once a day seems correct. It also checks again when the device restarts, a device resyncs, and when an available app is requested. However, there seems to be a cool-down of unknown duration for restarts and resyncs as they do not always kick off the installation of missing apps.
- treestryderIron ContributorWe are moving away from on-prem AD and Configuration Manager to AAD and Intune. One of our primary problems has been finding "Autopilot Ready" or "Drop-ship-able" devices. Thought we were having success with Dell, until we wiped one of their PCs and found they had injected an old driver for their RAID controller. My question is, is there a certification or other way to find or be assured a device is ready for Autopilot / modern device management?
- lalanc01Iron ContributorWhen can we except to be able to make Win32 apps available for devices? Thks
- lalanc01Iron ContributorWhen updating a script for custom compliance that is already used in a compliance policy, will all devices start to evaluate the compliancy right away, kinda like if we would edit a current compliance policy. Thks
- Heather_Poulsen
Community Manager
Welcome to Tech Community Live: Endpoint Manager edition and the Windows management AMA. Let's get started! Post your questions in the Comments. We will be answering questions in the live stream—and others will be answering here in the chat.
- GianlucaSBBrass Contributor
- When is the Intune team going to allow us to configure desktop background with custom pictures and not just by web links?
- Hybrid AD joined (Autopilot) Environment: we got two different identities on Endpoint Manager and AAD for the same device: Why is that and who is doing what (i.e to which of the two apps are targeted to, etc..)
- In app management, deploying registry keys as a Win32 app for a 64 bit apps doesn't work as it looks into WOW6432Node on the registry. There is a trick to bypass that, but I was wondering whether there are plans to make that out of the box.
(Numbered/formatted for easy reference by your friendly neighborhood Community Manager.)
- jdburlingCopper Contributor
Are there any plans to natively (or more easily) manage registry keys?
- Steven-HBrass ContributorTo add on to the why. The reason I would want to manage registry keys natively is that it is sometimes the only way to standardize configuration of applications—the app does not have ADMX templates to ingest or a configuration tool or things of that nature. It would be nice to set these in a policy/configuration template so that you could mange application configuration in the same style you manage OS configuration.
- timmahwCopper Contributor
"How do I map drives now??" is an extremely common question with several community-authored hacky solutions that seek to mirror GP behavior. Is the continued lack of native drive map policies a technical challenge, strategic decision, neither?
- sooonerCopper ContributorWe use proactive remediations.
- Steven-HBrass Contributor
I use Win32 app in user context to deploy a Network Location (not a letter-mapped drive). I created the solution developed before pro-active remediations existed as a feature. I would love to have this built into a configuration template of some kind or shortcut/drive/network location deployment type.
<# .SYNOPSIS Creates a proper Network Location .DESCRIPTION This script will create/re-create a 'true' network location as opposed to a shortcut sitting within the Network Location's directory .EXAMPLE PS C:\> <name_of_script>.ps1 -Name MyShortcut -Path \\server\folder -IconIndex 4 Creates a Network Location with the name of 'MyShortcut' pointing to \\server\folder with an optional change to the icon .PARAMETER Name String that will become the network location's display name. Mandatory. .PARAMETER Path String containing the UNC or HTTP path to the resource. Mandatory. .PARAMETER IconIndex Optional integer that specifies which Shell32.dll icon will be used for the shortcut. Default value is 4 (Folder Icon) .OUTPUTS A network shortcut .NOTES Will pave over a shortcut with the same name by deleting it Execute in the context of the user who needs the shortcut. #> [CmdletBinding()] param ( # Display Name for Network Location [Parameter(Mandatory = $true)] [ValidateNotNullorEmpty()] [string] $Name, # Network Location Path [Parameter(Mandatory = $true)] [ValidateNotNullorEmpty()] [string] $Path, # Shell32 Icon Index [Parameter(Mandatory = $false)] [ValidateRange(0, 328)] [int] $IconIndex = 4 ) # Paths $NetworkShortcutsRoot = "$env:APPDATA\Microsoft\Windows\Network Shortcuts" $NetworkShortcutPath = (Join-Path -Path $NetworkShortcutsRoot -ChildPath $Name) # desktop.ini content $IniFileContent = '[.ShellClassInfo] CLSID2={0AFACED1-E828-11D1-9187-B532F1E9575D} Flags=2 ' # Delete existing shortcut to allow 'updating' if (Test-Path -Path $NetworkShortcutPath) { Remove-Item -Path $NetworkShortcutPath -Recurse } # Create folder and set required read-only attribute New-Item -Path $NetworkShortcutPath -ItemType Directory (Get-Item -Path $NetworkShortcutPath).Attributes = 'ReadOnly', 'Directory' # Create target.lnk $WScriptShell = New-Object -ComObject WScript.Shell $Shortcut = $WScriptShell.CreateShortcut("$NetworkShortcutPath\target.lnk") $Shortcut.TargetPath = $Path $Shortcut.IconLocation = "$env:windir\System32\SHELL32.dll,$IconIndex" $Shortcut.Save() # Create desktop.ini New-Item -Path $NetworkShortcutPath -Name 'desktop.ini' -ItemType File -Value $IniFileContent
- Phil_M905
Microsoft
- Can we provide better event logging and error reporting for Autopilot through the console?
- Can we show when there are configuration profile conflicts?
- I would like to be able to assign apps to Windows 365 cloud PCs DURING provisioning.
- Can we please add an IMPORT button into GP Analytics?
(Numbered/formatted for easy reference by your friendly neighborhood Community Manager.)
- Phil_M905
Microsoft
No edit button!! 😞 Can you please talk about when we will be providing guidance for paid apps that used to be managed by Microsoft Store for Business? VP9... HEVC... not Adobe and such.- Joe_Lurie
Microsoft
There is no guidance for providing support for procuring apps to be delivered via Intune; customers will need to work directly with the vendor. For Microsoft apps, such as HEVC, we made these available in VLSC. So your customer can get them from there. For Adobe, they can work with a reseller or with Adobe. Some ISVs (independent software vendors) have decided to make the app free to download, but tied a subscription service to the app (think Office or XBOX). Customer needs to work with the ISV for their recommended practice.
- laszlokovacs2Copper Contributor
- Any updates on winget integration to Endpoint Manager?
- Do you have any plans to add an 'uninstall' button to apps in Company Portal?