Wanting to try it, anyone got a link to download that isn't behind their paywall? I reported it suggesting the main tweaks/fixes/modding post be moved to replace the second post of this thread which is way out of date, but didn't hear anything back. It does seem odd that the first post you see for tweaks and fixes is way out of date. Perhaps it can't be moved, don't know. Anyway, just push on, the main post will be kept updated. @ancestor(v) @Tito
That's neat. Added to main tweaks/fixes/modding post index. @abbodi1406 in your screenshot there you have Restart Explorer with an icon, it's just one entry, better than this one. Can you post it here please and I'll replace that one in the index too. TIA.
I don't think it' better, there is no MUI for that sentence tskill is not available in Home editions Code: [HKEY_CLASSES_ROOT\DesktopBackground\shell\Restart Explorer] "icon"="explorer.exe" "Position"="Bottom" [HKEY_CLASSES_ROOT\DesktopBackground\shell\Restart Explorer\Command] @="TSKILL EXPLORER"
Remove Cast To Device From Context Menus Of Media Files Code: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked] "{7AD84985-87B4-4a16-BE58-8B72A5B390F7}"="" Restart Explorer/Reboot.
This only adds to the old context menu. I suppose the only way to add to the new context menu is using the IExplorerCommand api introduced since windows 7! Sadness, thought there would be a simpler solution. Regardless, thanks.
If you're using the Windows 11 context menus it's under "Show more options". Update: Oh I see what you mean, you'd like it in the first context menu. I expect someone will work that out in time.
Remove Open In Windows Terminal From Desktop And Explorer Context Menus Code: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked] "{9F156763-7844-4DC4-B2B1-901F640F5155}"=""
@zucrin still drinking and writing..... Have firewall rule in place to stop Diagtrack.. yet M$ circumvents this by creating seperate instances of svchost How abot this solution... appreciate your input... [Disable/Stop Diagtrack.psi] Spoiler: DIAGTRACK Hard Links # Change File Ownership $Account = New-Object -TypeName System.Security.Principal.NTAccount -ArgumentList 'BUILT-IN \ Administrators'; $ACL = $null $ACL = Get-Acl -Path C:\Windows\System32\svchost.exe $ACL.SetOwner($Account) Set-Acl -Path C:\Windows\System32\svchost.exe -AclObject $ACL # Query The Access Control List $ACL = $null $ACL = Get-Acl C:\Windows\System32\svchost.exe # Set Access Rights $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($Account, "Write", "Allow") $ACL.SetAccessRule($Ar) Set-Acl C:\Windows\System32\svchost.exe $ACL # Change To The Target Directory Set-Location -Path C:\Windows\System32\ # Create A Hard Link New-Item -ItemType hardlink -Name hard.exe -Value .\svchost.exe # Adding Key To The Registry Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\DiagTrack" -Name "ImagePath" -Value "%SystemRoot%\System32\hard.exe -k utcsvc" # Adding The Firewall Rule New-NetFirewallRule -DisplayName "Block_Diagtrack" -Name "Block_Diagtrack" -Direction Outbound -Program "%SystemRoot%\System32\hard.exe"
I am on sleep mode now don't have energy to read 1 line if code So good night On second thought @mdl052020 can help more than i
A bit elaborate - https://forums.mydigitallife.net/th...s-shift-right-click.73800/page-2#post-1334157