Roll Back Office to Specific Version

This is useful if you have an add-in that doesn’t work on a current version of Office. I created an SCCM package to perform the downgrade.   :: Enable Office Updates “C:\Program Files\Common Files\microsoft shared\ClickToRun\officec2rclient.exe” /changesetting UpdatesEnabled=True :: Perform Downgrade “C:\Program Files\Common Files\microsoft shared\ClickToRun\officec2rclient.exe” /update user updatetoversion=16.0.17726.20160 DisplayLevel=false :: Disable Office Updates “C:\Program Files\Common Files\microsoft Read More …

PowerShell – Return BitLocker Passwords using Pattern Matching

This will return BitLocker passwords—and only the passwords—using pattern matching.   Code.ps1 # MrNetTek # eddiejackson.net # 9/11/2024 # free for public use # free to claim as your own # Run manage-bde command and capture the output $manageBdeOutput = & manage-bde -protectors -get C: 2>&1 # Define our password pattern $passwordPattern = “\b(\d{6}-\d{6}-\d{6}-\d{6}-\d{6}-\d{6}-\d{6}-\d{6})\b” # Read More …

PowerShell – Detect AzureAD Device or Azure VDI

Building upon the previous post, let’s extend our detection capability to include Azure VDI.   Code.ps1 # MrNetTek # eddiejackson.net # 9/11/2024 # free for public use # free to claim as your own # Function to detect if FSLogix is installed function Test-FSLogix { param ( [string]$Path = “C:\Program Files\FSLogix” ) return Test-Path $Path Read More …

PowerShell – QUIC Protocol – Security Concerns – Disable

The QUIC protocol, which stands for “Quick UDP Internet Connections,” is a transport layer network protocol initially developed by Google. It was designed to improve the performance of connection-oriented web applications that currently use TCP (Transmission Control Protocol) by leveraging UDP (User Datagram Protocol) instead.   Key Features and Benefits of QUIC Reduced Latency: QUIC Read More …

Mac – JavaScript – Citrix Workspace Client

I took this JS from the Distribution file in the latest Citrix Workspace Mac install, v24.05.0. Maybe you’ll find the internal workings interesting. I do. Located: Citrix.dmg\Citrix Workspace\Install Citrix Workspace.pkg\Distribution I ended up packaging the DMG into a PKG, signing the PKG, and publishing to Macs from Intune.   Code.js   # MrNetTek # eddiejackson.net Read More …