.
This commit is contained in:
8
PS/pShowAppIcons.ps1
Normal file
8
PS/pShowAppIcons.ps1
Normal file
@ -0,0 +1,8 @@
|
||||
Set-StrictMode -Version 'latest'
|
||||
if (Test-Path -Path 'HKCU:\Control Panel\NotifyIconSettings')
|
||||
{
|
||||
Get-ChildItem -Path 'HKCU:\Control Panel\NotifyIconSettings' |
|
||||
ForEach-Object {
|
||||
Set-ItemProperty -Path ($_.PSPath) -ErrorAction SilentlyContinue -Name 'IsPromoted' -Value 0x00000001
|
||||
}
|
||||
}
|
||||
5
PS/pShowSeconds.ps1
Normal file
5
PS/pShowSeconds.ps1
Normal file
@ -0,0 +1,5 @@
|
||||
|
||||
If (!(Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced")) {
|
||||
New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" | Out-Null }
|
||||
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ShowSecondsInSystemClock" -Type DWord -Value 1
|
||||
|
||||
11
bin/pull.bat
11
bin/pull.bat
@ -1,11 +0,0 @@
|
||||
|
||||
|
||||
curl --ssl-no-revoke -o c:\Packages\wlocal.zip https://git.cabinbagonly.com/mirror/wLocal/archive/main.zip
|
||||
curl --ssl-no-revoke -o c:\Packages\wbase.zip https://git.cabinbagonly.com/mirror/wBase/archive/main.zip
|
||||
curl --ssl-no-revoke -o c:\Packages\wpublic.zip https://git.cabinbagonly.com/mirror/wPublic/archive/main.zip
|
||||
|
||||
cd \scripts
|
||||
tar -xvf c:\Packages\wlocal.zip
|
||||
tar -xvf c:\Packages\wbase.zip
|
||||
tar -xvf c:\Packages\wpublic.zip
|
||||
|
||||
Reference in New Issue
Block a user