Windows – Stop the Welcome to Internet Explorer from launching via GPO
KB ID 0000459 Problem If your’e logging on as a new user and Internet Explorer has not yet been ran, then it wants to run the “Setup Windows Internet Explorer Wizard”. On just one machine with one user that’s fine, but if you are logging in all over the place, with multiple credentials, this can get quite annoying. Also you might not want your domain users having to do this at all, for security reasons....
Recovering Windows Activation Keys
KB ID 0001115 “Have you got one of those programs that gets the Windows key?”, My colleague asked me the other week. I said “Just download a key finder application?”, “Yeah I’ve tried that and is showing the code as all B’s”. You may also just see ‘Product key was not found’ on some software. I sent him some more links and got back to what I was doing. He was having no joy...
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...
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 ...
Veeam Repository: ReFS with 64 KB Block Popup
KB ID 0001452 Problem When adding a ‘Backup Repository’ to Veeam you may see one of the following; The file system on the specified volume does not support fast cloning. We recommend using ReFS volume formatted with 64 KB cluster size. Proceed anyway? The specified ReFS volume is formatted with 4 KB cluster size. We recommend formatting the volume with 64 KB cluster size. Proceed anyway? Solution Without going into what...