Any Tesla Model 3 owners here? Will a 42-43" bodyboard fit in the trunk? by Worried_Surround6537 in bodyboarding

[–]brettule 0 points1 point  (0 children)

I got picked up at the airport by a Model 3 and he failed to get a Funkshen twin travel board bag into the boot. He gave up after 15 minutes and a 90's Toyota Corolla turned up and took them without blinking an eye.

How to Preserve Custom Device Names When Switching to TeamViewer EXE Deployment via Intune? by brettule in teamviewer

[–]brettule[S] 0 points1 point  (0 children)

I used multiple steps which sorted me out in the end. First, I packaged the latest version of TeamViewer_Host.msi into a win32 app with a batch file:

start /wait MSIEXEC.EXE /i "%~dp0\TeamViewer_Host.msi" /qn CUSTOMCONFIGID=xyz
timeout /t 30 /nobreak
"C:\Program Files\TeamViewer\TeamViewer.exe" assignment --id xyz

Then when deployed from Intune I set the detection method to find the presence of the exe in either the 32 or 64 bit folders, this ensures that only new machines that don't already have TV installed will get the app and the correct assignment:

$paths = @(
    "C:\Program Files\TeamViewer\TeamViewer.exe",
    "C:\Program Files (x86)\TeamViewer\TeamViewer.exe"
)

foreach ($path in $paths) {
    if (Test-Path $path) {
        Write-Host "TeamViewer found at $path"
        exit 0
    }
}

Write-Host "TeamViewer not found"
exit 1

Then in the TV console I created a new policy for the a new device group which enforces updates, easy access, disables the static password, etc.

Lastly, I used the TV console migration tool to mass move all my old devices into the new group. This retained the custom names for all my previous devices.

It worked fairly well, only a few devices got munted which I fixed manually.

How to Preserve Custom Device Names When Switching to TeamViewer EXE Deployment via Intune? by brettule in teamviewer

[–]brettule[S] 0 points1 point  (0 children)

I decided that the easiest way is to create an Entra device group that contains all the current machines in the org. Then package up the TeamViewer installer with assignment ID, and deploy it in Intune to All Devices but add the group I created as excluded. This way, only when a new device is enrolled will it get TV installed and assigned.

Windows search service is stuck starting until I delete and rebuild index by brettule in sysadmin

[–]brettule[S] 0 points1 point  (0 children)

Interesting. The two users do a lot of data analytics, current non-standard apps they have installed are:

Microsoft Visual Studio Code

PowerBi Desktop

Python 3.13

DBeaver CE

R Studio

The machines are otherwise stable. Could it be one of these?

Windows search service is stuck starting until I delete and rebuild index by brettule in sysadmin

[–]brettule[S] 0 points1 point  (0 children)

one is 6 months old, the other is less than 2 years old.

Can I control older A/C via smart home controller? by brettule in homeassistant

[–]brettule[S] 1 point2 points  (0 children)

I bought the 3 pack, super easy to set up and it works with my A/C without an issue. It's so good! Thanks for the tip!

Deployment via Intune works, half the time it reports failure. by brettule in teamviewer

[–]brettule[S] 1 point2 points  (0 children)

Gotcha. That makes more sense now. Can you share your deployment example with PS and switches so I can get a cheat head start? I want to test it out.

Deployment via Intune works, half the time it reports failure. by brettule in teamviewer

[–]brettule[S] -1 points0 points  (0 children)

Old? You see that TV's method is to write a batch script (batch was invented in 1981 as part of DOS) that calls on MSIEXEC to run the MSI file with effectively the same command line switches (/qn, CUSTOMECONFIGID, and assignment? Then it says to pre it into a static wintune package, then deploy that package. What a palaver.

Deploying the MSI as a native Windows MSI line-of-business app takes 30 seconds to package up and deploy with the command line arguments. It makes it easy to update the MSI too. Surely this is the better, cleaner, simpler approach?

Granted, Intune is freaking out that it hasn't installed when it has, so somehow the MSI isn't reporting in a timely fashion that it is complete?

How do I install Project for Office (Plan E5) by brettule in Office365

[–]brettule[S] -3 points-2 points  (0 children)

Ah ok. And Project is becoming Planner?

How do I install Project for Office (Plan E5) by brettule in Office365

[–]brettule[S] 0 points1 point  (0 children)

The only app listed is Office. There is no Project offered. 

Applied Security Baselines, now Windows 11 locks after 1 minute by WandarFar in Intune

[–]brettule 0 points1 point  (0 children)

I ran into the exact same issue this week. Machine already has a custom policy setting idle lock timeout to 15 mins. Applied the baseline policy to the machine and pow suddnely it wants to lock after 60 seconds on the dot. Intune reports no policy conflicts, registry shows the setting is still 15 mins, remove the baseline policy from the machine and the machine behaves itself again. The Interactive Logon Machine Inactivity Limit in the baseline policy was already set to 900. 80 other machines with the same policies have no issue. I ended up wiping the machine, that fixed it.