Skip to content

Instantly share code, notes, and snippets.

View tayoadaraloye's full-sized avatar

Olutayo Adaraloye tayoadaraloye

  • UL Solutions
  • Manchester
View GitHub Profile
@tayoadaraloye
tayoadaraloye / IIS.ps1
Created September 2, 2021 18:52 — forked from mikepfeiffer/IIS.ps1
Simple DSC Configuration for IIS Web Server
Configuration IIS
{
# This will generate three .mof files; web1.mof, web2.mof, web3.mof
Node ('web1', 'web2', 'web3')
{
#ensure IIS is installed
WindowsFeature IIS
{
Name = 'web-server'
Ensure = 'Present'
@tayoadaraloye
tayoadaraloye / NewWebServer.ps1
Created September 2, 2021 18:51 — forked from mikepfeiffer/NewWebServer.ps1
Quick AZ PowerShell Script to Create a Web Server
param(
$Name = 'WEB1',
$Location = 'westus2',
$ResourceGroup = 'WebServers'
)
New-AzResourceGroup -Name $ResourceGroup -Location $Location
$params = @{
Name = $Name
@tayoadaraloye
tayoadaraloye / utils.ps1
Created September 2, 2021 18:51 — forked from mikepfeiffer/utils.ps1
PS Function that creates an Azure Service Principal
function New-Sp {
param($Name, $Password)
$spParams = @{
StartDate = Get-Date
EndDate = Get-Date -Year 2030
Password = $Password
}
$cred= New-Object Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential -Property $spParams
@tayoadaraloye
tayoadaraloye / PY0101EN-3-1-Conditions.ipynb
Created September 20, 2020 17:04
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tayoadaraloye
tayoadaraloye / PY0101EN-2-4-Dictionaries.ipynb
Created September 15, 2020 10:46
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tayoadaraloye
tayoadaraloye / PY0101EN-2-3-Sets.ipynb
Created September 13, 2020 16:23
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tayoadaraloye
tayoadaraloye / PY0101EN-2-2-Lists.ipynb
Created September 13, 2020 10:30
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tayoadaraloye
tayoadaraloye / PY0101EN-2-1-Tuples.ipynb
Created September 12, 2020 21:58
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tayoadaraloye
tayoadaraloye / PY0101EN-1-2-Strings.ipynb
Created September 12, 2020 09:10
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.