Websites these days want you to jump through hoops just to perform a simple download. I m making it my business to get around those obstacles. No more enrollments, no more memberships, no EULAs, and no extra buttons Just code and download. In this example, we scan for the URL with expiration token information on the Citrix Read More ...
We want to create an Adobe Acrobat Reader permalink method that currently does not exist. Adobe has gone through great lengths to prevent any published or available direct download links (go check for yourself). Scraping the website pages also fails. A permalink would allow direct downloads, without requiring prompts or manual downloads. Note: Adobe website Read More ...
This will return user SIDs using pattern matching. In the code below, S-1-5-21 and S-1-12-1 are the SID patterns we re looking for. Also notice how we re excluding SIDs with _Classes. Code.ps1 # MrNetTek # eddiejackson.net # 11/14/2024 # free for public use # free to claim as your own # Return SIDs that match Read More ...
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…
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…
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 ...
Aquarius: 1 2 3 4 5 6 7 8 9 10 11 12 13 In this project, I test an RGB LED. The RGB color model is an additive color model in which the red, green and blue primary colors of light are added together in various ways to reproduce a broad array of colors. Read More ...
As promised, here s a snapshot of the Teams Meeting Add-in. This shows all the files, folders, and reg keys that get applied during setup. #NoMoreSecrets What can you do with something like this? Build a proper uninstaller that runs from the SYSTEM account, which removes all the items that were installed as the current Read More ...
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 ...