Category Archives: Software

Autoruns

By | December 4, 2022

When looking at PC performance it is important to understand what is running behind the scenes. Autoruns will show what is in the registry, startup items, scheduled tasks, etc. It can be helpful when looking at system delays (the blue spinning wheel showing up next to your cursor every two seconds). Autoruns for Windows – Sysinternals | Microsoft… Read More »

Bluebeam Performance Issues

By | August 22, 2022

Changing the Rendering Mode in Revu will improve load time and overall performance. In Revu, click Revu > Preference > Advanced > 2D Rendering (tab) Select Wait for completion in the Rendering Mode dropdown menu The Wait for Completion rendering mode disables partial redrawing of the display..

Dell Command Update

By | November 5, 2021

Powershell: #Dell Command Update Repair if(test-path “C:\Program Files\Dell\CommandUpdate”){$Path = “C:\Program Files\Dell\CommandUpdate\dcu-cli.exe”} Else{$Path = “C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe”} Start-Process -FilePath $Path -ArgumentList “/applyupdates

MySQL Service Not Starting

By | September 24, 2021

If a server running MySQL has an improper shutdown, the service cannot be started. This is because 2 files are in a corrupt state. This will cause WordPress sites hosted on the same server to display a database error. To fix this: Open: C:\ProgramData\MySQL\MySQL Server n.n\data Move ib_logfile0 & ib_logfile1 to a temp folder. Start “MySQL nn” Service

Block Outlook from connecting to 365

By | August 10, 2021

Beginning with Office 2016 Outlook auto-connects to 365 upon opening. This causes users to be prompted for credentials if their account is on-premise. To disable this,  run this in PowerShell as the user: Set-ItemProperty -Path HKCU:\software\Microsoft\Office\16.0\Outlook\AutoDiscover -Name ‘ExcludeExplicitO365Endpoint’ -Value 1 -Type DWord -Force

Broken OneNote Links

By | November 12, 2020

These changes in the cloud will break access to OneNote and risk data loss: Username changes involving the domain name. Moving, or renaming a OneNote notebook When this happens, notebook owners will need to reshare their notebooks and all users should look for unlinked notebooks after a domain change.

WordPress Hack

By | September 20, 2020

Hackers first try and access the users database at: /wp-json/wp/v2/users/. If successful you next see repeated attempts to log on to the site, reflected in hits on /wp-login.php & /xmlrpc.php. This is what a WordPress brute force attack looks like: As you can see these hits come from all over the world:

Flex License Manager Update

By | October 17, 2019

The AutoDesk Flex License Manager loads but does not distribute, licenses to versions of Autodesk that are newer than the license manager. The Autodesk products will show an expired or no licenses available message when this happens. The easiest way to update the FLM is to: Install the FLM on a local Windows PC (the Autodesk installer will… Read More »

Samsung Video Server Plug-in

By | August 29, 2019

The plugin will not work, if simply installed with administrative credentials. To install the plug-in: When logged in as the end user, run Internet Explorer as administrator. Log into the video server and run the ActiveX plug-in installer.

OneNote MIA in Office 19’ & 365

By | June 20, 2019

So Microsoft has gone full Alphabet Soup <&@@?$3> when it comes to where you can keep your virtual notebooks. Starting in 2019 you will no longer be storing data anywhere other than in the cloud. More… The temporary fix is to add OneNote 2016. this is also required to access any network based notbooks.

Making PowerShell Interactive

By | January 11, 2019

Turn a Powershell script into an interactive application with: Out-GridView -PassThru | This code will pause your script and present you the data collected in a grid view. You can then select specific items in that view. When you hit OK at the bottom the script will proceed against just the selected items.

Outlook “Signatures” button fails

By | November 7, 2018

If the “Signatures” button fails to open the dialogue box for changing your signature, you can take the following steps: Locate: [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Wow6432Node\CLSID\{0006F03A-0000-0000-C000-000000000046}\LocalServer32] Direct it to outlook.exe This file can be renamed .reg and imported to fix this issue on Office 365: Office365

Exchange Permissions

By | August 16, 2018

You can list all users with Mailbox permissions with this in PowerShell: Get-Mailbox | Get-MailboxPermission | where {$_.user.tostring() -ne “NT AUTHORITY\SELF” -and $_.IsInherited -eq $false} | Select Identity,User | Export-Csv -NoTypeInformation mailboxpermissions.csv