Microsoft Teams – Uninstaller

This should be everything you need to kill Microsoft Teams. I use a compiler to create EXEs, and then upload those to SCCM & Intune. But you can test locally to make sure all the code is working fine before creating self-contained packages.   Application Names MSTeams_24165.1414.2987.41_x64__8wekyb3d8bbwe MicrosoftTeams_24165.1306.2986.9504_x64__8wekyb3d8bbwe Application GUID {731F6BAA-A986-45A4-8936-7C3AAAAA760B} Plugin GUID {A7AB73A3-CB10-4AA5-9D38-6AEFFBDE4C91} Registry 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. :: 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 | find /i 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 …

Adobe Acrobat/Reader ProgIds

These are useful if you’re trying to set a PDF association. Acrobat.Document.2022 Acrobat.Document.2020 AcroExch.Document.DC AcroExch.Document.11 Acrobat.Document.11 Acrobat.Document.DC Acrobat.Document.2015 Acrobat.Document.2017   Notes HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pdf\OpenWithProgids   <?xml version=”1.0″ encoding=”UTF-8″?> <DefaultAssociations> <Association Identifier=”.3gp2″ ProgId=”WMP11.AssocFile.3G2″ ApplicationName=”Windows Media Player” /> <Association Identifier=”.epub” ProgId=”AppXvepbp3z66accmsd0x877zbbxjctkpr6t” ApplicationName=”Microsoft Edge” /> <Association Identifier=”.htm” ProgId=”ChromeHTML” ApplicationName=”Google Chrome” /> <Association Identifier=”.html” ProgId=”ChromeHTML” ApplicationName=”Google Chrome” /> <Association Identifier=”.MP2″ ProgId=”WMP11.AssocFile.MP3″ Read More …

PowerShell – Add DNS Suffix to Ethernet Connections

    Notes Get-DnsClient Set-DnsClient Set-DnsClientGlobalSetting Get-DnsClientGlobalSetting Get-NetAdapter   Clear Suffix List Set-DnsClientGlobalSetting -SuffixSearchList @(“”)   Set Suffix Order Set-DnsClientGlobalSetting -SuffixSearchList @(“domain.com”, “child.domain.com”) or $DnsSuffixes = “domain.com”,”child.domain.com” Invoke-Wmimethod -Class win32_networkadapterconfiguration -Name setDNSSuffixSearchOrder -ArgumentList @($DnsSuffixes),$null   Set Suffix for Single Network Connection Get-NetAdapter | where {$_.name -ne “Local Area Connection”}| foreach{ Write-Host $_.name Set-DnsClient $_.name -ConnectionSpecificSuffix Read More …