This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Base64 algorithm borrowed from https://en.wikibooks.org/wiki/Algorithm_Implementation/Miscellaneous/Base64 | |
function ConvertTo-Base64String ($string) | |
{ | |
$base64chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" | |
$result = [System.Text.StringBuilder]::new() | |
$pad = "" | |
$count = $string.Length % 3; | |
# string needs to be multiple of 3 characters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define the PS code to embed in the XML below here. | |
$sb = { | |
# Make sure we control the specific strict mode in effect. | |
# (The strict-mode setting is inherited from the parent scope.) | |
Set-StrictMode -Version 1 | |
# Save the error record at hand as well as its invocation info. | |
$err = $_ | |
$myInv = $err.InvocationInfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PowerShell remoting over SSH | |
## Configuring Windows | |
### Install SSHD as Feature on Demand | |
### Modify sshd_config for powershell subsystem | |
## SSH remoting | |
ssh –l user@domain computer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Side-by-side | |
## Use PSCore6 w/ elevation | |
Invoke-WebRequest https://github.com/PowerShell/PowerShell/releases/download/v6.1.0/PowerShell-6.1.0-win-x64.zip -OutFile pwsh61.zip | |
Unblock-File pwsh61.zip | |
Expand-Archive pwsh61.zip | |
## PowerShell.exe vs Pwsh.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Single script for Windows PowerShell and PowerShell Core | |
## Use PSEdition | |
@' | |
if ($PSVersionTable.PSEdition -eq "Core") | |
{ "PowerShell Core!" } | |
else | |
{ "Windows PowerShell!" } | |
'@ > both.ps1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param($commandLine, [pscredential]$credential) | |
$csharp = @' | |
using System; | |
using System.Runtime.InteropServices; | |
public class Advapi32 | |
{ | |
[DllImport("advapi32.dll", SetLastError=true, CharSet=CharSet.Unicode)] | |
public static extern bool CreateProcessWithLogonW( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI -Preview" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage example for one commit per directory: | |
# dir -Recurse -Path . -Directory | % { $dir = $_; dir -path $dir.fullname *.cs | % { ~/test/update-code.ps1 -path $_.fullname; git add $_.fullname }; git commit -m "Update $($dir.name)" } | |
param($path) | |
$src = Get-Content $path -Raw | |
$skip = " get; set; " | |
# this matches a closing brace that is not followed by: | |
# catch, else, finally, another closing brace, newline, space, hash, slash (comment), * (comment) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@" | |
class foo | |
{ | |
[string] static bar([string] $text) | |
{ | |
return $text | |
} | |
} | |
"@ > class.psm1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -Version 7 | |
# Version 1.2.13 | |
# check if newer version | |
$gistUrl = "https://api.github.com/gists/a208d2bd924691bae7ec7904cab0bd8e" | |
$latestVersionFile = [System.IO.Path]::Combine("$HOME",'.latest_profile_version') | |
$versionRegEx = "# Version (?<version>\d+\.\d+\.\d+)" | |
if ([System.IO.File]::Exists($latestVersionFile)) { |
OlderNewer