This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
windows [2017/05/16 11:40] shawn Microsoft Online section |
windows [2018/07/20 16:48] shawn More commandline stuff |
||
---|---|---|---|
Line 17: | Line 17: | ||
**NOTE:** Azure accounts cannot be closed. A //subscription// can be closed/removed, but the account remains. Neither can a credit card currently be removed from an account. | **NOTE:** Azure accounts cannot be closed. A //subscription// can be closed/removed, but the account remains. Neither can a credit card currently be removed from an account. | ||
+ | |||
+ | ===== Command-line (CMD.EXE) ===== | ||
+ | |||
+ | ==== Run default browser ==== | ||
+ | |||
+ | <code cmd> | ||
+ | start http://google.com | ||
+ | </code> | ||
+ | |||
+ | ==== Get part of an environment variable ==== | ||
+ | |||
+ | <code cmd> | ||
+ | Syntax | ||
+ | %variable:~num_chars_to_skip% | ||
+ | %variable:~num_chars_to_skip,num_chars_to_keep% | ||
+ | </code> | ||
+ | |||
+ | **References:** | ||
+ | |||
+ | * [[https://ss64.com/nt/syntax-substring.html]] | ||
+ | |||
+ |