Giter VIP home page Giter VIP logo

windeploytui's Introduction

Windows shield

WinDeployTUI

Deployment Text Interface for configuring Windows OS. It currently can do the following things:

  • Optimize taskbar
  • Silent install and uninstall a VNC server
  • Select and install Chocolatey packages
  • Remove garbage Appx packages on Win 10

WDT screenshot

System requirements

  • Windows 7 and higher?
  • PowerShell 4.0 and higher?
  • User with system admin rights
  • Internet connection for installing Chocolatey packages

Tested on OS:

  • Windows Server 2012R2 x64
  • Windows 8.1 x64
  • Windows 10 build 2004 and 20H2

Tested with:

  • Windows PowerShell 4.0 (partial functionality)
  • Windows PowerShell 5.1
  • PowerShell Core 7.1

Download and run latest version

Start PowerShell as Administrator and run the following commands:

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser

$Path = (Get-Location).Path
Invoke-WebRequest -UseBasicParsing -Uri "https://github.com/wilcodl/WinDeployTUI/archive/master.zip" -OutFile "$Path\master.zip"
if (Test-Path "$Path\WinDeployTUI-master"){ Remove-Item -Path "$Path\WinDeployTUI-master" -Recurse -Force }

Add-Type -AssemblyName System.IO.Compression.FileSystem
[System.IO.Compression.ZipFile]::ExtractToDirectory("$Path\master.zip", $Path)

Import-Module "$Path\WinDeployTUI-master\WinDeployTUI"
Start-WDT

Install and run stable version

Start PowerShell as Administrator and run the following commands:

Install-Module WinDeployTUI
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser

Import-Module WinDeployTUI
Start-WDT

Install on Windows 8.1

  • Install Chocolatey:
Set-ExecutionPolicy Bypass -Scope Process -Force
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
  • Install WMF 5.1:
choco install powershell -y
  • Reboot your system
  • Set TLS version and register powershellgallery.com:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Register-PSRepository -Default
  • Install WinDeployTUI, see above

windeploytui's People

Contributors

wilcodl avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.