Minecraft Server Docker Image

Dockerfile Create a Dockerfile for the minecraft server image with the following: FROM ubuntu:xenial MAINTAINER Richard Meyer ENV MINECRAFT_VERSION 1.11.2 ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update && apt-get -y upgrade && apt-get install --no-install-recommends -y -q \ software-properties-common \ && apt-add-repository -y ppa:webupd8team/java \ && apt-get -y update \ && echo…

How to get ASP.NET MVC3 Working under Mono 2.10 (Ubuntu 12.10)

I've managed to get Mono [http://www.mono-project.com/] (version 2.10.8.1) working with MVC3 in my Apache server through mod-mono and mono-server4. Update: Included a DirectoryMatch configuration for securing various ASP.net directories. Visual Studio Project Settings Required References (Copy Local: True): * System.Web.Mvc * System.Web.…

Updating User Workstations through PowerShell

Below is a simple PowerShell script that can be used to search for all currently restricted accounts in Active Directory (accounts who have a value for userWorkstations), and update their list of workstations by adding/removing hosts as needed. This script might be most useful in a scenario where you…

Using PowerShell to Retrieve DCs within a Specific Domain

The following example will use a remote PowerShell session to query a list of domain controllers under a domain name, and return the first result. Note: This does not verify that the domain controller is online and responding to queries! ///

/// Returns a domain controller from the specified domain /// /// The domain…

Exchange Remote PowerShell - PSLanguageMode to FullLanguage

How many developers have encountered the following errors when attempting to write remote PowerShell commands against Exchange? Function declarations are not allowed in restricted language mode or a Data section. Property references are not allowed in restricted language mode or a Data section. Assignment statements are not allowed in restricted…