F3060FOX&©
# Instalar modulo de mudar resolução
Install-Module -Name DisplaySettings -Force
Set-ExecutionPolicy RemoteSigned
# Mudar resolução da tela
Set-DisplayResolution -Width 1920 -Height 1080
# Ativar o tema escuro em todo o sistema, incluindo a barra de tarefas
New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0 -PropertyType DWORD -Force
New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -Value 0 -PropertyType DWORD -Force
# Exibir extensões de arquivo conhecidas no Explorer
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideFileExt" -Value 0
# Exibir arquivos e pastas ocultos
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "Hidden" -Value 1
# Definir as configurações de energia para "Alto Desempenho"
powercfg -SetActive SCHEME_MIN
# Definir a localização da barra de tarefas para o centro
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarAl" -Value 1
# Definir a localização da barra de tarefas para esquerda
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarAl" -Value 0
# Remover a caixa de pesquisa da barra de tarefas
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "SearchboxTaskbarMode" -Value 0
# Ocultar os ícones da área de trabalho
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "HideIcons" -Value 1
# Usar o wallpaper padrao do tema claro
# Definir o caminho para o wallpaper padrão do Windows 11
$wallpaperPath = "C:\Windows\Web\Wallpaper\Windows\img0.jpg"
# Modificar diretamente as chaves de registro
reg add "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d $wallpaperPath /f
reg add "HKCU\Control Panel\Desktop" /v WallpaperStyle /t REG_SZ /d 2 /f
reg add "HKCU\Control Panel\Desktop" /v TileWallpaper /t REG_SZ /d 0 /f
# Atualizar a configuração do papel de parede em tempo real
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
# Usar o wallpaper padrao do tema escuro
# Definir o caminho para o wallpaper do tema escuro
$darkWallpaperPath = "C:\Windows\Web\Wallpaper\Windows\img19.jpg"
# Modificar diretamente as chaves de registro
reg add "HKCU\Control Panel\Desktop" /v Wallpaper /t REG_SZ /d "C:\Windows\Web\Wallpaper\Windows\img19.jpg" /f
reg add "HKCU\Control Panel\Desktop" /v WallpaperStyle /t REG_SZ /d 2 /f
reg add "HKCU\Control Panel\Desktop" /v TileWallpaper /t REG_SZ /d 0 /f
# Atualizar a configuração do papel de parede em tempo real
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
# Desativar a suspensão do sistema quando inativo
powercfg -change -standby-timeout-ac 0
powercfg -change -standby-timeout-dc 0
powercfg -change -monitor-timeout-ac 0
powercfg -change -monitor-timeout-dc 0
powercfg -change -disk-timeout-ac 0
powercfg -change -disk-timeout-dc 0
powercfg -change -hibernate-timeout-ac 0
powercfg -change -hibernate-timeout-dc 0
# Ativar o Sensor de Armazenamento
New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy" -Name "01" -Value 1 -PropertyType DWORD -Force
# Ativar histórico de area de transferência
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Clipboard" -Name "EnableClipboardHistory" -Value 1 -Type DWord
# Ocultar a Visão de Tarefas
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ShowTaskViewButton" -Value 1
# Ativar "Finalizar tarefa" na barra de tarefas
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarDeveloperSettings" -Name "TaskbarEndTask" -Value 0
# Reiniciar o Explorador do Windows para aplicar as alterações
Stop-Process -Name explorer -Force
Start-Process explorer