Situations I’m having issues with a shared computer where the user’s last login is loaded automatically if it’s not logged out, regardless of the windows profile logged in. Is there a way for us to log out of MS Teams automatically when the profile is logged off or when the computer is turned off? Solutions Read More
Month: January 2023
How to Force Install Microsoft Teams With Intune Scripts
For some reason, Teams won’t install automatically with Office 365 deployment via Intune. I have created the below scripts and assigned them on Intune to force install Teams. Scripts: $registryPath = “HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run” $Name = “TeamsMachineInstaller” $value = “C:\Program Files (x86)\Teams Installer\Teams.exe –checkInstall –source=default” if (Get-ItemProperty -Path $registryPath -Name $name -ErrorAction Ignore) { Read More
Deploy Scheduled Tasks Via Intune as Win32 Apps
By Gannon Novak Intune does not have a native way to create scheduled tasks, but we can still deploy them to machines by using a Win32 app. If you don’t have the licensing to use proactive remediations, we can use this as a workaround to get some similar results (but without any native reporting in Intune). Read More