When I deploy applications into Intune I always deploy some usefully management applications which I can use in other application.
Some tools which I always deploy to a end device are:
- CMTrace.exe
This is a tool which become handy when you want to read log files like the Intune Management Extension logs. - SetUserFTA.exe & SetDefaultBrowser.exe
Both tools from https://kolbi.cz/blog/. Very handy if you want to set FTA and Default browsers with Intune policy’s - nircmd.exe
I use nircmd to run command files hidden for users. Otherwise when running a command file a command windows can pop-up in the user session.
This is my cmd script to deploy these files within a win32 application.
Install:
copy /Y .\SetUserFTA.exe %systemroot%
copy /Y .\SetDefaultBrowser.exe %systemroot%
copy /Y .\CMTrace.exe %systemroot%
copy /Y .\nircmd.exe %systemroot%
copy /Y .\CreateDesktopIcon.exe %systemroot%
Uninstall:
del c:\Windows\CMTrace.exe
del c:\Windows\SetUserFTA.exe
del c:\Windows\SetDefaultBrowser.exe
del c:\Windows\nircmd.exe
del c:\Windows\CreateDesktopIcon.exe