SOLVED

notify the user to reboot device by Intune

Brass Contributor

 

Hi
How to notify the user to reboot the device after 7 days in Intune?

Thanks

safcop_0-1652425852179.png

 

 

9 Replies
a nice PowerShell script?

Hi @Rudy_Ooms_MVP 

Do you have a nice script?

Thanks

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

 

@Rudy_Ooms_MVP 

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?

best response confirmed by saf-cop (Brass Contributor)
Solution
Hi,

What about this one?

https://msendpointmgr.com/2020/06/25/endpoint-analytics-proactive-remediations/

Just remember to change branding.

Regards,

@gerardoamadeus 
Thank you so much!
It has been working fine for some months a go.

Recently and I think with Windows 11, the toast notifications don't appear even if - don't disturb is off as I expect to be the problem.
I tried to run the script locally on my device with no problem.

Should I change something, or do you suggest another solution?
This reminder is so a great idea and it is keeping the devices healthy and updated.
Thanks 

Not quite sure why it is not working anymore. Haven't tested on W11. Were you able to fix it?

 

@gerardoamadeus

The solution is to choose yes for Run this script using the logged-on credentials

safcop_0-1685311821311.png

 

 

@saf-cop 

 

In the update rings you have deadline you can configure... i use this and its working well

 

Mathg76_0-1685382675188.png

 

 

 

1 best response

Accepted Solutions
best response confirmed by saf-cop (Brass Contributor)