Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. Set-WindowsExplorerOptions -EnableShowHiddenFoldersDrives -EnableShowFileExtensions
  2. Disable-GameBarTips
  3. Disable-BingSearch
  4. Enable-MicrosoftUpdate
  5.  
  6. # Install all the packages
  7. # -y confirm yes for any prompt during the install process
  8.  
  9. # Powershell Core
  10. choco install powershell-core -fy
  11. # Dig
  12. choco install bind-toolsonly -fy
  13. # Chocolatey GUI
  14. choco install chocolateygui -fy
  15. # ConEmu
  16. choco install conemu -fy
  17. # add installing the config?
  18. # Git (Install)
  19. choco install git.install -fy
  20. # HashTab
  21. choco install hashtab -fy
  22. # Hashdeep
  23. #choco install hashdeep -fy
  24. # PuTTY
  25. #choco install putty.install -fy
  26. # WinSCP
  27. #choco install winscp.install -fy
  28. # Lightscreen
  29. #choco install lightscreen -fy
  30. # Nmap
  31. choco install nmap -fy
  32. # Libressl (openssl replacement)
  33. choco install libressl -fy
  34. # Openssl (light)
  35. #choco install openssl.light -fy
  36. # PhantomJS
  37. choco install phantomjs -fy
  38. # Sysinternals
  39. choco install sysinternals -fy
  40. # Varpanel
  41. choco install varpanel -fy
  42. # GNU Wget
  43. choco install wget -fy
  44. # 7zip (Install)
  45. choco install 7zip.install -fy
  46. # Docker Desktop
  47. choco install docker-desktop --pre -fy
  48. # Sumo (lite)
  49. choco install sumo -fy
  50.  
  51. # choco install <package_name> repeats for all the packages you want to install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement