PowerShell mit Mehrwert
Nerd Fonts, Download Oh My Posh (a prompt theme engine) PowerShell mit Terminal Icons siehe auch...
Nerd Fonts, Download Oh My Posh (a prompt theme engine) PowerShell mit Terminal Icons siehe auch...
OpenLDAP unter Ubuntu 22.04 LDAP and Transport Layer Security LDIF-Dateien verwenden OpenLDAP memberOf overlay + memberof overlay dpkg-reconfigure slapd slapcat ldapadd -x -D "cn=admin,dc=abc,dc=app" -W -f ldap/01_add_init.ldif openssl s_client -connect…
JXplorer is a cross platform LDAP browser and editor. Beim Zertifikatsimport wird ein Keystore Password abgefragt. Ohne Anpassung wird "changeit" verwendet.
Filter von Duplicati mit Kommandozeile prüfen: c:\Duplicati\Duplicati.CommandLine.exe test-filters R:\ --include=R:\*.docx --exclude=R:\* siehe auch Restic
Dim gPID Function BPM_OnCreate(DCRoot) gPID = InputBox("Welche Prozess-ID?", "Frage", "XX") End Function Function BPM_OnProcessBatch(DCBatch) 'eine ID setzen iDocCount = DCBatch.GetDocumentCount For i = 0 To iDocCount - 1 Set DCTempDocument…
Dim g_DirToHoldFiles Function DPM_OnCreate(DCRoot) g_DirToHoldFiles = "E:\temp\referenz" End Function Function DPM_OnProcessDocument(DCDocument) SaveTifAndAddx(DCDocument) End Function Function SaveTifAndAddx(DCDocument) 'FileSystem-Objekt öffnen set fso = CreateObject("Scripting.FileSystemObject") 'Verzeichnis If not fso.FolderExists(g_DirToHoldFiles) Then f = fso.CreateFolder(g_DirToHoldFiles)…
Function DPM_OnOpenBatch(DCBatch) nDocument = DCBatch.GetDocumentCount For i = 0 To nDocument - 1 Set DCDoc = DCBatch.GetDocument(i) nAttribute = DCDoc.GetAttributecount For a = 0 To nAttribute - 1 Attribute =…
var xhr = new XMLHttpRequest(); xhr.open("POST", "/service", true); xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded"); var a = document.getElementById("post_param_a").value; var b = document.getElementById("post_param_b").value; var params = "a=" + a + "&b=" + b; xhr.send(params); xhr.onload =…