Skip to content

Instantly share code, notes, and snippets.

@Issykul
Issykul / Office 2016 ISO Links at Microsoft.md
Created July 31, 2022 20:43
Office 2016 ISO Links at Microsoft
@etng
etng / virt-install-centos
Created October 22, 2019 05:50 — forked from giovtorres/virt-install-centos
Install CentOS cloud images on KVM using cloud-init
#!/bin/bash
## **Updates to this file are now at https://github.com/giovtorres/kvm-install-vm.**
## **This updated version has more options and less hardcoded variables.**
# Take one argument from the commandline: VM name
if ! [ $# -eq 1 ]; then
echo "Usage: $0 <node-name>"
exit 1
fi
@amit213
amit213 / Convert Evaluation Edition to Volume.txt
Created January 27, 2019 03:14 — forked from CHEF-KOCH/Convert Evaluation Edition to Volume.txt
Windows Server LTSC 2019 RTM Evaluations 180 days
Open PowerShell and type:
Standard Edition:
DISM /online /Set-edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula
DataCenter Edition:
DISM /online /Set-edition:ServerDatacenter /ProductKey:WMDGN-G9PQG-XVVXX-R3X43-63DFG /AcceptEula
@jerodg
jerodg / windows_and_office_kms_setup.adoc
Last active April 25, 2025 03:02
Activate Windows and Office Using KMS Server

Microsoft Windows and Office KMS Setup

@rleopold
rleopold / wifi-forget.ps1
Created November 30, 2016 21:14
a quick powershell script to make forgetting wifi networks easier
$networks = netsh wlan show profiles | select-string 'All User Profile'
if($networks.Count -gt 0) {
$(foreach ($item in $networks) {
$item.Line.Split(':')[1].Trim()
}) | Out-GridView -Title 'Select one or more neowrks to forget' -OutputMode Multiple |
foreach {
netsh wlan delete profile name = "$_"
}
}