This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; 7-Zip Windows 11 Context Menu entries via whitelisted id reuse example by AveYo | |
; Add to archive.. only single files (multiple would need a single instance redirect tool) | |
[-HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\connectNetworkDrive] | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\connectNetworkDrive] | |
"MuiVerb"="@C:\\Program Files\\7-Zip\\7-zip.dll,-2324" | |
"Position"="Middle" | |
"Icon"="C:\\Program Files\\7-Zip\\7-zip.dll,0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
facebook.com | |
baidu.com | |
yahoo.com | |
amazon.com | |
linkedin.com | |
weibo.com | |
yandex.ru | |
instagram.com | |
amazon.co.jp | |
pinterest.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.InteropServices; | |
// ReSharper disable SuspiciousTypeConversion.Global | |
// ReSharper disable InconsistentNaming | |
namespace VideoPlayerController | |
{ | |
/// <summary> | |
/// Controls audio using the Windows CoreAudio API | |
/// from: http://stackoverflow.com/questions/14306048/controling-volume-mixer |