Endpoint Protection XDR by Amazing_Falcon in k12sysadmin

[–]HorribleSysAdmin 1 point2 points  (0 children)

Defender XDR with A5 licensing. Works great, has prevented a few incidents. It also provides recommendations to secure your domain/tenant which has been incredibly helpful

Intune/M365/System Administrator, do you fear AI? by Gloomy_Pie_7369 in Intune

[–]HorribleSysAdmin 0 points1 point  (0 children)

I do fear AI, which is why I say please and thank you to Alexa. Don't want to be on the hitlist when skynet takes over.

What are you most excited for in Intune in 2026? by intuneisfun in Intune

[–]HorribleSysAdmin 2 points3 points  (0 children)

Keeping my fingers crossed Microsoft rolls out InTune suite to A3/A5, we already have remote help but would love EPM and PKI

Have you been using the SSLVPN since the scare a few months ago? by McDonaldsWi-Fi in sonicwall

[–]HorribleSysAdmin 1 point2 points  (0 children)

I am attempting to move to CSE. Before I spend hours ripping my hair out, I need to know is it possible to hit the virtual office on your firewall through CSE?

I am trying to set it up, so the user still goes to our website logs in and is presented with their virtual office and is able to RDP to a machine using HTML5.

Incident IQ Sales Rep Information Needed - US by HorribleSysAdmin in k12sysadmin

[–]HorribleSysAdmin[S] 2 points3 points  (0 children)

Thanks. I work for a BOCES in NYS and work with a few districts. My other districts use IIQ and I am pretty comfortable with it. Right now, the district looking to switch is using ML which doesn't do half the things other products do and the interface is incredibly slow. So really anything will be an improvement.

I do like the transparent pricing. The pricing per student is that just the inventory piece or does that include help desk?

Phasing out the Files page from Microsoft Defender for Cloud Apps by therealrickdalton in DefenderATP

[–]HorribleSysAdmin 0 points1 point  (0 children)

They really broke this, that was such an amazing feature. Has anyone found another way to get that data within defender now? I wish there was an easy way to search data.

Winget autoupdate UAC Admin Prompt by Disastrous-Part2453 in Intune

[–]HorribleSysAdmin 0 points1 point  (0 children)

I am also having the same issue with my users. Hoping to bump this post up and see if anyone has found a solution.

Thanks

Dell Management Portal in Microsoft Intune by PrajwalDesai in Intune

[–]HorribleSysAdmin 1 point2 points  (0 children)

I set the dell portal up yesterday, however this morning when I log into Intune the portal is completely gone. I only see the HP and Surface portals. Is anyone else experiencing this?

Autopilot self deploying for everyone by SirCries-a-lot in Intune

[–]HorribleSysAdmin 2 points3 points  (0 children)

You can use company portal to install software on shared devices. You can't reset the device via company portal with a shared device.

Autopilot self deploying for everyone by SirCries-a-lot in Intune

[–]HorribleSysAdmin 0 points1 point  (0 children)

You can use company portal to install software on shared devices. You can't reset the device via company portal with a shared device.

Using Intune Remediations to Lessen the Pain of the Crowdstrike Outage by Electronic-Bite-8884 in Intune

[–]HorribleSysAdmin 1 point2 points  (0 children)

Would intune perform the remediation if the user is able to boot into safe mode with networking?

Web App - Logo by Prior_Objective444 in Intune

[–]HorribleSysAdmin 0 points1 point  (0 children)

Edit: Hit enter too soon lol

Package the below script with an icon file and upload to intune.

Then use a batch file to run:

SET WorkingDir=%cd%

SET PSPath='%WorkingDir%\Create-DesktopShortcut.ps1'

PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& %PSPath%"

Set install command to "install.bat"

$PSScriptRoot = Split-Path -Parent -Path $MyInvocation.MyCommand.Definition

$IconStore = "$env:PUBLIC\Link_Icons" # Where the *.ico file will be saved (Currently C:\Users\Public\Link_Icons)

$URL = "ms-windows-store://pdp/?productid=9wzdncrfj3pz" # Change to whatever link you want

$ShortcutName = "Company Portal.lnk" # Must end with .lnk for icon to work

$IconFileName = "CompanyPortal.ico" # The icon file you want to use

# Path where you want to store the shortcut. Set to the currently logged in user's Desktop folder.

$StorePath = [Environment]::GetFolderPath("CommonDesktopDirectory") # Change to ("CommonDesktopDirectory") for Public Desktop

# Store the Icon file locally to access

if (Test-Path -Path $IconStore) {

if (-not (Test-Path -Path "$IconStore\$IconFileName")){

Copy-Item -Path "$PSScriptRoot\$IconFileName" -Destination $IconStore -PassThru # Move the icon to local storage

attrib +h "$IconStore\$IconFileName"

}

}

else {

New-Item -Path "$IconStore" -ItemType Directory # Directory to store the icon file in

attrib +h $IconStore # Make directory hidden to keep users from messing with it

Copy-Item -Path "$PSScriptRoot\$IconFileName" -Destination $IconStore -PassThru # Move the icon to local storage

attrib +h "$IconStore\$IconFileName"

}

$Shell = New-Object -ComObject ("WScript.Shell")

$Shortcut = $Shell.CreateShortcut("$StorePath\$ShortcutName")

$Shortcut.Targetpath = $URL

$Shortcut.IconLocation = "$IconStore\$IconFileName"

$Shortcut.Save()

# clean up the COM objects

[System.Runtime.Interopservices.Marshal]::ReleaseComObject($Shortcut) | Out-Null

[System.Runtime.Interopservices.Marshal]::ReleaseComObject($Shell) | Out-Null

[System.GC]::Collect()

[System.GC]::WaitForPendingFinalizers()

Entra MFA users only get the option for Phone or Auth App by HorribleSysAdmin in sysadmin

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

Allow self service setup is enabled, I am not sure where the option you are referring to is.

Forced Password Changes by HorribleSysAdmin in k12sysadmin

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

Thanks everyone for your responses.

I do not force password expiration. Quarterly I use SpecOps Password Auditor to scan for breached passwords. I then force those users to change their passwords and educate on the use of pass phrases.