Skip to content

Instantly share code, notes, and snippets.

@russellds
russellds / aws-instance-details.sh
Created July 30, 2018 19:59
AWS Instance Details
#!/bin/bash
echo 'InstanceId,KeyPair,PrivateIpAddress,PublicIpAddress,InstanceType,Tags,OwnerId' > $HOME/aws-instance-details.csv
aws ec2 describe-instances --filters --query 'Reservations[].Instances[].[InstanceId,KeyName,PrivateIpAddress,PublicIpAddress,InstanceType,Tags[?Key==`Name`].Value[]]' --output text |
sed 's/\t/,/g' >> $HOME/aws-instance-details.csv
@russellds
russellds / Update-AUPackages.md
Last active July 27, 2018 04:35
Update-AUPackages Report #powershell #chocolatey
@russellds
russellds / Rename-PictureToDateTaken.ps1
Created July 28, 2014 02:39
Rename pictures to date taken using Powershell
function Rename-PictureToDateTaken {
param(
[string]$Path
)
$assemblyLoaded = [appdomain]::currentdomain.getassemblies() |
where { $_ -match 'System.Drawing' }
if( -not $assemblyLoaded ) {
@russellds
russellds / ConvertFrom-Html.ps1
Created March 21, 2014 15:15
ConvertFrom-Html
function ConvertFrom-Html {
#.Synopsis
# Convert a table from an HTML document to a PSObject
#.Example
# Get-ChildItem | Where { !$_.PSIsContainer } | ConvertTo-Html | ConvertFrom-Html -TypeName Deserialized.System.IO.FileInfo
# Demonstrates round-triping files through HTML
param(
# The HTML content
[Parameter(ValueFromPipeline=$true)]
[string]$Html,
@russellds
russellds / gist:8273144
Created January 5, 2014 20:10
Get IIS Logs
function Get-IISLogs {
<#
.SYNOPSIS
Gets the IIS Logs for the number of hours specified and returns them as an array of PSObjects.
.DESCRIPTION
Gets the IIS Logs for the number of hours specified and returns them as an array of PSObjects.
.PARAMETER Hours
A description of the parameter.