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 |
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
| @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
| .tabbrowser-tab .tab-close-button { | |
| opacity: 0; | |
| margin-left: -4.5px !important; | |
| margin-right: 2px !important; | |
| } | |
| .tabbrowser-tab:not(:hover) .tab-close-button { | |
| display: none; |
I got a Windows 10 key and tried to do the normal upgrade, but got a "0xc004f050" error. I then tried to fix it by useing the generic pro key but then got a "0x803fa067" error. These are the steps the finally got everything working. I did the this on 2 PC so I think it is solid.
- buy a valid Windows 10 Pro key (any key will work)
- I got mine on Ebay for $4. It said 1 minute delivery, but it took about 1 hour to get it.
- Make sure Windows is up to date.
- Change product keys (remember these steps you will use them a lot)
- Select the Start button
- Then select Settings > Update & Security
- Then select Activation
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
| - name: Testing variables with SUDO=NO | |
| hosts: "*" | |
| sudo: no | |
| tasks: | |
| - name: "PLAYBOOK SUDO=NO, TASK SUDO=NO" | |
| command: whoami | |
| register: whoami_output | |
| sudo: no | |
| - debug: var=whoami_output.stdout |