Skip to content

Instantly share code, notes, and snippets.

View mhughes2k's full-sized avatar

Michael Hughes mhughes2k

  • University of Strathclyde, Learning Technology Enhancement Team
  • Glasgow,UK
View GitHub Profile
@joulgs
joulgs / terminal.txt
Last active June 5, 2025 12:47
How install libssl1.1 on ubuntu 22.04
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
@gwblok
gwblok / Reset-TS.ps1
Created January 13, 2020 15:28
Reset-TaskSequence Function - Software Center "Installing" Spinning Wheel Reset
#Reset Task Squence - When Software Center shows "Installing" but nothing is really happening.
function Reset-TaskSequence
{
$OutputText = "Resetting CM Services to clear out TS - Takes about 3 minutes"
CMTraceLog -Message $OutputText -Type 2 -LogFile $LogFile
Set-Service smstsmgr -StartupType manual
Start-Service smstsmgr
start-sleep -Seconds 5
if (Get-CimInstance -Namespace root/ccm -ClassName SMS_MaintenanceTaskRequests )
{