Welcome to My Blog
IT related tech tips since 2006How to Check the Current DKIM Selector in an Microsoft 365 Tenant using Powershell
Connect-ExchangeOnline Get-DkimSigningConfig -Identity toggen.com.au | Format-List Run the above powershell substituting toggen.com.au with the custom domain in your tenant you want to know which dkim selector is the active one. Find the RotateOnDate in the example...
Unifi UDM to Azure Site to Site VPN Notes
The GUI doesn't keep some of the settings you set. But these worked for me. This doesn't include the Azure setup. Settings for UDM Name: TGN-MEL-AZR Name can be anything you want. I like to do <company prefix ><local site><remote site> e.g TGN is...
The card supplied requested drivers that are not present on this system. Please try another card
Using mstsc on Windows 2008R2 Server to connect to Windows 2003 Server. !!Old school!! And getting an error message dialog with this text: The card supplied requested drivers that are not present on this system. Please try another card Fix Open Remote Desktop...
Memtester the Chuck Testa of memory testers
Just putting this here for future reference. For the record the reason I did this test was because I have a Ubuntu 20.04 workstation that had some disk corruption. I also noticed that my Windows 10 VMWare workstation guest was blue screening with a stop error which...
Using Curl & Powershell to POST Form Data to CakePHP
CakePHP 2 Form and trying to POST to it using curl This is what I am trying to duplicate with curl -----------------------------1993502965129257581246610166 Content-Disposition: form-data; name="_method" POST -----------------------------1993502965129257581246610166...
VSCode into Remote Docker Host Container XDebug
I have another post that is VSCode on Windows 10 SSH into remote host and working in the project source directory then Xdebug This post is different as it connecting to the Remote Docker Container and working inside the container. VSCode running on Windows 10 Remote...
VMWare Workstation Pro on Secure Boot Ubuntu
I enabled secure boot on my Ubuntu 20.04 workstation running VMWare Workstation Pro. Problem: Every time the kernel is upgraded VMWare cannot load its unsigned kernel modules Cause: Secure boot means that all kernel modules have to be marked as trusted by the secure...
How to print a PDF from the command line and scale it on Linux
What I want to do: Print an A6 PDF centred on an A4 page from the command line on Linux What I tried: Tried to use evince and Firefox but they have no command line print options for linux. What worked: Calculate the margins and run lp or lpr by doing the following...
Implement SSCC Label Printing using Apache FOP, Barcode4j and XML
Note: Note to anyone reading this that knows XSLT/XML. How do I get the below XSL to loop twice so it creates two label pages for each node of this for-each loop <xsl:for-each select="DETAIL/SHIPMENT/STORE/TARE"> WITHOUT duplicating the entire tree of XSLT?...