Navigation

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. ronak360
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 3
    • Best 0
    • Groups 0

    ronak360

    @ronak360

    0
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ronak360 Follow

    Best posts made by ronak360

    This user hasn't posted anything yet.

    Latest posts made by ronak360

    • RE: API Documentation

      @theopenem_admin whiletesting the API via swagger , there is a prompt of username and password
      enterning the webui username and password result in fail authencation

      How can i get username and password for API

      posted in Support
      R
      ronak360
    • RE: Any way to query logs from all endpoint same time?

      @theopenem_admin Thanks i was abel to do it via custom invenentory , i thinks custom invenentory is not documented in docs webside

      below is the script to help if someone is looking for something similar

      $rebootrequired =([string](get-content "C:\Program Files\Toec\logs\service.log" | Select-String -Pattern "INFO" -NotMatch | select-string -pattern "ModuleWuManager - Reboot Required: True" | select -last 1)).SubString(0,10)
      $lastreboot = [datetime]::ParseExact((((Get-WmiObject win32_operatingsystem).LastBootUpTime).Substring(0, ((Get-WmiObject win32_operatingsystem).LastBootUpTime).IndexOf('.'))),'yyyyMMddHHmmss', $null).ToString('yyyy-MM-dd')
      if($rebootrequired -ge $lastreboot){
      Write-Output "reboot required True"
      }else{
      Write-Output "reboot required False"
      }

      posted in Support
      R
      ronak360
    • Any way to query logs from all endpoint same time?

      Hi,

      we are using theopenm to trigger windows update on , we have intigrated around 100+ servers
      only problem is we need to look at openem logs to find which server need reboot after windows update is trigger

      is there any way to query all openem endpoint logs for all server same time and find which server need reboot in a more user frendly way ?

      I am talking about Toec logs

      posted in Support
      R
      ronak360