Resolve IP and DNS with Powershell tool

I’ve been asked to prepare a simple tool which would: Resolve IP address or DNS Return all results to table Import addresses from a file The reason behind was to check how IP/DNS records change over the period of time, therefore there was a need for something like that: A file with all addresses in question Tool which could import all these addresses and resolve them Save the results into a new file Once having at least a couple of files, the results could be compared....

29 April 2018 · 2 min · 356 words · Kamil

Ultimate Windows Update fix

The reason I manage hundreds of workstations working on various Windows versions. As we know, Windows (and other Microsoft’s software) is updated monthly. While usually the process is just working fine, sometimes it simply doesn’t want to work. And yes, probably Google is your best friend here… but really, who has time to search for the solution, and apply it, manually, if there is more than 1 computer? Use the script I used technet, different posts and own knowledge of fixing that kind of issues....

29 October 2017 · 2 min · 374 words · Kamil

Powershell – resolve full names to usernames from CSV file

It’s unbelievable how long it took me to figure out this simple Powershell script, but yet it does the trick :). Often you receive a request to do a certain action with a bunch of accounts, and (obviously) the list provided contains the full names rather usernames. Pain to do it manually, but yet we can utilise Powershell here. What you need: CSV file, with only one column, and the header of the column must be called “Name”, if you prefer to use something different, simply amend Name in line 6 to reflect your header....

21 October 2017 · 1 min · 181 words · Kamil

Add any drivers to Windows – on example of GPU drivers

Today we are going to inject drivers into the Windows image with the help of built-in tools in Windows. What do you need? Just a few things: Any hardware to which you’d like drivers to be added to Reference computer with the hardware attached to it Drivers Windows image which is going to be deployed I think there’s not much to explain, so let’s analyse the actual process. What we are going to do?...

29 May 2017 · 8 min · 1594 words · Kamil

Mastering PNPUTIL – how to add drivers to the Windows image

Drivers – that’s what makes a harmony between hardware and software. Appropriate drivers can make a huge difference between computer’s performance, stability and even temperature. Therefore it’s super important to make sure you’ve got up-to-date files included with your image or Windows installation. We are going to review PNPUTIL tool – the versatile tool for handling drivers within the Windows. Why do you need PNPUTIL? Yes, why bother with some command line tool (PNPUTIL is command line only) when there are dedicated installers and device manager?...

1 May 2017 · 5 min · 870 words · Kamil