Categories
How-To Personal Software Technical

ChatGPT plugin for VS.Code

So I asked ChatGPT for advice and here is how it responded to my question. There are a few ChatGPT plugins available for Visual Studio Code. One of the most popular ones is the ChatGPT Extension for VSCode1. This extension allows you to use the unofficial ChatGPT API to generate natural language responses from OpenAI’s ChatGPT to […]

Categories
How-To Software

Install a CA certificate on Red Hat Enterprise Linux

Install/update the latest ca-certificates package.# yum install ca-certificates Enable the dynamic CA configuration feature by running:# update-ca-trust enable Copy the RapidSSL Intermediate CA certificate to the directory /etc/pki/ca-trust/source/anchors/:# cp rapidSSL-ca.crt /etc/pki/ca-trust/source/anchors/ Extract and add the Intermediate CA certificate to the list of trusted CA’s:# update-ca-trust extract Verify the SSL certificate signed by RapidSSL:# openssl verify server.crt server.crt : […]

Categories
How-To

You are not allowed to use Docker. You must be in the “docker-users” group

You may notice an error when attempting to use docker on a windows computer that reads: “You are not allowed to use Docker. You must be in the “docker-users” group error.” To resolve this: Add your user to docker-users named group created under Computer Management/user and groups/groups. Click on docker-users and add your username to […]

Categories
How-To Technical

Website redirecting to another site from search results

I was recently informed by a friend that jermsmit.com was redirecting to another site when clicked on a google search result link. Initially, I thought he may have had some local malware. After a fair amount of time inspecting the web traffic, and review of site configuration, I was able to determine that the redirect […]

Categories
How-To Technical

Install RSAT on Windows 10 1809

Recently updated to Windows 10, version 1809, removed the Remote Server Administration Tools (RSAT) that were previously installed.  This is common with such updates, however, this time around I was unable to reinstall the tools.  After much digging, I discovered that this is because Microsoft has made the RSAT tools a part of the “Features on […]

Categories
How-To Technical

Add multiple SMTP aliases | Exchange Online

The following PowerShell script will add multiple SMTP aliases to all Office 365 and Exchange Online email user accounts: To use the script, save it as a .ps1 file and run it from a PowerShell console with administrator privileges. For example, if you saved the script as add-multiple-smtp-aliases.ps1, you would run it with the following […]