use it to run Windows Server 2008 R2 and Hyper-V. I run all kinds of Virtual Machines on the W510 because it has 16GB of physical RAM. There are however a few hiccups in the process of using a Windows Server Machine to do demonstrations. This is one of the first I encountered. When you Read More
How to Fix “Program ‘IntuneWinAppUtil.exe’ failed to run: The specified executable is not a valid application for this OS”
When downloading the “Save Link As” option in Edge, it scans the file and prompts to confirm if you want to keep the high-risk file. However, this appears to corrupt the file and increases its size to 143 Kb. You won’t be able to run this exe with CMD or Powershell prompt. When downloading the Read More
How To Add “From” Field in Outlook.
If you already have a delegation from another person (like your boss), but you don’t know how to send an email on his/her behalf. here is the way how to bring up the “From” field in Outlook. In Mail, click Home > New Email. On the Options tab, in the Show Fields group, click From. In the From box, type the name Read More
How to Sign Out of Teams Automatically
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
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