Skip to content

Instantly share code, notes, and snippets.

@mt7479
mt7479 / gog-notify.py
Last active May 30, 2018 10:17 — forked from steevp/gog-notify.py
Checks for new GOG Connect games
#!/usr/bin/env python2
# Script to check for new GOG Connect games
#
# Configure your system for sending emails first. I used:
# https://www.howtoforge.com/tutorial/configure-postfix-to-use-gmail-as-a-mail-relay/
import requests
import browsercookie
import json
import smtplib
from email.mime.text import MIMEText
@mt7479
mt7479 / windows10-recovery-partition-sizes.md
Last active November 22, 2017 09:17
Windows 10 recovery partition sizes
@mt7479
mt7479 / CorrectRecoveryPartitionSize.ps1
Last active April 27, 2024 22:27
Resize the recovery partition on Windows 10 Systems to save some space
<#
Correct the default UEFI partition layout created by ConfigMgr to save some disk space.
https://docs.microsoft.com/de-de/windows-hardware/manufacture/desktop/configure-uefigpt-based-hard-drive-partitions
## Notes:
* The recovery partition size for Windows 10 1703 needs to be at least 900 MB or the partition will ignored.
* Windows 10 1511 Winre.wim size: 313.009.179 Bytes
* Windows 10 1607 Winre.wim size: 324.995.101 Bytes
@mt7479
mt7479 / sccm-fsp-notes.md
Last active September 30, 2023 19:45
Notes on the Fallback Status Point

Notes on the Fallback Status Point

I recently was challenged by moving to the FSP to a different location and started researching the available documentation which leaves, to be blunt, much room for improvements.

Most of my findings deal with implementation of Internet Based Client Management but could be useful in an Intranet environment also.

This gist is a attempted write-up of all the stuff I could put together before and after this reddit post.

Facts

Some short instructions for the people struggling with the installation (debian/ubuntu). This will install the dependencies inside a python virtualenv.

install python 3.4 and virutalenv

sudo apt-get install python3.4 python-virtualenv

clone the repository

git clone https://github.com/siacs/HttpUploadComponent httpupload
cd httpupload

Some short instructions for the people struggling with the installation (debian/ubuntu) This will do a side wide installation of the dependencies, and we will use nginx to proxy our requests.

install python 3.4 and pip3

sudo apt-get install python3.4 python3-pip

clone the repository

git clone https://github.com/siacs/HttpUploadComponent httpupload
sudo mv httpupload /usr/local/share