Skip to content

Instantly share code, notes, and snippets.

@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.
@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 / 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 / Update-AUPackages.md
Last active July 27, 2018 04:35
Update-AUPackages Report #powershell #chocolatey
@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 / GetWinDisks.ps1
Last active October 29, 2019 18:46
List Windows Disk with Boot Disk First
# Empty Array to hold disks in boot disk always first order.
$disks = @()
# Identify the boot partition
$bootPartition = Get-WmiObject -Class Win32_DiskPartition |
Where-Object {$_.BootPartition}
# Identify the boot disk using the boot partition
$bootDisk = Get-WmiObject -Class Win32_DiskDrive |
Where-Object {$_.Index -eq $bootPartition.DiskIndex} |
@russellds
russellds / foreach-parallel-sync-hash.ps1
Created April 22, 2022 20:19
ForEach-Object -Parallet with a Synchronized HashTable and Injecting a Function
function doStuff {
param(
[string]
$Item
)
$htDoStuff.($Item) = @{}
}
$stringFuncDoStuff = "${function:doStuff}"
@russellds
russellds / Injection.psm1
Created April 22, 2022 20:36
Injection PowerShell Module
function doStuff {
param(
[string]
$Item,
[string]
$Value = 'default'
)
$htDoStuff.($Item) = $Value
param(
[string]$WorkspacePath
)
$InformationPreference = 'Continue'
Write-Information "Workspace Path: $( $WorkspacePath )"
Set-Location -Path $WorkspacePath
$telemetryStrings = @()
@russellds
russellds / tasks.json
Created May 25, 2023 19:05
VS Code Setup for Bicep
{
"version": "2.0.0",
"tasks": [
{
"label": "Remove Telemetry",
"type": "shell",
"command": "${workspaceFolder}/.vscode/scripts/RemoveTelemetry.ps1",
"args": [
"-WorkspacePath",
"${workspaceFolder}"