Windows: Deploy and Configure DNSSEC
Mar06

Windows: Deploy and Configure DNSSEC

KB ID 0001524 Problem Like many protocols and solutions, DNS was designed in a time when we all trusted each other, and a ‘hacker’ was some sort of farm equipment. To ensure when you get a response form a DNS server it is coming from where you expect it to, and you can trust it. We use DNSSEC. Basically it signs the DNS record with a digital cypher.  The client can then validate the DNS record when it receives it and it...

Read More
Veeam Restore Error: Copying Data from Deduplicated Volumes
Feb26

Veeam Restore Error: Copying Data from Deduplicated Volumes

KB ID 0001521 Problem If you attempt to restore items from a backup of a server where the data was stored on a deduplicated volume, you may see the following error; Copying data from deduplicated volumes requires that the console is installed on Windows Server 2012 R2 or later with the data duplication feature enabled. Restoring files from  deduplicated volumes requires that the mount server associated with the source backup...

Read More
Getting a Servers Serial Number (Remotely)
Dec09

Getting a Servers Serial Number (Remotely)

KB ID 0001493 Problem If you have an iLO/iDRAC/EMM, then logging into these will give you the servers serial number, but what if they are not setup/connected, or you don’t know username or password? Then you can use WMI to discover the serial number. Solution From PowerShell; Get-Ciminstance -classname win32_bios -computername {Server-Name} | format-list serialnumber   Or if you have RDP/Console access , then from an...

Read More
PowerShell: Bulk Add/Remove Users From Groups
Oct15

PowerShell: Bulk Add/Remove Users From Groups

KB ID 0001475 Problem I had to do this a few weeks ago, so I documented it. I had a list of usernames in a CSV file and I needed to bulk-add them to a security group. Bulk Add Group Users Solution Firstly you will need the usernames (sAMAccountNames) in .csv format like so,  (Note: As a header Im using User-Name.) I’ve saved the file to C:\Temp on my server. Execute the following commands; Import-Module ActiveDirectory ...

Read More
PowerShell: Bulk Enable / Disable Users
Sep11

PowerShell: Bulk Enable / Disable Users

KB ID 0001469 Problem I needed to work out how to bulk disable some domain users from a .CSV file this week, so I thought I’d write it up. Disable Domain Users in Bulk from CSV Well firstly, you need to have your users in a CSV file. For the live job I just exported all the SamAccountNames to a CSV, but here for testing I just loaded a few in manually; Then execute the following two commands; Import-Module ActiveDirectory ...

Read More