This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Open PowerShell as Admin | |
| Allow for the script to be ran | |
| # Set-ExecutionPolicy RemoteSigned -Scope LocalMachine -Force | |
| Install NuGet and PowerShellGet | |
| # Install-PackageProvider -Name NuGet -Force | |
| # Install-Module -Name PowerShellGet -Force -AllowClobber | |
| Install Exchange powershell module as current user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #For use with Tutorial: https://www.youtube.com/watch?v=FaytvySV04s | |
| #Copy and paste this code in a .bat file to enable Hyper-V | |
| pushd "%~dp0" | |
| dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt | |
| for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" | |
| del hyper-v.txt | |
| Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL | |
| pause |