Skip to content

Commit a32af9e

Browse files
committed
Update
1 parent 5ff2ee5 commit a32af9e

22 files changed

+1139
-40
lines changed

7-Zip/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Send to actions to quickly compress and extract with 7-Zip.
55

66
Quickly access “send to” folder in Explorer: <kbd>Ctrl+L</kbd> `shell:sendto` <kbd>Enter</kbd>.
77

8-
The extraction script intelligently extracts contents of archive into separate folder if there is more than one item at the root of archive.
8+
The extraction script intelligently extracts contents of archive into separate folder if there is more than one item inside the archive (to prevent [archive-bombing](http://www.linfo.org/tarbomb.html)).
99

1010
[Similar scripts for WinRAR](https://github.com/ubihazard/windows-scripts/tree/main/WinRAR).
1111

12-
Support
13-
-------
12+
Support
13+
---------
1414

15-
If you find anything of this useful, you can [buy me a ☕](https://www.buymeacoffee.com/ubihazard "Show support")!
15+
If you find anything of this useful, you can [buy me a ☕](https://www.buymeacoffee.com/ubihazard "Donate")!

Explorer/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Explorer
33

44
Useful Explorer contextual actions.
55

6-
Support
7-
-------
6+
Support
7+
---------
88

9-
If you find anything of this useful, you can [buy me a ☕](https://www.buymeacoffee.com/ubihazard "Show support")!
9+
If you find anything of this useful, you can [buy me a ☕](https://www.buymeacoffee.com/ubihazard "Donate")!

Explorer/fluent_terminal_add.reg

Lines changed: 0 additions & 7 deletions
This file was deleted.

Explorer/fluent_terminal_remove.reg

Lines changed: 0 additions & 3 deletions
This file was deleted.

Explorer/terminal_add.bat

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo off
2+
3+
:: Open the current Explorer directory in terminal.
4+
5+
reg add "HKCU\Software\Classes\Directory\Background\shell\wezterm" /ve /t REG_SZ /d "Open Terminal here" /f
6+
reg add "HKCU\Software\Classes\Directory\Background\shell\wezterm\command" /ve /t REG_SZ /d "%USERPROFILE%\Applications\wezterm\wezterm-gui.exe" /f
7+
pause

Explorer/terminal_del.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo off
2+
3+
reg delete "HKCU\Software\Classes\Directory\Background\shell\wezterm" /f

Explorer/text_editor_add.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@echo off
2+
3+
:: Open with Sublime Text Explorer context menu entry.
4+
5+
reg add "HKCU\Software\Classes\*\shell\Open with Sublime Text\command" /ve /d "%USERPROFILE%\Applications\Sublime Text\sublime_text.exe ""%%1""" /f
6+
pause

Explorer/text_editor_del.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo off
2+
3+
reg delete "HKCU\Software\Classes\*\shell\Open with Sublime Text" /f

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Do What the Fuck You Want to Public License
1111
Terms and conditions for usage, copying, modification,
1212
and distribution of the included work:
1313

14-
* Just do what the fuck you want to.
14+
* Just do what the fuck you want to.

PowerShell/README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@ Also remove `Appx` installation packages that can be used to restore them (e.g.
1919
Get-AppxProvisionedPackage –online | where-object {$_.packagename –notlike '*store*'} | Remove-AppxProvisionedPackage -online
2020
```
2121

22-
Support
23-
-------
22+
***
2423

25-
If you find anything of this useful, you can [buy me a ☕](https://www.buymeacoffee.com/ubihazard "Show support")!
24+
See what programs have been recently blocked by Windows Firewall:
25+
26+
```powershell
27+
Get-EventLog security -newest 10 -InstanceId 5157 -Message *Destination* | Select @{Name="message";Expression={$_.ReplacementStrings[1]}}
28+
```
29+
30+
⭐ Support
31+
---------
32+
33+
If you find anything of this useful, you can [buy me a ☕](https://www.buymeacoffee.com/ubihazard "Donate")!

0 commit comments

Comments
 (0)