Skip to content

Instantly share code, notes, and snippets.

@leojonathanoh
leojonathanoh / keybase.md
Created October 31, 2019 13:34
keybase.md

Keybase proof

I hereby claim:

  • I am leojonathanoh on github.
  • I am leojonathanoh (https://keybase.io/leojonathanoh) on keybase.
  • I have a public key ASC4JJQCM1Rs5M5SwcGnIif4H8iD08VJNememsXfg59TxQo

To claim this, I am signing this object:

@leojonathanoh
leojonathanoh / user-profile.psm1
Created August 7, 2019 17:19 — forked from crshnbrn66/user-profile.psm1
PowerShell functions to create a new user profile
<#
.Synopsis
Rough PS functions to create new user profiles
.DESCRIPTION
Call the Create-NewProfile function directly to create a new profile
.EXAMPLE
Create-NewProfile -Username 'testUser1' -Password 'testUser1'
.NOTES
Created by: Josh Rickard (@MS_dministrator) and Thom Schumacher (@driberif)
@leojonathanoh
leojonathanoh / Create-NewProfile.ps1
Created August 7, 2019 16:40 — forked from MSAdministrator/Create-NewProfile.ps1
PowerShell functions to create a new user profile
<#
.Synopsis
Rough PS functions to create new user profiles
.DESCRIPTION
Call the Create-NewProfile function directly to create a new profile
.EXAMPLE
Create-NewProfile -Username 'testUser1' -Password 'testUser1'
.NOTES
Created by: Josh Rickard (@MS_dministrator)
Date: 24MAR2017
@leojonathanoh
leojonathanoh / Powershell_HTTP_Server.MD
Created June 13, 2019 04:59 — forked from jakobii/HTTPServer.ps1
A Basic Powershell Webserver

This is a super SIMPLE example of how to create a very basic powershell webserver

# Http Server
$http = [System.Net.HttpListener]::new() 

# Hostname and port to listen on
$http.Prefixes.Add("http://localhost:8080/")