Advertisement
Guest User

Untitled

a guest
Jun 16th, 2021
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.66 KB | None | 0 0
  1. @Echo off
  2.  
  3. :nashalo
  4. Echo ============ Choose: ============
  5. Echo Small TaskBar - 0
  6. Echo Medium TaskBar - 1
  7. Echo Big TaskBar - 2
  8.  
  9. Set /p vibor="Number: "
  10. if "%vibor%"=="0" (reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarSi /t REG_DWORD /d 0 /f) else if "%vibor%"=="1" (reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarSi /t REG_DWORD /d 1 /f) else if "%vibor%"=="2" (reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarSi /t REG_DWORD /d 2 /f) else Echo Wrong! & goto nashalo
  11. taskkill /F /IM explorer.exe
  12. start explorer.exe
  13. goto nashalo
  14. pause >nule >nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement