Powershell AD PMC Reset Script
Little dirty helper to prevent forced password change after x day. don’t let the admin know.😉 Import-Module ActiveDirectory Clear-Host # txt file with usernames $TXTFile = "C:\Users\user\Desktop\t...
Little dirty helper to prevent forced password change after x day. don’t let the admin know.😉 Import-Module ActiveDirectory Clear-Host # txt file with usernames $TXTFile = "C:\Users\user\Desktop\t...
The reasonable solution would be to add the -dsaparam option. openssl dhparam -dsaparam -out /etc/ssl/private/dhparam.pem 4096 For comparison. time openssl dhparam -dsaparam -out dhparam.pem 40...
SOCKSPort 0 RunAsDaemon 1 ORPort 9001 ORPort [IPv6 xx:xx:Xx]:9001 Address 255.255.255.255 Nickname [nickname] ContactInfo foo[at]bar[dot]blub DirPort 9091 # what port to advertise for directory con...
Optimierung des Festplattenspeichers mit Journalctl Für Linux-Nutzer ergeben sich gelegentlich Engpässe im Speicherplatz ihres Systems. Ein Bereich, der oft übersehen wird und erheblichen Speicher...
.zshrc öffnen und Text einfügen. nano ~/.zshrc # Keypad # 0 . Enter bindkey -s "^[Op" "0" bindkey -s "^[On" "." bindkey -s "^[OM" "^M" # 1 2 3 bindkey -s "^[Oq" "1" bindkey -s "^[Or" "2" bindkey...
Lust auf ein „aktuelleres“ htop? apt purge -y htop && apt install dh-autoreconf automake build-essential autoconf-archive libncurses-dev git -y && cd /tmp && git clone https...
Fix for the buggy wetter.com plugin for weewx… here is the fixed version. or change the following line in the wetter.py or download the fixed version from github. - txt = response.read().l...
Kurz und bündig. sudo dphys-swapfile swapoff && \ sudo dphys-swapfile uninstall && \ sudo systemctl disable dphys-swapfile && \ systemctl disable dphys-swapfile.service &...
apt install -y dh-autoreconf ruby # #wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz #tar xzf jq-1.6.tar.gz #cd jq-1.6 # wget https://github.com/jqlang/jq/releases/downlo...
Zum Anzeigen der Verzeichnisse mit ssh auf den Volumes. cd /volume[x] find . -type d -name "@eaDir" Und zum Löschen. find . -type d -name "@eaDir" -print0 | xargs -0 rm -rf