Forum Discussion
admin-CPH
May 13, 2022Brass Contributor
notify the user to reboot device by Intune
Hi How to notify the user to reboot the device after 7 days in Intune? Thanks
- May 13, 2022Hi,
What about this one?
https://msendpointmgr.com/2020/06/25/endpoint-analytics-proactive-remediations/
Just remember to change branding.
Regards,
admin-CPH
May 13, 2022Brass Contributor
May 13, 2022
I dont have that exact same script to display that kinda message but I created something to display a message to notify the user after a specific windows update is isntalled
- admin-CPHMay 13, 2022Brass Contributor
I have this one
$Uptime= get-computerinfo | Select-Object OSUptime
if ($Uptime.OsUptime.Days -ge 7){New-BurntToastNotification -Text 'It has been 5 days since your PC was last rebooted. Kindly reboot once a day for best performance.
' -SnoozeAndDismiss}but here I need to install Burntoast module to all devices and how to be sure that this script will run daily?