1. Stop all Veeam 365 services and the NATS-server service.
2. Delete the contents of the “streams” folder located at “C:\ProgramData\Veeam\Backup365\nats\jetstream\$G\streams”.
3. Start the NATS-server service, then start the Veeam 365 services.
Veeam365 – backup jobs that are not completing
November 11th, 2025Turn off directory synchronization for Microsoft 365
May 14th, 2025Install v1.0 and beta Microsoft Graph PowerShell modules
Install-Module Microsoft.Graph -Force
Install-Module Microsoft.Graph.Beta -AllowClobber -Force
# Connect With Hybrid Identity Administrator Account
Connect-MgGraph -scopes “Organization.ReadWrite.All,Directory.ReadWrite.All”
# Verify the current status of the DirSync Type
Get-MgOrganization | Select OnPremisesSyncEnabled
# Store the Tenant ID in a variable named organizationId
$organizationId = (Get-MgOrganization).Id
# Store the False value for the DirSyncEnabled Attribute
$params = @{
onPremisesSyncEnabled = $false
}
# Perform the update
Update-MgOrganization -OrganizationId $organizationId -BodyParameter $params
# Check that the command worked
Get-MgOrganization | Select OnPremisesSyncEnabled
HP – My USB-C port not working
April 16th, 2025Draining the motherboard power completely.
Shutdown computer.
Press and hold the power button and f6 key for 20 seconds.
Wait 5 seconds.
Start computer.
Use PowerShell to parse event log for shutdown events
March 6th, 2025Get-EventLog -LogName system -Source user32 -Newest 1 | fl *
Unbound won’t resolve internal IP.
February 9th, 2025# Allow the domain (and its subdomains) to contain private
# addresses. local-data statements are allowed to contain private
# addresses too.
private-domain: "mydomain.net"
/etc/unbound/unbound.conf.d/pi-hole.conf
Remove the Outlook Auto-mapping for an Exchange Mailbox?
February 6th, 2025Add-MailboxPermission -Identity -User -AccessRights FullAccess -AutoMapping $false
Adobe Print to PDF failing “Aptos not found” … “No PDF file produced”
February 4th, 2025Turns out, Aptos is Microsoft’s new Default Font in Microsoft 365, and Adobe Acrobat apparently doesn’t know what to do with it.
The fix? Go into the Printer Properties for your Adobe PDF printer, and on the Adobe PDF Settings tab, UNCHECK “Rely on system fonts only; do not use document fonts”.

Qemu-guest-agent
December 4th, 2024apt-get install qemu-guest-agent
Assign eDiscovery permissions
October 7th, 2024-
Go to the compliance portal and sign in using an account that can assign permissions.
-
In the left pane, select Roles & scopes > Permissions.
-
On the Permissions page, under Microsoft Purview solutions, select Roles.
-
On the Role groups for Microsoft Purview solutions page, select eDiscovery Manager.
-
On the eDiscovery Manager flyout pane, do one of the following based on the eDiscovery permissions that you want to assign.
- Select Edit.
- On the Manage eDiscovery Manager page, select Choose users.
- Search and select the user (or users) you want to add as an eDiscovery Manager, and then select Select.
- Select Next.
- To assign a user (or users) to the eDiscovery Administrator role group, select Choose users.
- Search and select the user (or users) you want to add as an eDiscovery Administrator, and then select Select.
- Select Next.
- On the Review the role group and finish page, review the role group changes. Select Save to save the changes to the eDiscovery role groups.
Unraid: restart NFS
September 7th, 2024/usr/local/etc/rc.d/rc.nfsd restart