@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
@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
@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"
}
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