slmgr /ipk your_license_key
Replace your_license_key
with following volumn license keys according to Windows Edition:
// HTML | |
<p class="pretty-text-underline">Pretty text underline without clipping descending letters.</p> | |
// CSS | |
.pretty-text-underline { | |
display: inline; | |
font-size: 1.25rem; | |
text-shadow: 1px 1px 0 #f5f6f9, | |
-1px 1px 0 #f5f6f9, | |
-1px -1px 0 #f5f6f9, |
{ | |
"name": "AzureBlobStore", | |
"properties": { | |
"type": "AzureStorage", | |
"activities": [ | |
{ | |
"type": "Copy", | |
"scheduler": { | |
"frequency": "Week", | |
"interval": 1 |
[CmdletBinding()] | |
Param | |
( | |
[Parameter(Mandatory=$false, | |
ValueFromPipelineByPropertyName=$true, | |
ValueFromPipeline=$true | |
)] | |
[string[]]$ComputerName = $env:COMPUTERNAME | |
) |
#!/bin/bash | |
# rui@deniable.org | |
# http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15217-copy-configs-snmp.html | |
# http://tools.cisco.com/Support/SNMP/do/BrowseOID.do | |
# ftp://ftp.cisco.com/pub/mibs/oid/CISCO-CONFIG-COPY-MIB.oid | |
# hint: username <username> privilege 15 password 0 <password> | |
check_tools() { | |
SNMPSET=`which snmpset` | |
SNMPGET=`which snmpget` |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Add React in One Minute</title> | |
</head> | |
<body> | |
<h2>Add React in One Minute</h2> | |
<p>This page demonstrates using React with no build tooling.</p> |
#!/bin/bash | |
# Clone all github.com repositories for a specified user. | |
if [ $# -eq 0 ] | |
then | |
echo "Usage: $0 <user_name> " | |
exit; | |
fi |
<?xml version="1.0" encoding="utf-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>My Feeds</title> | |
</head> | |
<body> | |
<outline text="24 ways" htmlUrl="http://24ways.org/" type="rss" xmlUrl="http://feeds.feedburner.com/24ways"/> | |
<outline text="2ality – JavaScript and more" htmlUrl="http://www.2ality.com/" type="rss" xmlUrl="http://feeds.feedburner.com/2ality"/> | |
<outline text="456 Berea Street" htmlUrl="http://www.456bereastreet.com/" type="rss" xmlUrl="http://feeds.feedburner.com/456bereastreet"/> | |
<outline text="@verekia's blog" htmlUrl="http://verekia.com" type="rss" xmlUrl="http://verekia.com/feed"/> |
#requires -version 4.0 | |
Function Get-LocalGroupMember { | |
<# | |
.SYNOPSIS | |
Get local group membership using ADSI. | |
.DESCRIPTION | |
This command uses ADSI to connect to a server and enumerate the members of a local group. By default it will retrieve members of the local Administrators group. |
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>FadingIN</title> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
window.onload = function() {$('.fade_img').hide().fadeIn(1000);}; | |
}); |