Skip to content

Instantly share code, notes, and snippets.

@Ba4bes
Ba4bes / New-AzureRmAutomationRunbookschedule.ps1
Created February 8, 2019 09:08
Create and link a runbookschedule
function New-AzureRmAutomationRunbookschedule {
<#
.SYNOPSIS
This function creates a onetime runbookschedule and registers it to a runbook.
.DESCRIPTION
A unique name is created with a parameter and a number.
This name is used for a new schedule.
The schedule will be registered to a runbook.
.PARAMETER AutomationAccount
The name of the Automation Account where the runbook is and the schedule will be.
@Ba4bes
Ba4bes / Remove-AzurermExpiredSchedules.ps1
Created February 8, 2019 09:10
Remove expired runbookschedules from an Azure automation account
<#
.SYNOPSIS
This script removes expired schedules from a runbookaccount.
.DESCRIPTION
The script finds schedules that were scheduled onetime and don't have a next runtime.
All schedules that meet the criteria will be removed.
.EXAMPLE
.\Remove-OldSchedules.ps1 -AutomationAccountName "OGD-EUW-AUT-OPL-AUTOMATION-01"
.NOTES
Script was created to be used as a scheduled runbook.
@Ba4bes
Ba4bes / cs.ps1
Created February 25, 2019 17:23
A few functions with minimum characters for Cloud shell on a mobile device
function gar {
param(
[Parameter(Mandatory = $false)]
[String]$Name
)
if ($Name) {
get-azresource -Name $Name | Select-Object Name, Type
}
Else {
get-azresource | Select-Object Name, Type
#Function is called at bottom of the script for the scheduled task.
Function Get-PwshUpdates {
param (
[Parameter()]
[Switch]$Preview
)
$PwshName = "PowerShell 6-x"
$Metadata = Invoke-RestMethod https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/metadata.json
$PwshRelease = $Metadata.ReleaseTag -replace '^v'
if ($Preview) {
@Ba4bes
Ba4bes / SoThisIsChristmas.md
Last active December 12, 2019 22:04
SoThisIsChristmas.md

It's the most wonderful time of the year

Happy Holidays
Happy Newyear
Almost 2019
*** ***

This is an exampleGist for 25DaysOfServerless. Join the challenge!

$URL = "Paste the Logic App URL here"
$Body = [PSCustomObject]@{
To = "Ex@mp.le"
Subject = "Subject of the mail"
Body = "Body (you can use HTML here if you like)"
}
# Create a line that creates a JSON from this object
$JSONBody = $Body | ConvertTo-Json
@Ba4bes
Ba4bes / azuredeploy.json
Created May 17, 2020 07:25
Example ARM template for Storage Account
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"storageAccountPrefix": {
"type": "string"
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
@Ba4bes
Ba4bes / DFSR_test_PRTG.ps1
Last active May 31, 2020 17:53
Example for https://4bes.nl, not meant for production
#######################################
#Monitor DFSR replication
#Created by: Barbara Forbes
#Date: 26-2-2016
####################################
#The account running this script needs to have permissions on the drives that are used for this test.
#Define Paths on both servers, change this to your situation
$DFSpath1 = "c:\test"
Function New-AzUpdateDeploymentSchedule {
<#
.SYNOPSIS
Schedule Azure updates
.DESCRIPTION
This cmdlet combines the three cmdlets that are needed to create a update schedule.
New-AzAutomationSchedule
New-AzAutomationUpdateManagementAzureQuery
New-AzAutomationSoftwareUpdateConfiguration
Created for Azure Update Automation.
# This is a basic workflow to help you get started with Actions
name: Deploy_ARM
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
[push, pull_request]