Você está na página 1de 4

LISTA DISPONIBILIZADA POR CANAL WINCHESTER!

www.youtube.com/winchestercanal
tutorial: Configure AUTOMATICAMENTE o Windows com esse Script!

# 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\Storage
Policy" -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


New-Item -Path
"HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarDeveloperS
ettings" -Force | Out-Null
New-ItemProperty -Path
"HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarDeveloperS
ettings" -Name "TaskbarEndTask" -Value 1 -PropertyType DWORD -Force

# Alterar o layout do Menu Iniciar para priorizar aplicativos fixados


Set-ItemProperty -Path
"HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name
Start_Layout -Value 1

# Ativar AeroShake
Set-ItemProperty -Path
"HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name
"DisallowShaking" -Value 0

# Ativar caixa de seleção no Windows Explorer


reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v
"AutoCheckSelect" /t REG_DWORD /d 1 /f

# Ativar sugestão de texto ao digitar com teclado físico e correção ortográfica do


Windows
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Input\Settings" -Name
"EnableHwkbTextPrediction" -Value 1
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Input\Settings" -Name
"MultilingualEnabled" -Value 1
Set-ItemProperty -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Name
"EnableSpellchecking" -Value 1
Set-ItemProperty -Path "HKCU:\Software\Microsoft\TabletTip\1.7" -Name
"EnableAutocorrection" -Value 1

# Ativar “Obter atualizações assim que disponiveis” no Windows Update


Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name
"IsContinuousInnovationOptedIn" -Value 1

# Ativar LongPath (aumenta o limite de tamanho para endereços de diretórios)


Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name
"LongPathsEnabled" -Value 1 -Type DWORD

# Reiniciar o Explorador do Windows para aplicar as alterações


Stop-Process -Name explorer -Force
Start-Process explorer

Você também pode gostar