Posts

Featured Post

JDE Health Monitoring

Image
This software scans your JDE servers (like ES, Web, AIS, BSSV etc.) and performs different kind of  tests (like login, porttest, ube etc.) to check your JDE system health. Once it gather all the required data then it generates the health check report and send it to the requester. The software runs outside JDE which means if your JDE infrastructure is down, still this software will work and send you the information.   This contains below two functionalities:         Windows Desktop Application       Automated email delivery of JDE health report         You can use the desktop application on your machine to perform health check in just one click. It gives a nice user interface to interact with JDE system. It provides the JDE Instances summary on dashboard. You can choose different kind of health checks based on your requirement. Automated Email delivery can be used for delivery of health check report. You can ...

Automate Password Encryption-Decryption

Image
We designed EncryptDecrypt.exe to encrypt/decrypt password files. This is an executable file and can be used from command line. This is based on symmetric key encryption which means same key will be used for both encryption and decryption. You can download the exe file using this link . How to use : Below is the demonstration using PowerShell terminal. Similarly you can use this in other scripts as per your requirement. Encryption :  This will encrypt the plaintext in password file. You need to use -E for encryption. EncryptDecrypt -E PasswordPlainTextFilePath Decryption :  You need to use -D for decryption. The password will be printed on terminal. EncryptDecrypt -D PasswordEncryptedFilePath If you want to use the password in your script then store it in a variable and use the variable in your script.

Automate Execution of Commands on Remote Linux Server/s using Linux-Automator tool

Linux-Automator is a terminal based tool which uses SSH to connect remote Linux server. You can pass the list of commands from text file and all commands will be executed on remote Linux server in a sequential manner. This will display the execution on terminal. You can download the tool using this link .     How to call      Linux-Automator Server UserID Password Command_file Pause_time Server - Remote Linux server name or IP UserID - Login user name Password - Password for UserID Command_file - Command file name with complete path Pause_time -  Time in seconds during which it checks if anything gets printed on the screen, if nothing then it sends the next command. This is optional. Default value is 2 seconds. Example Linux-Automator LinuxServer1 test password@123 "E:\Command\commands.txt" 5 Sequential Run on same Terminal You can call the Linux-Automator from Batch file. You can use below script for your reference to execute the commands on serve...

Server Health Monitoring

Image
This software scan's your server resources and reports in case of any higher utilization or service failure. This is highly efficient and reliable for your production infrastructure to keep the business running smoothly. You can customize this as per your requirements.

Scan a user's session on multiple servers

Image
This is a user friendly tool. You can scan a user's session from multiple servers. Using this, you can monitor user's stuck session on citrix servers. You can terminate the user's session using this tool without  taking rdp on servers. If you are interested then you can request for a demo.

JDE BSSV Instance Monitoring

Image
We developed tool for BSSV monitoring. This tool will gather details from all your BSSV instances and will send the consolidated report. Also It will report you in case of BSSV failure. It will help you to keep your BSSV instances running and will minimize the business disruption.

Server connection test

You can use the below PowerShell script to create an email notification for server connection test. Save the below script as Test-connection.ps1 and edit the parameters. You can use any number of servers. Test-connection.ps1 $servers = @('Server1','Server2','Server3','Server4','Server5') $timeout = 200  #in micro-seconds $From = "No-Reply@domain.com" $To = @("your-email1@domain.com","your-email2@domain.com") $SMTPServer = "smtp-server-name" ForEach($server in $servers) {  if(!(Test-connection $server -count 2 -Quiet))    {     $Subject = "Test connection for server "+$server     $body = $server+" is not reachable."     Send-MailMessage -From $From -to $To -Subject $Subject -SmtpServer $SMTPServer -Body $body     }  elseif((Test-connection $server -count 2 | Measure-Object -Property ResponseTime -average).average -gt $timeout)    {     $Subject = "Test connecti...

SQL Database Refresh Automation

Image
This GUI based tool is simple and easy to use. You can perform the full database refresh without having any SQL knowledge.Even you can fully automate your refresh using tool. You just need to schedule it at any given time and the complete process would be performed at back end without any human intervention.

RDP Tool

Image
You can take RDP on multiple servers using this tool. There is no need to enter your credential again and again. You just need to provide your credential initially. You can also specify your servers as per your requirements.

Perform JDE outage using GUI based tool

Image
Designed GUI based Outage tool that helps to perform outage on multiple servers. This tool cab be modified as per requirement. Refer the details below: JDE service start/stop, log archive, log check, kernel check                                                                                                                                                                                                                                ...