Feel free to try this method if it works, if not switch back to the one below.
- Reach the country selection window
- Press
Shift + F10
- Type
start ms-cxh:localonly
- Follow the account creation window, then finally hit Next
# This script is useful if you want to compact your VM disk file to the minimum size possible | |
# Use this script in combination with compact_vm_disk ( https://github.com/julianxhokaxhiu/dotfiles/blob/master/.zshrc#L231-L235 ) for best results | |
$ErrorActionPreference = "Stop" | |
# The array containing the files to compress | |
$files = @() | |
# The folders where to look for files | |
$wsl_folders = @( | |
# WSL OSes from the Windows Store |
# If you use bash, this technique isn't really zsh specific. Adapt as needed. | |
source ~/keychain-environment-variables.sh | |
# AWS configuration example, after doing: | |
# $ set-keychain-environment-variable AWS_ACCESS_KEY_ID | |
# provide: "AKIAYOURACCESSKEY" | |
# $ set-keychain-environment-variable AWS_SECRET_ACCESS_KEY | |
# provide: "j1/yoursupersecret/password" | |
export AWS_ACCESS_KEY_ID=$(keychain-environment-variable AWS_ACCESS_KEY_ID); | |
export AWS_SECRET_ACCESS_KEY=$(keychain-environment-variable AWS_SECRET_ACCESS_KEY); |
############################################################################### | |
# ENVIRONMENT CONFIGURATION | |
############################################################################### | |
MAKEFLAGS += --no-print-directory | |
SHELL=/bin/bash | |
# Use default as default goal when running 'make' | |
.PHONY: default | |
.DEFAULT_GOAL := default |
#!/usr/bin/env bash | |
#=========================================================================== | |
# Works only with the official image available in the Mac App Store. | |
# Make sure you download the official installer before running this script. | |
#=========================================================================== | |
# Change this at your desire. Sometimes this works out of the box, sometimes not. | |
# Default size: ~16 GB | |
DISK_SIZE="15361m" |
import jenkins.model.Jenkins; | |
// Start Jenkins in maintenance mode | |
Jenkins.instance.doQuietDown(); |
Feel free to try this method if it works, if not switch back to the one below.
Shift + F10
start ms-cxh:localonly
FROM alpine:latest |
ih8sn.conf
here into the relative file inside the directorypush.ps1
or push.sh
depending on the OS you run the script#!/usr/bin/env bash | |
#=========================================================================== | |
# Works only with the official image available in the Mac App Store. | |
# Make sure you download the official installer before running this script. | |
#=========================================================================== | |
# Change this at your desire. Sometimes this works out of the box, sometimes not. | |
# Default size: ~16 GB | |
DISK_SIZE="15361m" |