Skip to content

Instantly share code, notes, and snippets.

View maxfield-allison's full-sized avatar

Maxfield Allison maxfield-allison

View GitHub Profile
@maxfield-allison
maxfield-allison / virt-customize-ubuntu22
Last active May 28, 2024 14:20 — forked from si458/virt-customize-ubuntu22
virt-customize ubuntu22
#!/bin/sh
# Define storage variable
STORAGE=nas
# Install necessary tools
echo "Checking tools"
apt update -y && apt install nano wget curl libguestfs-tools -y
# Remove old image
@maxfield-allison
maxfield-allison / test-asp.asp
Created May 11, 2022 15:28
quick and dirty web server status page
<html>
<body>
<H1>SERVER - <%
Set objWSHNetwork = Server.CreateObject("WScript.Network")
Response.Write objWSHNetwork.ComputerName
%></H1>
<br>
<p>
<b>HTTPS:</b>
<%Response.Write(Request.ServerVariables("HTTPS"))%>