How to check shutdown event log

Windows 2012 shutdown issue.

Event logs for shutdown or reboot of windows 2012 servers.

Event ID 41 The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly.
Event ID 1074 Logged when an app (ex: Windows Update) causes the system to restart, or when a user initiates a restart or shutdown.
Event ID 6006 Logged as a clean shutdown. It gives the message “The Event log service was stopped”.
Event ID 6008 Logged as a dirty shutdown. It gives the message “The previous system shutdown at time on date was unexpected”.

Read more

How to get back your wireless password from windows 10

How to get back your wireless password from windows 10

Open your Dos Prompt with administrator rights .

Type netsh wlan show profiles  to show saved wireless profiles.

For Example

C:\Users\Dell>netsh wlan show profiles

Profiles on interface Wireless Network Connection 4:

Group policy profiles (read only)

Read more

How to record linux ssh terminal output and replay it for all users

How to record linux ssh terminal output and replay it for all users

we can get it done using script command .you can save all the session from all users login in to your server and there activity. this will help you to troubleshoot the issues .

1-  edit the profile file ( /etc/profile )and insert the below code.

……………………………………………………
if [ "x$SESSION_RECORD" = "x" ]
then
timestamp=$(date +%d-%m-%Y-%T)
session_log=/var/log/session/session.$USER.$$.$timestamp
SESSION_RECORD=started
export SESSION_RECORD
script -t -f -q 2>${session_log}.timing $session_log
exit
fi
……………………………………………………
2- create a directory to record session

Read more

How to install bigbluebutton web conference server.

How to install BigBlueButton web conference server.

The minimum requirements for a BigBlueButton server are

  • Ubuntu 16.04 64-bit OS running Linux kernel 4.x
  • 8 GB of memory with swap enabled (16 GB of memory is better)
  • 4 CPU cores (8 is better)
  • TCP ports 80 and 443 are accessible
  • UDP ports 16384 – 32768 are accessible
  • Port 80 is not in use by another application

Read more