The following assumes a fresh install of Ubuntu 16.04.01 LTS. First I’m going to modify the sources.list file of apt to allow downloading of sources…
Networking, Politics, and Crypto
The following assumes a fresh install of Ubuntu 16.04.01 LTS. First I’m going to modify the sources.list file of apt to allow downloading of sources…
This post is mainly to share a few scripts I have written which automate the Windows Update of my Server 2016 Core File Server which…
This took me a little while to find the answer to…Hopefully this get indexed well for other’s Google searches… How does Ubuntu 16.04 LTS and…
In order to manually install any Service Pack or Cumulative Update to SQL on Server Core all you need to do is download and run the…
You can use remote desktop / command line for most of this. Just copy all the files to c:temp or something. VMM requires a SQL…
#1. Create a service account for SQL in AD. #2. Add that service account to the computers Local Admin groups. #3. Create a Silent Install…
We’re going to be setting up NGINX to use LET’S ENCRYPT and for this example we’re going to be pointing to a Guacamole server, which…
function Fix-MAC { [CmdletBinding(DefaultParameterSetName=’Upper’)] [OutputType([string])] Param ( # MAC Address [Parameter(Mandatory=$true, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true, ValueFromRemainingArguments=$false, Position=0)] [Parameter(ParameterSetName=’Upper’)] [Parameter(ParameterSetName=’Lower’)] [Parameter(ParameterSetName=’IOS’)] [string[]]$MACS, [Parameter(Mandatory=$False, ParameterSetName=’Lower’)] [switch]$Lower, [Parameter(Mandatory=$False, ParameterSetName=’IOS’)] [switch]$IOS…
I was doing some PowerShell scripts at work and I was typically using Invoke-WebRequest to download files as it’s the simplest method to do so.…
I’ve got some PowerShell scripts that are executed by a service running as “SYSTEM” which runs everything in Session 0 isolation and I needed to…