viernes, 3 de marzo de 2017

WINDOWS. PS. HotFix / Updates host list

For list the HotFix in your Windows Operating system you could use this command.

COMMAND: "  Get-WmiObject Win32_QuickFixEngineering"


COMMAND: Get-WmiObject Win32_QuickFixEngineering Hotfixid | where{$_.hotfixid -like 'KB3029432'}

COMMAND: Get-WmiObject Win32_QuickFixEngineering | where{$_.hotfixid -like 'KB3029432'}





by GoN | Published: March 3, 2017 | Last Updated:

WINDOWS. PS. List status Services

For check the servide status in your Windows Operating system you could use this command.

PS COMMAND: "  Get-WmiObject -ComputerName My_PCName Win32_Service | Format-table Name, startMode, State, Status"


by GoN | Published: March 3, 2017 | Last Updated:

WINDOWS. PS. Computer Software Installed

For check all programs install in your Windows Operating sytem you could use this command.

PS COMMAND: " get-wmiobject -ComputerName My_PC_Name Win32_Product | select Name,Version,Vendor,InstallDate"



by GoN | Published: March 3, 2017 | Last Updated:

miércoles, 1 de marzo de 2017

NAGIOS. DDBB. List Scheduler downtime users

My boss need known what person to use the "Scheduler downtime" in Nagios when he has to do a maintenance.

When I connect to DDBB nagiosxi I can't found this table.

To find the table I follow the nexts steps:

After many tests, I connect to Nagios Linux operatin system by ssh.

I need find a text string "Parcheo OFM" that is in one host scheduler downtime comment.



I run the search
This search is long time.

I found files in the folder "nagios" not in "nagiosxi"


Now, I need connect a this DDBB but I don't known the user and password. I found the credetials a internet  (https://exchange.nagios.org/directory/Tutorials/Nagios-XI-Tutorials/Changing-Initial-Virtual-Machine-Credentials/details)



I can connect!

We can view this table and other important tables!!





by GoN | Published: March 2, 2017 | Last Updated: