On the command prompt, type screen
. Run the desired program. Use the key sequence ctrl-a + ctrl-d
to detach from the screen session. Reattach to the screen session by typing screen -r
.
$ screen -list
or
#!/bin/sh | |
RCLONE_CONF=$(pwd)/rclone.conf | |
RCLONE_SRC=gdrive:/cismet/backups/ | |
ROTATE_BACKUPS_PATH="*" | |
ROTATE_BACKUPS_OPTIONS="--dry-run --daily=10 --weekly=5 --monthly=13 --yearly=5" | |
# === | |
DATA=$(pwd)/data |
(In both Windows) | |
1. Go to C:\Users\{USER}\AppData\Roaming\AnyDesk | |
2. Copy & Paste 'thumbnails' | |
3. Open 'user.conf' | |
4. Replace the line 'ad.roster.items=' | |
5. Done. |
if (-not (Test-Path -Path "C:\\certs\\win-acme")) { | |
$url = "https://github.com/win-acme/win-acme/releases/download/v2.1.7/win-acme.v2.1.7.807.x64.pluggable.zip" | |
$output = "C:\\certs\\win-acme.zip" | |
Invoke-WebRequest -Uri $url -OutFile $output | |
Expand-Archive "C:\\certs\\win-acme.zip" -DestinationPath "C:\\certs\\win-acme" | |
} | |
cd "C:\\certs\\win-acme" |
NOTE: Content below is written by Adrian Mace. Click here for an updated version.
Below are the key settings that I apply on any unifi installation for optimal performance.
Enable Advanced Features
is enabledWindows Registry Editor Version 5.00 | |
; Edit with Notepad++ in Windows 11 contextmenu - by AveYo (https://gist.github.com/AveYo) | |
[-HKEY_CURRENT_USER\Software\Classes\*\shell\extract] | |
[HKEY_CURRENT_USER\Software\Classes\*\shell\extract] | |
"MuiVerb"="Edit with &Notepad++" | |
"Icon"="C:\\Program Files\\Notepad++\\notepad++.exe,0" | |
"MultiSelectModel"="Player" | |
"NeverDefault"="" | |
"AppliesTo"="NOT .zip" |
This example runs a RustDesk server (with detailed/debug logs enabled and secured with id_ed25519 key that only you can use in your machines if you configure RustDesk clients) and you can use the server resources instead of RustDesk public resources.
docker-compose.yaml
file and run sudo docker-compose up
$ErrorActionPreference= 'SilentlyContinue' | |
$server_ip = Read-Host -Prompt 'Enter the server IP (<Enter> for none)' | |
$server_key = Read-Host -Prompt 'Enter the server public key (<Enter> for none)' | |
$rustdesk_pw = Read-Host -Prompt 'Enter a permanent password (<Enter> for random)' | |
# Generate a random password if none is provided | |
if ($rustdesk_pw -eq '') | |
{ | |
$rustdesk_pw = -join ((65..90) + (97..122) + (48..57) | Get-Random -Count 16 | % { [char]$_ }) |