About

About

TIMVKN.NL hosts a repository of scripts and patterns I have created over the course of time.

My Frequently Used CLI Commands / Admin Tools (QuickRef)DescriptionCategory
dsa.msc / adsiedit.msc / virtmgmt.msc Active Directory Users & Computers / ADSI Edit / Hyper-V ManagerMSWin
start-process powershell -verb runasStart PowerShell with Elevated PrivilegesMSWin
rundll32 sysdm.cpl,EditEnvironmentVariablesEdit system environment variablesMSWin
cacls “C:\Path\To\File.TXT” /E /G username@example.com:CQuick way to add write permission to a filesystem resourceMSWin
mvn clean package -DskipTestsMavin compile (Java) code and create local packageGNU/Linux (Java)
mvn test -Dtest=JavaClassTest#specificTestRun a specific unit test from the command lineGNU/Linux (Java)
java -Djavax.net.debug=ssl:handshake -jar target/packagename-1.0.0-SNAPSHOT.jarStart package with TLS handshake debugging enabledGNU/Linux (Java)
oc create secret generic gateway1 –from-file=server.p12Create an OpenShift secret from the command lineGNU/Linux (OpenShift)
oc get pods | grep Evicted | awk ‘{print $1}’ | xargs oc delete podDelete evicted pods from current OpenShift projectGNU/Linux (OpenShift)