List architecture of all files in a folder

13. September 2020 Uncategorized 0
Familiar with exception BadImageFormatException? Yeah, that still happens as not everyone compiles with Any CPU and when you get one of those, in a service that has like 200 files, you find yourself struggling to understand which exactly file (or files) are not in the suitable architecture (aka bitness). When I got it and began ...

Ooh, Shiny!

I finally got a domain I like – Patrick.Dev and after several try-and-fail attempts to configure WordPress, succeeded creating it under BlueHost provider. Which actually not only saved me a few bucks but was also extremely easy to install and configure and have reach configuration options available (plugins, themes, statistics, etc.). Recommended! Anyway, here is ...

Varonis PowerShell: Adding and removing Windows file server

How to add Windows file server by using Varonis PowerShell? It is rather easy, following the same guidelines as outlined in first post: call to New-WindowsFileServer to create a new object and then Add-FileServer to commit the changes. Going deeper – we can explore various configuration options of the object returned by New-WindowsFileServer. It contains property Config which ...

Automating Azure VM creation

For one of the projects I needed to re-create a VM over and over. So at some point it was very annoying to do the same dumb work more than twice. I have decided to write a PowerShell script that does that for me. Of course I didn’t stop with a single VM, instead came up ...

Sound detection with Microphone sensor

The setting contains microphone and 3 leds. The program will react to repeated noise, such as double clap, and will light the next LED or turn them off when all 3 are already lid. This is some basic demonstration for sound detection and managing lights with claps. Not production ready! Parts: Arduino Uno Breadboard 3 LEDs ...

The term ‘Update-Database’ is not recognized

I was installing NuGet Gallery server and following the guide until I got into error saying that there is no Update-Database command: Update-Database : The term ‘Update-Database’ is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify ...

Starting with Varonis PowerShell Management API

Did you know that Varonis have a powerful PowerShell Management API? It allows deployment and configuration of various resources, like file servers, collectors, domains, etc. It is being constantly developed and improved. To get started with it, open PowerShell prompt or ISE on the machine where Varonis Management Console is installed and type: [crayon-6639145b7c5f9337037252/] Now you ...