If you work with SCCM you are probably used to create machine/user collections for different purposes, either for assigning apps, either to perform a task sequence and so on. The only issue with this might be the way you get your user/machine list to do these queries. Sometimes you might […]
csharp
Do you want to take a break but your PC is going to sleep or auto-lock if you don’t do anything on it for some minutes? Are the GPO settings not available for you to change the behavior because you are not an admin? Made a simple program in C# […]
A small update was added to the SCCM Query Creator to include 71 popular WQL queries. These queries have been added in a new tab called Query List. These are queries that I have personally used, or gathered via other sources like EnterInIT or Anders Rodland personal blog. I find […]
As you might have seen from my previous SCCM Query Creator project, I wanted to have a simple way to have a list from a text file, which I then outputted in a list view, and then, when I select the name, I would read from an internal embedded text […]
In the last post, we had a look on how to create a C# (CSharp) DLL for MSI Custom Actions, but what if you want to create something more dynamic? What if we want to pass some MSI properties to our DLL, and in our DLL we use those arguments […]
Windows Installer technology offers the possibility to use Visual Basic Scripts, Javascript files or dynamic linked libraries (DLL) as custom actions to control the install/uninstall of a certain product. When discussing about dynamic linked libraries, many think that you can only use C/C++ to create suitable ones for the Windows […]