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 …

PowerShell – Return Current User from QUser

Quser.exe, short for Query User, is a utility in the Windows Command Prompt that allows administrators to view information about currently logged-on users. It’s particularly useful in environments with multiple users, such as corporate networks or shared computers. I like to use it, because it just works, and is available on all the Windows computers. Read More …

Batch – Return User Session Information

This will return the user’s session information locally, and remotely. I use this with SCCM and Intune.   Code.cmd   :: MrNetTek :: eddiejackson.net :: 7/11/2024 :: free for public use :: free to claim as your own @ECHO OFF :: Initialize SETLOCAL enabledelayedexpansion SET tstQUser=false SET tstQWin=false :: Detect Session :: Method 1 quser Read More …