This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 ) | |
{ |