[System.Environment]::OSVersion.Version
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
[System.Environment]::OSVersion.Version
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
It can be very useful to build aliases quickly for windows hosts. This can be done effectively with a CMD/BAT file
This executes a command and if there are parameters passed to the command then they are added to the command
C:\Users\msn\AppData\Local\Microsoft\WindowsApps>more azrg.bat
Develop locally using the Azure Cosmos DB emulator provides an introduction into working with Cosmos DB
"C:\Program Files\Azure Cosmos DB Emulator\Microsoft.Azure.Cosmos.Emulator.exe"
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force
Install-Module -Name AzureAD -Scope CurrentUser
One problem with starting people working with Gherkin is getting them to interact with web pages quickly and record the syntax for those interactions
gherkin-scenario-builder provides a way to introduce people to the gherkin syntax and the associated output.
## to build a container | |
''' | |
docker build . -t test | |
''' | |
## to run a container | |
''' | |
docker run --rm -ir --entrypoint bash test | |
''' | |
## to delete zombine containers | |
''' |