Dave Cheney recently wrote a post on cross-compiling and installing Go 1.5 in Raspberry pi2. I had some […]
A simple Go Program to display file names and file size in human readable format. I have used […]
root@k8-master:~/textprocess# cat employee.txt 100 Thomas Manager Sales $5,000 200 Jason Developer Technology $5,500 […]
I was refreshing basic Linux commands and found tac was one of the commands rarely used, also found interesting in writing a Go program to Write the lines back from the file. I had thought of writing this program using file pointers or file seek methods and started searching for the packages like io,bufio and finally found ioutil example, enhanced further the same program with adding a for loop.
Parameter Name aliases in PowerShell provides an option to give the shortest aliases name for the parameters. For […]
WiFi profile passwords can be obtained in GUI and here is a PowerShell script to find the Wifi passwords. The script was written by harriha and it is extracted from his GitHub page.
Excluding particular source from Get-Eventlog is pretty easy, many of you would have found it. All you need […]
Microsoft releases Windows updates and security updates every month of second Tuesday to fix the vulnerable’s and loopholes in the Windows Server Operating system. The requirement is to find the latest Windows security updates installed with hotfix ID and installation date.
SSH using PowerShell is a quiet old topic, but when coming to real-time implementation, there would be few challenges in making the script. SharpSSH a Dot NET library used to connect SSH session via PowerShell and it works excellent for multiple hosts (Linux or Mac).