Month: September 2018
-
AWS Installing AWS Inspector Agent on Windows EC2 Instance
Hi everyone, Just a quick post on installing the AWS Inspector Agent on a Windows EC2 instance. Open PowerShell and run the following command: (new-object System.Net.WebClient).DownloadFile(‘https://inspector-agent.amazonaws.com/windows/installer/latest/AWSAgentInstall.exe’,’C:UsersAdministratorDesktopAWSAgentInstall.exe’) On your desktop, right click on AWSAgentInstall.exe and select run as administrator. Follow the prompts. Go to run, and execute services.msc. You should now see the Amazon SSM Agent:…
-
Dynamic Robots.txt with Web Api 2
Hi everyone, For a project I’m currently working on I needed a dynamic robots.txt. Because our test environment is public facing we want to keep it from being indexed by Google etc. It took a bit of Googling to find a solution that worked, but in the end it was actually pretty simple. Here’s the…