- Ubuntu 20.04
- nextcloud, fail2ban and e.g. iptables are installed
| # should works on any cloud-init enabled hypervisor (openstack.. ) | |
| # start from a normal ubuntu 20.04 install as minimal was not available for ARM64 | |
| # Since ARM64 machines has higher RAM, Shrinking is desired but not necessary. Instead we will increase tmpfs to 1700MB | |
| # Getting root (if sudo -i doesn't work then set a root password beforehand using 'sudo passwd root' | |
| sudo -i | |
| # make sure we are on the highest kernel, so we can delete all the others ... |
| version: "3.9" | |
| services: | |
| caddy: | |
| image: caddy | |
| restart: unless-stopped | |
| ports: | |
| - "80:80" | |
| - "443:443" | |
| volumes: |
windows_update_toggle.bat v10.1 final
~ one script to rule them all!
~ block build upgrades and/or automatic updates without breawking Store downloads and Defender protection updates
~ there is a lot of focus on Defender updates working independently, unlike any other updates "management" solution
~ ifeo safe blocking with no destructive changes of ownership, deleting files, removing tasks, or over-blocking
~ toggle everything from the Desktop right-click context menu!
but wait, there is more:
~ hide/unhide/install update lists with counter at the Desktop right-click context menu!
Previous update toggle batch suite scripts have been overwritten on pastebin, but will still be available here:
| # Windows PowerShell Script to use restic to backup files using the Volume Shadow Copy Service, allowing | |
| # that are in use to be backed up. The script must be run with elevated privileges. | |
| # The Volume Shadow Copy Service must be enabled for the disk volume that contains the files to be backed up. | |
| # | |
| # Parameters | |
| $resticExe = 'C:\Users\Username\go\bin\restic.exe' | |
| $resticRepository = '\\SYNOLOGY212J\backups\restic-workstation' | |
| $rootVolume = "C:\" | |
| # List of folders to backup, separated by commas | |
| $foldersToBackup = @( |
| # Windows PowerShell Script to use restic to backup files using the Volume Shadow Copy Service, allowing | |
| # that are in use to be backed up. The script must be run with elevated privileges. | |
| # The Volume Shadow Copy Service must be enabled for the disk volume that contains the files to be backed up. | |
| # | |
| # credit: https://github.com/turnkey-commerce | |
| # | |
| # Parameters | |
| $resticExe = 'C:\Users\Username\go\bin\restic.exe' | |
| $resticRepository = '\\SYNOLOGY212J\backups\restic-workstation' | |
| $rootVolume = "C:\" |
dhcp-script=/etc/detect_new_device.sh
Reference:
ℹ️ There is a newer alternative project that does similar things and more, check it out at https://github.com/stevenilsen123/mac-keyboard-behavior-in-windows
Make Windows PC's shortcut act like macOS (Mac OS X) (using AutoHotkey (ahk) script)
With this AutoHotKey script, you can use most macOS style shortcuts (eg, cmd+c, cmd+v, ...) on Windows with a standard PC keyboard.
| # PS-BGInfo | |
| # Powershell script that updates the background image with a random image from a folder and writes out system info text to it. | |
| # run as a lower priority task | |
| [System.Threading.Thread]::CurrentThread.Priority = 'BelowNormal' | |
| # Configuration: | |
| # Font Family name | |
| $font="Input" |
| #!/bin/bash | |
| # | |
| # This script backups an OS X system to an external volume, effectively | |
| # cloning it. It is based on [0], [1] and [2] for OS X and [3] and [4] for | |
| # Linux. One could also use commercial tools like SuperDuper! or Carbon Copy | |
| # Cloner. The latter website has an interesting list[5] on what files to | |
| # exclude when cloning. | |
| # | |
| # Exclusions (from CCC[5]), see rsync_excludes_osx.txt | |
| # |