ClickOnce signing from Azure DevOps via Azure Key Vault

To publish a WPF application from a CI DevOps pipeline I needed a command line tool to sign ClickOnce manifests and executables. The certificate is an EV Code Signing Certificate stored in an Azure Key Vault. After some research I found tools to sign executables, but no tools to sign […]

Lees meer

IT Consultancy Breda

Grip op IT. Minder complexiteit. Meer resultaat. Voor veel organisaties in Breda is IT geen ondersteunende afdeling meer — het ís de ruggengraat van de organisatie. Toch ontbreekt vaak overzicht, samenhang of een duidelijke koers. Davici helpt bedrijven in Breda om IT weer beheersbaar, veilig en strategisch inzetbaar te maken. […]

Lees meer

IT Consultancy in Etten-Leur

Strategische IT-oplossingen voor bedrijven in Etten-Leur Ben je gevestigd in Etten-Leur en zoek je een ervaren IT-consultant die meedenkt op strategisch én technisch niveau?Davici ondersteunt organisaties in Etten-Leur met betrouwbare, schaalbare en toekomstbestendige IT-oplossingen. Wij helpen bedrijven bij het optimaliseren van hun IT-omgeving, het verlagen van kosten en het verhogen […]

Lees meer

PostgreSQL powerful LATERAL join

PostgreSQL supports the SQL join type: LATERAL. Useful for creating advanced query’s. What is a LATERAL join? In the PostgreSQL documentation: Subqueries appearing in FROM can be preceded by the key word LATERAL. This allows them to reference columns provided by preceding FROM items. (Without LATERAL, each subquery is evaluated […]

Lees meer

Cleaning Up Git Branches in Azure DevOps

Try again to delete tCleaning up Git branches is needed from time to time to keep the workspace organised. Using Azure DevOps most of the Git housekeeping tasks are automated. A typical default workflow follows these steps:– From a sprint work item, a new remote (feature/bugfix) branch is created.– Commit […]

Lees meer

Disable Visual Studio 2022 IIS security attach warning

Running Visual Studio as administrator is needed to host your web project in IIS. Everytime the debugger is started the “Attach Security Warning” confirmation dialog appears. Modify the registry to disable this.  Follow these steps to modify the private registry file (privateregistry.bin): 1. Close Visual Studio 2022. Start regedit.exe and […]

Lees meer

How to switch the active PostgreSQL cluster

A how to of switching the active PostgreSQL cluster version to make it bind to port 5432. Let’s define the active PostgreSQL cluster as the one that binds to port 5432 and having multiple versions running in Ubuntu. Check with pg_lscluster what is running: And what is the active PostgreSQL […]

Lees meer

Azure Portal Dashboard – Monitoring in een oogopslag

In de Azure Portal is het dashboard een krachtige tool om de status van de systemen te monitoren. Het dashboard is volledig naar wens aan te passen. Voor vrijwel alle systeemonderdelen van Virtual Machine tot AppService is een widget of grafiek op het dashboard te plaatsen. Hieronder een voorbeeld van een […]

Lees meer

The mystery of hanging batch script until keypress

Since Windows 10 and Windows Server 2016 I noticed that sometimes a batch or powershell script is hanging or freezing in the middle of an operation. It continues if the escape key is pressed. This also happens to my console application. So, I run it in debug mode from Visual […]

Lees meer