Skip to content

Instantly share code, notes, and snippets.

View ChuckMichael's full-sized avatar
🐧

M ChuckMichael

🐧
View GitHub Profile
@ChuckMichael
ChuckMichael / vc_redistr.md
Last active May 4, 2024 00:25
Install all Visual C++ Redistributables using only one command!

Warning

App Installer must be installed on Win10/11.

CMD

Tip

You can save it and run as batch file (.bat).

winget install --id=Microsoft.VCRedist.2005.x86 -e  && winget install --id=Microsoft.VCRedist.2005.x64 -e  && winget install --id=Microsoft.VCRedist.2008.x86 -e  && winget install --id=Microsoft.VCRedist.2008.x64 -e  && winget install --id=Microsoft.VCRedist.2010.x86 -e  && winget install --id=Microsoft.VCRedist.2010.x64 -e  && winget install --id=Microsoft.VCRedist.2012.x86 -e  && winget install --id=Microsoft.VCRedist.2012.x64 -e  && winget install --id=Microsoft.VCRedist.2013.x86 -e  && winget install --id=Microsoft.VCRedist.2013.x64 -e  && winget install --id=Microsoft.VCRedist.2015+.x86 -e  && winget install --id=Microsoft.VCRedist.2015+.x64 -e 
@ChuckMichael
ChuckMichael / vcredistr.md
Last active May 1, 2024 14:17
Visual C++ Redistributable Packages
@ChuckMichael
ChuckMichael / bluetooth_version.md
Last active April 19, 2024 13:40
Bluetooth version. Based on Official Bluetooth SIG documentation: https://www.bluetooth.com/specifications/assigned-numbers/
Link Manager Protocol Version (LMP) LMP Hex Bluetooth Core Specification
LMP 0 0x00 Bluetooth Core Specification 1.0b
LMP 1 0x01 Bluetooth Core Specification 1.1
LMP 2 0x02 Bluetooth Core Specification 1.2
LMP 3 0x03 Bluetooth Core Specification 2.0 + EDR
LMP 4 0x04 Bluetooth Core Specification 2.1 + EDR
LMP 5 0x05 Bluetooth Core Specification 3.0 + HS
LMP 6 0x06 Bluetooth Core Specification 4.0
LMP 7 0x07 Bluetooth Core Specification 4.1
@ChuckMichael
ChuckMichael / 0x00000704_fix.reg
Last active April 10, 2024 17:56
Error fix for "Operation could not be completed (error 0x00000704). The specified port is unknown" when installing Brother printer software. It also fixed problem with not working Brother Monitor Status. Read more on my blog:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Local Port]
"Driver"="localspl.dll"
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port]
"Driver"="tcpmon.dll"
@ChuckMichael
ChuckMichael / list.md
Last active February 22, 2024 21:04
Moja lista dodatkowych filtrów do Ublock Orgin/Adguard
https://hole.cert.pl/domains/domains_adblock.txt
https://raw.githubusercontent.com/PolishFiltersTeam/KAD/master/KAD.txt
https://raw.githubusercontent.com/PolishFiltersTeam/PolishAnnoyanceFilters/master/PPB.txt
https://www.i-dont-care-about-cookies.eu/abp/
https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/cookies_filters/adblock_cookies.txt
https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/nocoin.txt
https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock.txt?_=raw
https://raw.githubusercontent.com/bogachenko/fuckfuckadblock/master/fuckfuckadblock-mining.txt?_=raw
https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion%20Sprout%27s%20Anti-Malware%20List.txt
@ChuckMichael
ChuckMichael / 7zip-config.md
Created February 10, 2024 19:57
7-Zip and NanaZip - Editor Tab configuration

7-Zip and NanaZip - Editor tab configuration

window

View

Path to text editor

Notepad.exe

Editor

Path to text editor

@ChuckMichael
ChuckMichael / config.xml
Created October 18, 2023 15:24
config MS365
<Configuration>
<Add OfficeClientEdition="64" Channel="Current" AllowCdnFallback="true">
<Product ID="O365HomePremRetail">
<Language ID="pl-pl" />
<ExcludeApp ID="Access" />
<ExcludeApp ID="OneDrive" />
<ExcludeApp ID="OneNote" />
<ExcludeApp ID="Outlook" />
<ExcludeApp ID="Publisher" />
</Product>
@ChuckMichael
ChuckMichael / notepadplusplus_win11.reg
Last active October 8, 2023 23:56
***/!\Not needed starting from Notepad++ v8.5.1/!\*** It adds "Edit with Notepad++" option to new context menu under Windows 11. Thanks to @AveYo!
Windows Registry Editor Version 5.00
; Edit with Notepad++ in Windows 11 contextmenu - by AveYo (https://gist.github.com/AveYo)
[-HKEY_CURRENT_USER\Software\Classes\*\shell\extract]
[HKEY_CURRENT_USER\Software\Classes\*\shell\extract]
"MuiVerb"="Edit with &Notepad++"
"Icon"="C:\\Program Files\\Notepad++\\notepad++.exe,0"
"MultiSelectModel"="Player"
"NeverDefault"=""
"AppliesTo"="NOT .zip"
curl parrot.live
@ChuckMichael
ChuckMichael / sandbox-secure-nointernet.wsb
Last active July 29, 2023 22:00
Windows Sandbox configuration file (no internet, clipboard sharing disabled, enabled protected client)
<Configuration>
<Networking>Disable</Networking>
<ClipboardRedirection>Disable</ClipboardRedirection>
<ProtectedClient>Enable</ProtectedClient>
</Configuration>