Jump to content

Reboot after update product


Go to solution Solved by Marcos,

Recommended Posts

Posted

Hello

I would like to know if the programm flag in registry or in a folder when he need a reboot ?

image.png

image.png

Thanks

  • Administrators
  • Solution
Posted

You can user eRMM to get information about a pending restart:

image.png

Posted

Great thanks

I have a tool for manage reboot in all devices in powershell so I can use powershell in path for test if the device need reboot or not

Posted

i wrote a little Powershell fonction

function PendingRebootEset(){

$EsetFolder = "C:\Program Files\ESET\ESET Security\"
$TestEsetFolder = Test-Path $EsetFolder

    if ($TestEsetFolder -eq $true){
        cd $EsetFolder
        $Reboot = cmd.exe /c ermm get protection-status

        if ($reboot -match "Device restart required"){
            return $true
        }else{
            $false
        }
    }
}

Regards

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...