I have been working through the Intune configuration for Tensor. I have the process working for installing the Host and Full applications to my users. I have numerous groups in my account that I need to have devices assigned to. I am using the script supplied by support and it works very well once you break it down:
:Install, pretty simple
start /wait MSIEXEC.EXE /i "PATH_TO_MSI_FILE\TeamViewer_Full.msi" /qn
:wait on the install to fully finish
timeout /t 30 /nobreak
:launch the app (probably already running, but that's fine) and pass the assignment ID from your rollout configuration
"C:\Program Files\TeamViewer\TeamViewer.exe" assignment --id YOUR_ASSIGNMENT_ID
This process works surprisingly well, but I'm at a point where deployment requires a lot of steps to create custom scripts for each group / assignment ID, package up the intunewin, and create the app in Intune.
I need to get to where I can have a single install / intunewin. I think this is possible by taking the Rollout item out of the original install script. The steps are all the same up to that point anyway.
But then how do you assign the rollout to the device? I use the device's group membership to install the package with the custom script now. This is problematic because I will have to go through the whole process again at the next update…
What I would like to do is create a Script / Remediation in Intune that will check if TeamViewer.exe exists, and run a script to assign the rollout if it does.
I tried it by passing a command line flag that will assign a rollout id. This works, but I still have to create a new script / remediation for each ID used. It saves time on the intunewin creation, but I think it can still be better.
@ECHO OFF
IF "%~1" == "Group1" (
"C:\Program Files\TeamViewer\TeamViewer.exe" assignment --id <RolloutID1>
) ELSE IF "%~1" == "Group2" (
"C:\Program Files\TeamViewer\TeamViewer.exe" assignment --id <RolloutID2>
) ELSE (
ECHO "No group found"
)
I'm thinking I could check for group membership in powershell, then assign the ID accordingly.
Unfortunately, I'm just not good at the Azure powershell stuff… Anyone have any ideas?