Written for fairly adept technical users, preferably of Debian GNU/Linux, not for absolute beginners.
You'll probably be working with a single smartcard, so you'll want only one primary key ( |
namespace Analogy | |
{ | |
/// <summary> | |
/// This example shows that a library that needs access to target .NET Standard 1.3 | |
/// can only access APIs available in that .NET Standard. Even though similar the APIs exist on .NET | |
/// Framework 4.5, it implements a version of .NET Standard that isn't compatible with the library. | |
/// </summary>INetCoreApp10 | |
class Example1 | |
{ | |
public void Net45Application(INetFramework45 platform) |
#Deal with the challenge for each SAN | |
$i=0 | |
foreach ($subDomain in $domains) { | |
$i++ | |
$alias = 'dns' + $i | |
New-ACMEIdentifier -Dns $subDomain -Alias $alias | |
$completedChallenge = Complete-ACMEChallenge $alias -ChallengeType dns-01 -Handler manual | |
$dnsRRName = ($completedChallenge.Challenges | Where-Object {$_.Type -eq "dns-01"}).Challenge.RecordName | |
$dnsRRName = $dnsRRName.TrimEnd(".example.com") | |
$dnsRRValue = ($completedChallenge.Challenges | Where-Object {$_.Type -eq "dns-01"}).Challenge.RecordValue |
#!/bin/bash | |
# Setup your Domain | |
DOMAIN="<domain_name_here>" | |
DEHYDRATED_CERTS="/home/dehydrated/certs/$DOMAIN" | |
# Stop the services | |
echo "Stopping services..." | |
service nginx stop | |
service unifi stop |
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Signatures] | |
"XAdESLevel"=dword:00000002 | |
"MinXAdESLevel"=dword:00000002 | |
"TSALocation"="http://timestamp.comodoca.com" |
work/ | |
InstallUtil.InstallLog |
You'll probably be working with a single smartcard, so you'll want only one primary key ( |
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
$cmdbar_name = 'ReSharper (Custom)' | |
$ctrl_caption = 'Toggle ReSharper' | |
$cmdbar = $DTE.CommandBars[$cmdbar_name] | |
if (-not $cmdbar) { | |
Write-Host "Creating '$cmdbar_name' toolbar..." | |
$cmdbar = $DTE.Commands.AddCommandBar($cmdbar_name, [EnvDTE.vsCommandBarType]::vsCommandBarTypeToolbar) | |
} | |
if (-not ($cmdbar.Controls | Where-Object Caption -eq $ctrl_caption)) { |