-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add: AntiVirus download script that downloads a copy of Adaware to the desktop * Add: PowerShell script that can automatically download a copy of Win11Tweaks * Add: Windows Defender logging disabled * Add: mpv-config automatically downloaded and fonts are installed * Add: Windows 11 Default Drive icon * Modify: Settings > Configuration in the Start Menu now includes Git/GPG/SSH configs * Modify: the games section in the Start Menu has been updated for Playnite * Modify: README.md has been updated to the reflect the changes in Windows 11 Build 22621.169 * Modify: FoxIt Reader was replaced with SumatraPDF (which can also read epubs, etc.) * Modify: youtube-dl was replaced with yt-dlp * Modify: Typora was replaced with MarkText * Fix: gpg-bridge is now properly downloaded from Github instead of being included * Fix: winhello.dll is now properly downloaded from Github * Fix: ComputerName and WorkgroupName are now set properly * Remove: Kaspersky AntiVirus * Remove: CryptoApps and everything associated
- Loading branch information
Showing
59 changed files
with
364 additions
and
133 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<# | ||
▄▄▄▄ ▄▄▄▄ ▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ | ||
█ ▄▄ ▄ ▄▄ ▄ ▄▄▄▄ ▄▄ ▄ ▄▄ ▄▄▄▄ ▄▄▄▄ ▄▄▄ ▀ | ||
█ ██ █ ██ █ ██ █ ██ █ ██ ██ █ ██ █ ██▀ █ | ||
■ ██▄▀ ██▄█ ██▄█ ██ █ ▀▀ ██ ██▄█ ██▄▀ ▀██▄ ■ | ||
█ ██ █ ▄▄ █ ██ █ ██ █ ██▄▄ ██ █ ██ █ ▄██ █ | ||
▄ ▀▀ ▀ ▀▀▀▀ ▀▀ ▀ ▀▀▀▀ ▀▀▀▀ ▀▀ ▀ ▀▀▀▀ ▀▀▀ █ | ||
▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀ | ||
Win11Tweaks (KYAU Labs Edition) | ||
Copyright (C) 2022 KYAU Labs (https://kyaulabs.com) | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as | ||
published by the Free Software Foundation, either version 3 of the | ||
License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
#> | ||
|
||
Invoke-WebRequest https://github.com/kyaulabs/win11tweak/archive/refs/heads/master.zip -OutFile ${Env:UserProfile}\Downloads\win11tweak.zip | Out-Null | ||
Add-Type -AssemblyName System.IO.Compression.FileSystem | ||
[System.IO.Compression.ZipFile]::ExtractToDirectory("${Env:UserProfile}\Downloads\win11tweak.zip", "${Env:UserProfile}\Desktop") | ||
Rename-Item -Path "${Env:UserProfile}\Desktop\win11tweak-master" -NewName "${Env:UserProfile}\Desktop\win11tweak" | ||
Remove-Item -Path "${Env:UserProfile}\Downloads\win11tweak.zip" -Force | Out-Null |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<# | ||
▄▄▄▄ ▄▄▄▄ ▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ | ||
█ ▄▄ ▄ ▄▄ ▄ ▄▄▄▄ ▄▄ ▄ ▄▄ ▄▄▄▄ ▄▄▄▄ ▄▄▄ ▀ | ||
█ ██ █ ██ █ ██ █ ██ █ ██ ██ █ ██ █ ██▀ █ | ||
■ ██▄▀ ██▄█ ██▄█ ██ █ ▀▀ ██ ██▄█ ██▄▀ ▀██▄ ■ | ||
█ ██ █ ▄▄ █ ██ █ ██ █ ██▄▄ ██ █ ██ █ ▄██ █ | ||
▄ ▀▀ ▀ ▀▀▀▀ ▀▀ ▀ ▀▀▀▀ ▀▀▀▀ ▀▀ ▀ ▀▀▀▀ ▀▀▀ █ | ||
▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀ | ||
Win11Tweaks (KYAU Labs Edition) | ||
Copyright (C) 2022 KYAU Labs (https://kyaulabs.com) | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as | ||
published by the Free Software Foundation, either version 3 of the | ||
License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
#> | ||
|
||
. "${PSScriptRoot}\_funcs.ps1" | ||
|
||
# Map All Network Drives | ||
Output-Section -Section "Network" -Desc "Mapped Drives" | ||
Foreach ($drive in $MappedDrives) { | ||
$Letter = $drive.DriveLetter | ||
$RemotePath = $drive.RemotePath | ||
$Name = $drive.Name | ||
$Icon = $drive.Icon | ||
if ($RemotePath) { | ||
Add-Reg -Path "HKCU:\Network\${Letter}" | ||
Add-Reg -Path "HKCU:\Network\${Letter}" -Name "ConnectionType" -Type Dword -Value "0" | ||
Add-Reg -Path "HKCU:\Network\${Letter}" -Name "DeferFlags" -Type Dword -Value "4" | ||
Add-Reg -Path "HKCU:\Network\${Letter}" -Name "ProviderName" -Type String -Value "Microsoft Windows Network" | ||
Add-Reg -Path "HKCU:\Network\${Letter}" -Name "ProviderType" -Type Dword -Value "131072" | ||
Add-Reg -Path "HKCU:\Network\${Letter}" -Name "RemotePath" -Type String -Value "${RemotePath}" | ||
Add-Reg -Path "HKCU:\Network\${Letter}" -Name "UserName" -Type Dword -Value "0" | ||
} | ||
|
||
$sh = New-Object -com Shell.Application | ||
$sh.NameSpace($Letter+':').Self.Name = ${Name} | ||
if ($Icon) { | ||
Add-Reg -Path "HKCU:\Software\Classes\Applications" | ||
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe" | ||
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives" | ||
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives\${Letter}" | ||
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives\${Letter}\DefaultIcon" | ||
Add-Reg -Path "HKCU:\Software\Classes\Applications\Explorer.exe\Drives\${Letter}\DefaultIcon" -Name "(Default)" -Type String -Value ${Icon} | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.