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 …

Intune – Forcing PowerShell – Device Sync

This is how you would force an Intune sync for ALL devices.   Code.ps1   # MrNetTek # eddiejackson.net # 7/10/2024 # free for public use # free to claim as your own Install-Module -Name Microsoft.Graph.Intune -Force -AllowClobber Install-Module -Name Microsoft.Graph.DeviceManagement.Actions -Force -AllowClobber Install-Module -Name Microsoft.Graph.DeviceManagement -Force -AllowClobber # Connect to Graph Connect-MgGraph -scope DeviceManagementManagedDevices.PrivilegedOperations.All, Read More …

Citrix DPI Solutions

Are you a Citrix Client user? Have you noticed DPI issues in some virtual sessions? Try these:   For Citrix Admin, On VDA Side (Try this, first) HKEY_LOCAL_MACHINE\SOFTWARE\Citrix\Graphics REG_DWORD EnableDpiSupport 1 And Disable this GPO In GP, Administrative Templates > Citrix Components > Citrix Workspace > DPI   For Citrix Tech, On Client Side HKEY_CURRENT_USER\SOFTWARE\Citrix\ICA Read More …