Here is another small script snippet I used in one of my project to quickly check status of WinRM setup on a list of servers I was managing. This was part of a bigger project work, and this data was important for my project on whether WinRM is setup as per requirements or not. You…
Complete Azure Inventory using Powershell
Update : updated script to support Azure Az powershell module. It is always great to have a script handy which will produce a quick azure resource inventory for your azure subscription. It may not contain all properties of azure resource types, however, just provide you information about the resource type, resource name, resource group etc….
Complete XenApp 6.x Farm Inventory using Powershell
Today, I am going to share a script to create an inventory of XenApp 6.x farm servers and applications. Like my VMware inventory script provided in my earlier blog, I use output csv of this script execution and ingest data into my SQL Database. After that, generate different reports by querying other tables in the…
Azure VM Monitoring agent status using powershell
Update : updated script to support Azure Az powershell module. Hey friends! Today I am going to share a new Powershell script I created to generate a report of Azure VM Monitoring Agent extension configuration. I usually run this script to find out how our Azure VMs have been setup with Azure Log Analytics Workspace….
Merge multiple JSON files to one file
Recently I was processing some JSON files for one of my project and wanted to merge multiple similar JSON files in to a single file. All those files I was processing were in similar JSON format, however, coming from different sources. Once I have all these files stored in disk, I wanted to ingest in…
Script to generate AWS S3 Bucket inventory
Amazon Simple Storage Service (S3) is Amazon provided cloud based scalable, high speed Object storage service. According to Amazon – “Amazon Simple Storage Service (Amazon S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance. This means customers of all sizes and industries can use it to store and protect…
Complete VMware inventory using Powershell
Today, I am going to share a script, which personally used a lot, not only as a standalone script, but, in conjunction with other scripts in a workflow to generate multiple CSV files of our VMware environment globally. After that, pass CSV files to next script to ingest in my SQL Database inventory system. Once…
AWS EBS Snapshot inventory
Amazon EBS Snapshot is point in time copy of Amazon EBS(Elastic Block Storage) volumes attached with EC2 instance. We usually take snapshot just to make a baseline system by freezing the state in a snapshot and using it as a source to deploy other similar system. Sometimes, we do take snapshot as a way of…
AWS DynamoDB complete inventory using Powershell
Amazon DynamoDB is a cloud based no-SQL key-value and document database. It is a very high performance and scalable database service from Amazon. Please refer here for more information. Refer my post here if you are want to generate an inventory of Relational Database System(RDS) by Amazon. The script I am providing below will help…
AWS RDS complete inventory using Powershell
Following definition of Amazon Relational Database Service (RDS) is taken from AWS documentation for RDS. Please refer here for more information – “Amazon Relational Database Service (Amazon RDS) makes it easy to set up, operate, and scale a relational database in the cloud. It provides cost-efficient and resizable capacity while automating time-consuming administration tasks such…