If stuck:
echo 1 > /proc/sys/kernel/sysrq
echo b > /proc/sysrq-trigger
untony.orgIf stuck:
echo 1 > /proc/sys/kernel/sysrq
echo b > /proc/sysrq-trigger
On Windows, the 255/260 character path limit is a classic problem. Here are the reliable, IT‑proven ways to delete folders/files that are “too long” to delete, starting from the safest and fastest options.
This is the most reliable method in enterprise environments.
Create an empty folder: mkdir C:\empty
Mirror the empty folder onto the problematic folder:
robocopy C:\empty „C:\very\long\path\to\problematic\folder“ /MIR
Delete the now-empty folder normally
As the download Link went offline mRemoteNG-Installer-1.76.20.24615.msi available here.
Faking Mails with cutomized sender:
mail -s "Everything possible" -aFrom:bill.gargantur@iliketobeanemailfaker.com recipient@maildomain.com < /dev/null
*Will be delivered into spamfolder or not delivered cause SPF checks that mailsender is not authorized sender of the maildomain –> only if accurate spamsolution/SPF is implemented on recipient side
Some time ago I set up a Raspberry and expanded the filesystem to 16GB. Unfortunately I wanted to share the Image afterwards. I tried to reduce the size the easy way and succeeded. Procecure was:
– Created the *.img from the SD-Card of Raspberry via Win32Imager (via Read function)
– Copied the big *.img to a USB Stick (32 GB)
– Created Linux Live CD (Linux Mint) and wrote it to a USB-Stick to boot from it afterwards
– of course also plugged in the USB Stick with the img
– mounted the USB Drive and opened a Console and changed the dir (cd) where the image is
After booting into Linux Mint
– I installed quemu utils via
sudo apt-get install qemu-utils
– checked the img via
fdisk -l image.img
I saw that there are 2 partitions holding only 2,1 Gigs so I did
qemu-img resize vdisk.img 3GB
afterwards I wrote the img to an SD-Card and booted it successfully in a RPI3
Alternative would be: https://www.instructables.com/id/How-to-BackUp-and-Shrink-Your-Raspberry-Pi-Image/

glider.untony.org is now online and providing some content (Documentation and Links).
A subpage regarding OpenGlider Network soon to come (glider.untony.org)
Script copies UltraVNC to target client (C:\vnc\) and executes UltraVNC with configurable settings. Launches VNC Viewer afterwards and removes VNC (optional).
Requirements and Usage: - Copy psexec.exe to C:\Windows - Run the Powershell with Admin-Rights / elevated Console - User has to be admin on the target and local machine - Default password = 123
– Save the Script and create a folder on the same level called „UltraVNC“
– Copy UltraVNC Programm Files to the UltraVNC folder
– Run vnc_deploy.ps1 (elevated, user has to be admin on the targeted client)
The ACL part is variable if you use it in an Domain environment. Start uvnc_settings.exe and configure Domain Access with groups or edit the *ultravnc.ini and change to:
[ultravnc] passwd=000000000000000000 passwd2=000000000000000000 [admin] UseRegistry=0 MSLogonRequired=1 NewMSLogon=1 And change acl.txt
#PowershellScript vnc_deploy.ps1:
# Administrator Privilige needed for Execution Policy Change
Set-ExecutionPolicy RemoteSigned
write "---------------------------------------------"
write "VNC Remote Access"
write "---------------------------------------------"
write "(1) Connect without permission(1)"
write "(2) Ask user for permission (2)"
$q = read-host "(1/2)"
switch ($q)
{
"1" {
$Hostname_PS = read-host "Enter hostname"
write "---------------------------------------------"
write "Install VNC on remote host"
write "---------------------------------------------"
copy-item UltraVNC\ -dest \\$Hostname_PS\c$\vnc -recurse
write "Assigning Config"
copy-item \\$Hostname_PS\c$\vnc\NOprompt_ultravnc.ini -dest \\$Hostname_PS\c$\vnc\ultravnc.ini -recurse
psexec \\$Hostname_PS C:\vnc\winvnc.exe -service loadinf=C:\vnc\NOprompt_ultravnc.ini
write "VNC copied to $Hostname_PS "
write "---------------------------------------------"
write "Assign security settings"
psexec \\$Hostname_PS C:\vnc\MSLogonACL.exe /i /o C:\vnc\acl.txt
write "starting VNC service"
psexec \\$Hostname_PS C:\vnc\winvnc.exe -install
start-sleep -s 5
write "---------------------------------------------"}
"2" {
$Hostname_PS = read-host "Enter hostname"
write "---------------------------------------------"
write "Install VNC on remote host"
write "---------------------------------------------"
copy-item UltraVNC\ -dest \\$Hostname_PS\c$\vnc -recurse
write "VNC copied to $Hostname_PS"
write "---------------------------------------------"
write "Assigning Config"
copy-item \\$Hostname_PS\c$\vnc\prompt_ultravnc.ini -dest \\$Hostname_PS\c$\vnc\ultravnc.ini -recurse
psexec \\$Hostname_PS C:\vnc\winvnc.exe -service loadinf=C:\vnc\prompt_ultravnc.ini
write "Assign security settings"
psexec \\$Hostname_PS C:\vnc\MSLogonACL.exe /i /o C:\vnc\UltraVNC\acl.txt
write "Starting VNC service"
psexec \\$Hostname_PS C:\vnc\winvnc.exe -install
start-sleep -s 5
write "---------------------------------------------"}}
write "Connecting to $Hostname_PS"
& UltraVNC\vncviewer.exe -connect $Hostname_PS -quickoption 7
write "---------------------------------------------"
write "---------------------------------------------"
write "---------------------------------------------"
write "---------------------------------------------"
$Pause = read-host "Enter any to uninstall VNC"
write $Pause
psexec \\$Hostname_PS C:\vnc\winvnc.exe -uninstall
start-sleep -s 5
Remove-Item \\$Hostname_PS\c$\vnc -recurse
write "---------------------------------------------"