Posts

Showing posts from 2020

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...

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 ...