Advertisement
Lynngineer

boxstarter-p50-more

Dec 4th, 2018
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. # Description: Boxstarter Script
  2. # Author: Microsoft
  3. # Common dev settings for machine learning
  4.  
  5. Disable-UAC
  6.  
  7. #--- Windows Features ---
  8. #Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
  9.  
  10. #--- File Explorer Settings ---
  11. #Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneExpandToCurrentFolder -Value 1
  12. #Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneShowAllFolders -Value 1
  13. #Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name LaunchTo -Value 1
  14. #Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name MMTaskbarMode -Value 2
  15.  
  16. #--- Git ---
  17. #choco install -y git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"'
  18.  
  19. #--- Windows Subsystems/Features ---
  20. #choco install -y Microsoft-Hyper-V-All -source windowsFeatures
  21. #choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures
  22.  
  23. #--- Ubuntu ---
  24. # Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing
  25. # Add-AppxPackage -Path ~/Ubuntu.appx
  26.  
  27. #--- Fonts ---
  28. #choco install -y inconsolata
  29. # choco install -y ubuntu.font
  30.  
  31. #--- Tools ---
  32. #choco install -y docker-for-windows
  33. choco install -y python
  34. #choco install -y 7zip.install
  35.  
  36. # TODO: install additional ML tools
  37.  
  38. #--- VS Code ---
  39. #choco install -y vscode
  40.  
  41. #--- VS Code extensions ---
  42. #choco install -y vscode-docker
  43.  
  44. Enable-UAC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement