Skip to content

Instantly share code, notes, and snippets.

View sahildeshp's full-sized avatar
:electron:

Sahil Deshpande sahildeshp

:electron:
View GitHub Profile
@sahildeshp
sahildeshp / ffmpeg_download.md
Last active December 30, 2025 20:16
Downloading Read-Only Microsoft Teams and Stream Videos and Recordings with FFMPEG
@sahildeshp
sahildeshp / Multinetwork.md
Last active March 19, 2025 13:10
Multinetwork

To enable or disable simultaneous connections - save as .bat and run as admin

Enable

@echo off
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WcmSvc\GroupPolicy" /f /v "fMinimizeConnections" /t REG_DWORD /d "0"
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WcmSvc\GroupPolicy" /f /v "fBlockNonDomain" /t REG_DWORD /d "0"

Disable

@sahildeshp
sahildeshp / Windows NIC Shortcut.md
Last active March 19, 2025 13:10
Creating Windows NIC Settings Shortcut

Creating a shortcut for Windows NIC settings

- Open notepad and copy the following

@echo off
ncpa.cpl

- Save this as a .bat file

@sahildeshp
sahildeshp / Windows PowerShell Setup.md
Last active March 20, 2025 21:55
Setting up PowerShell 7.x on a new machine

Setting up PowerShell on a new Windows Machine

image

- Install Terminal

https://github.com/microsoft/terminal/releases


- Inside terminal, open the Windows Powershell and use the following to install the latest version of PowerShell

winget install --id Microsoft.PowerShell --source winget