Skip to content

Commit d4a12cc

Browse files
authored
Merge pull request #5 from kyaulabs/feature/kyau-a50d-icon-update
Windows 11 Build 22621.819
2 parents 732a67d + e32c69d commit d4a12cc

File tree

1,393 files changed

+319
-191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,393 files changed

+319
-191
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Resources/Icons/Apps
2+
Resources/Icons/Hardware
3+
Resources/Icons/Places
4+
Resources/Icons/Start
5+
Resources/Icons/convert.bat

Modules/_funcs.ps1

+9-13
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ function Add-Shortcut {
164164
[string] $Target,
165165
[Parameter(Mandatory=$false)]
166166
[ValidateNotNull()]
167-
[string] $IconName = "",
167+
[string] $Icon = "",
168168
[Parameter(Mandatory=$false)]
169169
[ValidateNotNull()]
170170
[string] $Arguments = "",
@@ -183,8 +183,8 @@ function Add-Shortcut {
183183
$Shortcut.TargetPath = $Target
184184
$Shortcut.Arguments = $Arguments
185185

186-
if ([bool]$IconName) {
187-
$Shortcut.IconLocation = "${Env:ProgramData}\Windows Icons\Apps\" + $IconName + ".ico,0"
186+
if ([bool]$Icon) {
187+
$Shortcut.IconLocation = "${Env:ProgramData}\" + $Icon
188188
} else {
189189
$Shortcut.IconLocation = $Target + ",0"
190190
}
@@ -210,7 +210,7 @@ function Set-UserFolderIcon {
210210
$file = "${Env:USERPROFILE}\${Name}\desktop.ini"
211211
ATTRIB -H -S $file
212212
$find = "IconResource=%SystemRoot%\\system32\\imageres.dll,-${ImageRes}"
213-
$replace = "IconResource=%ProgramData%\Windows Icons\${Icon}.ico"
213+
$replace = "IconResource=%ProgramData%\win11tweak-places.dll,${Icon}"
214214
Get-Content $file | ForEach-Object{$_ -Replace $find,$replace} | Out-File ${file}2
215215
Move-Item -Path "${file}2" -Destination "$file" -Force
216216
ATTRIB +H +S $file
@@ -224,9 +224,6 @@ function Add-UserFolderIcon {
224224
[string] $Name,
225225
[Parameter(Mandatory=$true)]
226226
[ValidateNotNullOrEmpty()]
227-
[string] $Icon,
228-
[Parameter(Mandatory=$false)]
229-
[ValidateNotNullOrEmpty()]
230227
[int] $ImageRes
231228
)
232229

@@ -236,8 +233,7 @@ function Add-UserFolderIcon {
236233
$File = "${Name}\desktop.ini"
237234
$Text = @"
238235
[.ShellClassInfo]
239-
IconIndex=0
240-
IconResource=%ProgramData%\Windows Icons\${Icon},${ImageRes}
236+
IconResource=%ProgramData%\win11tweak-places.dll,${ImageRes}
241237
ConfirmFileOp=0
242238
DefaultDropEffect=1
243239
"@
@@ -292,7 +288,7 @@ function Show-Package {
292288

293289
function Find-GitRelease {
294290
# PSScriptAnalyzer - ignore unused variables
295-
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseDeclaredVarsMoreThanAssignments", "", Justification = "False positive because variable is used inside of Where-Object.")]
291+
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSReviewUnusedParameter", "Search", Justification = "False positive because variable is used inside of Where-Object.")]
296292
[CmdletBinding()]
297293
param (
298294
[Parameter(Mandatory=$true)]
@@ -301,8 +297,8 @@ function Find-GitRelease {
301297
[string] $Search
302298
)
303299

304-
$URI = "https://api.github.com/repos/${Repo}/releases/latest"
305-
$Match = $Search
306-
Return Invoke-RestMethod -uri $URI | Select-Object -ExpandProperty assets | Where-Object { $_.name -Match $Match } | Select-Object -expand browser_download_url
300+
$URI = "https://api.github.com/repos/${Repo}/releases"
301+
$Match = Invoke-RestMethod -uri $URI
302+
$Match[0] | Select-Object -ExpandProperty assets | Where-Object { $_.name -Match $Search } | Select-Object -expand browser_download_url
307303
}
308304

Modules/apps.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
Show-Section -Section "Apps" -Desc "Remove Bloated Defaults"
3030

31-
$Whitelist = 'Microsoft.DesktopAppInstaller|Microsoft.GetHelp|Microsoft.MicrosoftSolitaireCollection|Microsoft.Paint|Microsoft.WindowsNotepad|Microsoft.WindowsTerminal'
31+
$Whitelist = 'Microsoft.DesktopAppInstaller|Microsoft.GetHelp|Microsoft.MicrosoftSolitaireCollection|Microsoft.Net.Native*|Microsoft.Paint|Microsoft.WindowsNotepad|Microsoft.WindowsTerminal'
3232
$NonRemovable = 'Microsoft.549981C3F5F10|Microsoft.MicrosoftEdge.Stable|Microsoft.StorePurchaseApp|Microsoft.UI*|Microsoft.VCLibs*|Microsoft.Windows.FilePicker*|Microsoft.WindowsStore'
3333
# remove app packages
3434
$remove = Get-AppxPackage -AllUsers | Where-Object {$_.Name -NotMatch $Whitelist -and $_.Name -NotMatch $NonRemovable}

Modules/cleanup.ps1

+155-51
Large diffs are not rendered by default.

Modules/icons.ps1

+35-24
Original file line numberDiff line numberDiff line change
@@ -27,41 +27,52 @@
2727
#. "${PSScriptRoot}\_funcs.ps1"
2828

2929
Show-Section -Section "Icons" -Desc "Copying Icon Theme"
30-
New-Item -Type Directory -Path "${Env:ProgramData}\Windows Icons\Start" | Out-Null
30+
<#
3131
New-Item -Type Directory -Path "${Env:ProgramData}\Windows Icons\Apps" | Out-Null
32-
Copy-Item ${PSScriptRoot}\..\Resources\Icons\*.ico -Destination "${Env:ProgramData}\Windows Icons\" -Force | Out-Null
33-
Copy-Item ${PSScriptRoot}\..\Resources\Icons\start\*.ico -Destination "${Env:ProgramData}\Windows Icons\Start\" -Force | Out-Null
34-
Copy-Item ${PSScriptRoot}\..\Resources\Icons\apps\*.ico -Destination "${Env:ProgramData}\Windows Icons\Apps\" -Force | Out-Null
32+
New-Item -Type Directory -Path "${Env:ProgramData}\Windows Icons\Emblems" | Out-Null
33+
New-Item -Type Directory -Path "${Env:ProgramData}\Windows Icons\Hardware" | Out-Null
34+
New-Item -Type Directory -Path "${Env:ProgramData}\Windows Icons\Mimetypes" | Out-Null
35+
New-Item -Type Directory -Path "${Env:ProgramData}\Windows Icons\Places" | Out-Null
36+
New-Item -Type Directory -Path "${Env:ProgramData}\Windows Icons\Start" | Out-Null
37+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\Apps\*.ico -Destination "${Env:ProgramData}\Windows Icons\Apps\" -Force | Out-Null
38+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\Emblems\*.ico -Destination "${Env:ProgramData}\Windows Icons\Emblems\" -Force | Out-Null
39+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\Hardware\*.ico -Destination "${Env:ProgramData}\Windows Icons\Hardware\" -Force | Out-Null
40+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\Mimetypes\*.ico -Destination "${Env:ProgramData}\Windows Icons\Mimetypes\" -Force | Out-Null
41+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\Places\*.ico -Destination "${Env:ProgramData}\Windows Icons\Places\" -Force | Out-Null
42+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\Start\*.ico -Destination "${Env:ProgramData}\Windows Icons\Start\" -Force | Out-Null
43+
#>
44+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\*.dll -Destination "${Env:ProgramData}" -Force | Out-Null
45+
Copy-Item ${PSScriptRoot}\..\Resources\Icons\*.ico -Destination "${Env:ProgramData}" -Force | Out-Null
3546

3647
Show-Section -Section "Icons" -Desc "System Icons"
3748
# youtube-dl
3849
New-Item -ItemType SymbolicLink -Path "${Env:ProgramData}\chocolatey\lib\mpv.install\tools\yt-dlp.exe" -Target "${Env:ProgramData}\chocolatey\lib\yt-dlp\tools\x64\yt-dlp.exe" | Out-Null
3950

4051
# User Folders
41-
Set-UserFolderIcon -Name "Contacts" -ImageRes 181 -Icon "folder-contacts"
42-
Set-UserFolderIcon -Name "Desktop" -ImageRes 183 -Icon "desktop"
43-
Set-UserFolderIcon -Name "Documents" -ImageRes 112 -Icon "folder-documents"
44-
Set-UserFolderIcon -Name "Downloads" -ImageRes 184 -Icon "folder-downloads"
45-
Set-UserFolderIcon -Name "Favorites" -ImageRes 115 -Icon "folder-favorites"
46-
Set-UserFolderIcon -Name "Links" -ImageRes 185 -Icon "folder-links"
47-
Set-UserFolderIcon -Name "Music" -ImageRes 108 -Icon "folder-music"
48-
Set-UserFolderIcon -Name "Pictures" -ImageRes 113 -Icon "folder-pictures"
49-
Set-UserFolderIcon -Name "Saved Games" -ImageRes 186 -Icon "folder-games"
50-
Set-UserFolderIcon -Name "Searches" -ImageRes 18 -Icon "folder-searches"
51-
Set-UserFolderIcon -Name "Videos" -ImageRes 189 -Icon "folder-videos"
52+
Set-UserFolderIcon -Name "Contacts" -ImageRes 181 -Icon 73 #"folder-blue-public"
53+
Set-UserFolderIcon -Name "Desktop" -ImageRes 183 -Icon 52 #"folder-blue-desktop"
54+
Set-UserFolderIcon -Name "Documents" -ImageRes 112 -Icon 54 #"folder-blue-documents"
55+
Set-UserFolderIcon -Name "Downloads" -ImageRes 184 -Icon 55 #"folder-blue-download"
56+
Set-UserFolderIcon -Name "Favorites" -ImageRes 115 -Icon 56 #"folder-blue-favorites"
57+
Set-UserFolderIcon -Name "Links" -ImageRes 185 -Icon 86 #"folder-blue-web"
58+
Set-UserFolderIcon -Name "Music" -ImageRes 108 -Icon 66 #"folder-blue-music"
59+
Set-UserFolderIcon -Name "Pictures" -ImageRes 113 -Icon 63 #"folder-blue-images"
60+
Set-UserFolderIcon -Name "Saved Games" -ImageRes 186 -Icon 57 #"folder-blue-games"
61+
Set-UserFolderIcon -Name "Searches" -ImageRes 18 -Icon 75 #"folder-blue-saved-search"
62+
Set-UserFolderIcon -Name "Videos" -ImageRes 189 -Icon 83 #"folder-blue-video"
5263
New-Item -ItemType SymbolicLink -Path ($Env:UserProfile + "\Documents\My Games") -Target ($Env:UserProfile + "\Saved Games") | Out-Null
5364
# Desktop
5465
Add-Reg -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons"
5566
Add-Reg -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons"
56-
Add-Reg -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" -Name "34" -Type String "%ProgramData%\Windows Icons\desktop.ico"
57-
Add-Reg -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" -Name "34" -Type String "%ProgramData%\Windows Icons\desktop.ico"
67+
Add-Reg -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" -Name "34" -Type String "%ProgramData%\win11tweak-places.dll,52"
68+
Add-Reg -Path "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" -Name "34" -Type String "%ProgramData%\win11tweak-places.dll,52"
5869
# This PC
59-
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\Windows Icons\computer.ico"
70+
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\win11tweak-hardware.dll,45"
6071
# Recycle Bin
61-
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\DefaultIcon" -Name "empty" -Type ExpandString -Value "%ProgramData%\Windows Icons\recycle.ico"
62-
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\DefaultIcon" -Name "full" -Type ExpandString -Value "%ProgramData%\Windows Icons\recycle-full.ico"
72+
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\DefaultIcon" -Name "empty" -Type ExpandString -Value "%ProgramData%\win11tweak-places.dll,87"
73+
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\DefaultIcon" -Name "full" -Type ExpandString -Value "%ProgramData%\win11tweak-places.dll,88"
6374
# Network
64-
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\Windows Icons\network.ico"
75+
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\win11tweak-apps.dll,835"
6576
# Navigation Pane - Show All folders
6677
Add-Reg -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "NavPaneShowAllFolders" -Type Dword -Value "1"
6778
# Navigation Pane - Remove Quick Access
@@ -71,16 +82,16 @@ Remove-Reg -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Deskt
7182
# Control Panel
7283
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}"
7384
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}\DefaultIcon"
74-
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\Windows Icons\settings.ico"
85+
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{26EE0668-A00A-44D7-9371-BEB064C98683}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\win11tweak-apps.dll,155"
7586
# User Files
7687
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{59031A47-3F72-44A7-89C5-5595FE6B30EE}"
7788
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{59031A47-3F72-44A7-89C5-5595FE6B30EE}\DefaultIcon"
78-
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{59031A47-3F72-44A7-89C5-5595FE6B30EE}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\Windows Icons\folder-home.ico"
89+
Add-Reg -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{59031A47-3F72-44A7-89C5-5595FE6B30EE}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\win11tweak-places.dll,62"
7990
# System Drive
8091
$SysDrive = "${Env:SystemDrive}".Substring(0,1)
8192
Add-Reg -Path "HKCU:\Software\Classes\Applications"
8293
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe"
8394
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives"
8495
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives\${SysDrive}"
8596
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives\${SysDrive}\DefaultIcon"
86-
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives\${SysDrive}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\Windows Icons\drive-win11.ico"
97+
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives\${SysDrive}\DefaultIcon" -Name "(Default)" -Type String -Value "%ProgramData%\win11tweak-hardware.dll,73"

Modules/packages.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Start-Process -FilePath "${Env:ProgramData}\chocolatey\bin\CHOCO.EXE" -ArgumentL
3939
Foreach ($pkg in $ChocoPkgs) {
4040
$ipkg = $pkg
4141
$runtest = ""
42-
if ($pkg -eq "sharex" -Or $pkg -eq "simplewall") {
42+
if ($pkg -eq "sharex" -Or $pkg -eq "simplewall" -Or $pkg -eq "everything") {
4343
$runtest = "${Env:SystemRoot}\system32\taskkill.exe /F /IM ${pkg}.exe >nul"
4444
}
4545
if ($pkg -eq "amazongames") {

Modules/startmenu.ps1

+21-21
Original file line numberDiff line numberDiff line change
@@ -50,40 +50,40 @@ New-Item -Type Directory -Path "${Env:ProgramData}\Windows Start\RTSP-Local" | O
5050
Show-Section -Section "StartMenu" -Desc "Creating Shortcuts"
5151
# Add-Shortcut "SubMenu\Application OR Startup" "target.exe" "icon-name" "arguments" "working-directory"
5252
Add-Shortcut "Apps\Brave" "${Env:ProgramFiles}\BraveSoftware\Brave-Browser\Application\brave.exe" ""
53-
Add-Shortcut "Apps\SumatraPDF" "${Env:ProgramFiles}\SumatraPDF\SumatraPDF.exe" "gnome-books"
54-
Add-Shortcut "Apps\KeePassXC" "${Env:ProgramFiles}\KeePassXC\KeePassXC.exe" "keepassxc"
55-
#Add-Shortcut "Apps\Kleopatra" "${Env:ProgramFiles(x86)}\gpg4win\bin\kleopatra.exe" ""
56-
Add-Shortcut "Apps\Yubico Authenticator" "${Env:ProgramFiles}\Yubico\Yubico Authenticator\yubioath-desktop.exe" "yubioath"
57-
Add-Shortcut "Apps\Yubico Manager" "${Env:ProgramFiles}\Yubico\YubiKey Manager\ykman-gui.exe" "yubikey-personalization-gui"
58-
Add-Shortcut "Apps\Yubico PIV Manager" "${Env:ProgramFiles}\Yubico\YubiKey PIV Manager\pivman.exe" "yubikey-piv-manager"
59-
Add-Shortcut "Development\HeidiSQL" "${Env:ProgramFiles}\HeidiSQL\heidisql.exe" "sqlninja"
60-
Add-Shortcut "Development\KDiff3" "${Env:ProgramFiles}\KDiff3\kdiff3.exe" "kdiff3"
53+
Add-Shortcut "Apps\Everything" "${Env:ProgramFiles}\Everything\Everything.exe" "win11tweak-apps.dll,537"
54+
Add-Shortcut "Apps\SumatraPDF" "${Env:ProgramFiles}\SumatraPDF\SumatraPDF.exe" "win11tweak-apps.dll,449"
55+
Add-Shortcut "Apps\KeePassXC" "${Env:ProgramFiles}\KeePassXC\KeePassXC.exe" "win11tweak-apps.dll,621"
56+
Add-Shortcut "Apps\Yubico Authenticator" "${Env:ProgramFiles}\Yubico\Yubico Authenticator\authenticator.exe" "win11tweak-apps.dll,1363"
57+
Add-Shortcut "Apps\Yubico Manager" "${Env:ProgramFiles}\Yubico\YubiKey Manager\ykman-gui.exe" "win11tweak-apps.dll,1361"
58+
Add-Shortcut "Apps\Yubico PIV Manager" "${Env:ProgramFiles(x86)}\Yubico\YubiKey PIV Manager\pivman.exe" "win11tweak-apps.dll,1362"
59+
Add-Shortcut "Development\HeidiSQL" "${Env:ProgramFiles}\HeidiSQL\heidisql.exe" "win11tweak-apps.dll,1113"
60+
Add-Shortcut "Development\KDiff3" "${Env:ProgramFiles}\KDiff3\kdiff3.exe" "win11tweak-apps.dll,619"
6161
Add-Shortcut "Development\MarkText" "${Env:LocalAppData}\Programs\MarkText\MarkText.exe" ""
62-
Add-Shortcut "Development\Resource Hacker" "${Env:ProgramFiles(x86)}\Resource Hacker\ResourceHacker.exe" "teighaviewer"
62+
Add-Shortcut "Development\Resource Hacker" "${Env:ProgramFiles(x86)}\Resource Hacker\ResourceHacker.exe" "win11tweak-apps.dll,1175"
6363
Add-Shortcut "Development\Sublime Text" "${Env:ProgramFiles}\Sublime Text\sublime_text.exe" ""
64-
Add-Shortcut "Hardware\Core Temp" "${Env:ProgramData}\chocolatey\lib\coretemp\tools\Core Temp.exe" "thermal-monitor"
64+
Add-Shortcut "Hardware\Core Temp" "${Env:ProgramData}\chocolatey\lib\coretemp\tools\Core Temp.exe" "win11tweak-hardware.dll,138"
6565
Add-Shortcut "Hardware\CPU-Z" "${Env:ProgramFiles}\CPUID\CPU-Z\cpuz.exe" ""
6666
Add-Shortcut "Hardware\EarTrumpet" "${Env:ProgramData}\chocolatey\lib\eartrumpet\tools\EarTrumpet\EarTrumpet.exe" ""
6767
Add-Shortcut "Hardware\MSI Afterburner" "${Env:ProgramFiles(x86)}\MSI Afterburner\MSIAfterburner.exe" ""
68-
Add-Shortcut "Hardware\ScrCpy" "${Env:ProgramData}\chocolatey\lib\scrcpy\tools\scrcpy.exe" "android-file-transfer"
68+
Add-Shortcut "Hardware\ScrCpy" "${Env:ProgramData}\chocolatey\lib\scrcpy\tools\scrcpy.exe" "win11tweak-hardware.dll,3"
6969
Add-Shortcut "Hardware\Voicemeeter Potato" "${Env:ProgramFiles(x86)}\VB\Voicemeeter\voicemeeter8x64.exe" ""
7070
Add-Shortcut "Media\ImageGlass" "${Env:ProgramFiles}\ImageGlass\ImageGlass.exe" ""
71-
Add-Shortcut "Media\MPV" "${Env:ProgramData}\chocolatey\lib\mpv.install\tools\mpv.exe" "mpv"
72-
Add-Shortcut "RDP-Local\archlinux.machine" "${Env:ProgramFiles}\VirtViewer v11.0-256\bin\remote-viewer.exe" "distributor-logo-archlinux" "spice://archlinux.machine:5900"
73-
Add-Shortcut "RDP-Local\debian.machine" "${Env:ProgramFiles}\VirtViewer v11.0-256\bin\remote-viewer.exe" "distributor-logo-debian" "spice://debian.machine:5900"
74-
Add-Shortcut "RDP-Local\windows.machine" "${Env:ProgramFiles}\VirtViewer v11.0-256\bin\remote-viewer.exe" "codeblocks" "spice://windows.machine:5900"
75-
Add-Shortcut "SSH-Local\test.machine" "${Env:ProgramFiles}\Bin\ssh.bat" "urxvt" "test.machine 0"
76-
Add-Shortcut "SSH-Remote\test.machine.com" "${Env:ProgramFiles}\Bin\ssh.bat" "urxvt" "test.machine.com 1"
77-
Add-Shortcut "Startup" "`"%ProgramFiles%\Bin\gpg-forward.bat`"" "GPG Bridge"
78-
Add-Shortcut "Utilities\7-Zip File Manager" "${Env:ProgramFiles}\7-zip\7zFM.exe" "file-roller"
79-
Add-Shortcut "Utilities\Autoruns" "${Env:ProgramData}\chocolatey\lib\AutoRuns\tools\Autoruns.exe" "bomber"
71+
Add-Shortcut "Media\MPV" "${Env:ProgramData}\chocolatey\lib\mpv.install\tools\mpv.exe" "win11tweak-apps.dll,788"
72+
Add-Shortcut "RDP-Local\archlinux.machine" "${Env:ProgramFiles}\VirtViewer v11.0-256\bin\remote-viewer.exe" "win11tweak-apps.dll,1005" "spice://archlinux.machine:5900"
73+
Add-Shortcut "RDP-Local\debian.machine" "${Env:ProgramFiles}\VirtViewer v11.0-256\bin\remote-viewer.exe" "win11tweak-apps.dll,1007" "spice://debian.machine:5900"
74+
Add-Shortcut "RDP-Local\windows.machine" "${Env:ProgramFiles}\VirtViewer v11.0-256\bin\remote-viewer.exe" "win11tweak-apps.dll,1015" "spice://windows.machine:5900"
75+
Add-Shortcut "SSH-Local\test.machine" "${Env:ProgramFiles}\Bin\ssh.bat" "win11tweak-apps.dll,1119" "test.machine 0"
76+
Add-Shortcut "SSH-Remote\test.machine.com" "${Env:ProgramFiles}\Bin\ssh.bat" "win11tweak-apps.dll,1120" "test.machine.com 1"
77+
Add-Shortcut "Utilities\7-Zip File Manager" "${Env:ProgramFiles}\7-zip\7zFM.exe" "win11tweak-apps.dll,371"
78+
Add-Shortcut "Utilities\Autoruns" "${Env:ProgramData}\chocolatey\lib\AutoRuns\tools\Autoruns.exe" ""
8079
Add-Shortcut "Utilities\CCEnhancer" "${Env:ProgramFiles(x86)}\CCEnhancer\CCEnhancer.exe" ""
8180
Add-Shortcut "Utilities\CCleaner" "${Env:ProgramFiles}\CCleaner\CCleaner64.exe" ""
8281
Add-Shortcut "Utilities\Chocolatey GUI" "${Env:ProgramFiles(x86)}\Chocolatey GUI\ChocolateyGui.exe" ""
8382
Add-Shortcut "Utilities\NFOPad" "${Env:ProgramFiles(x86)}\NFOPad\NFOPad.exe" ""
83+
Add-Shortcut "Utilities\Process Explorer" "${Env:ProgramData}\chocolatey\lib\sysinternals\tools\procexp64.exe" ""
8484
Add-Shortcut "Utilities\ShareX" "${Env:ProgramFiles}\ShareX\ShareX.exe" ""
8585
Add-Shortcut "Utilities\SimpleWall" "${Env:ProgramFiles}\simplewall\simplewall.exe" ""
86-
Add-Shortcut "Utilities\WinDirStat" "${Env:ProgramFiles(x86)}\WinDirStat\windirstat.exe" "partitionmanager"
86+
Add-Shortcut "Utilities\WinDirStat" "${Env:ProgramFiles(x86)}\WinDirStat\windirstat.exe" "win11tweak-hardware.dll,69"
8787

8888
# Remove Startup / Add Postfix
8989
Remove-Reg -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" -Name "KeePassXC"

0 commit comments

Comments
 (0)