cli config reset¶
Resets the specified CLI configuration option to its default value
Usage¶
m365 cli config reset [options]
Options¶
-k, --key [key]
- Config key to reset. If not specified, will reset all configuration settings to default
-h, --help
- output usage information
--query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Available settings¶
Following is the list of configuration settings available in CLI for Microsoft 365.
Setting name | Definition | Default value |
---|---|---|
autoOpenBrowserOnLogin |
Automatically open the browser to the Azure AD login page after running m365 login command in device code mode. This setting will be replaced by autoOpenLinksInBrowser in the next major release. |
false |
autoOpenLinksInBrowser |
Automatically open the browser for all commands which return a url and expect the user to copy paste this to the browser. For example when logging in, using m365 login in device code mode. This setting will replace autoOpenBrowserOnLogin in the next major release. |
false |
copyDeviceCodeToClipboard |
Automatically copy the device code to the clipboard when running m365 login command in device code mode |
false |
csvEscape |
Single character used for escaping; only apply to characters matching the quote and the escape options | " |
csvHeader |
Display the column names on the first line | true |
csvQuote |
The quote characters surrounding a field. An empty quote value will preserve the original field, whether it contains quotation marks or not. |
|
csvQuoted |
Quote all the non-empty fields even if not required | false |
csvQuotedEmpty |
Quote empty strings and overrides quoted_string on empty strings when defined | false |
errorOutput |
Defines if errors should be written to stdout or stderr |
stderr |
output |
Defines the default output when issuing a command | json |
printErrorsAsPlainText |
When output mode is set to json , print error messages as plain-text rather than JSON |
true |
prompt |
Prompts for missing values in required options | false |
showHelpOnFailure |
Automatically display help when executing a command failed | true |
Examples¶
Reset CLI configuration option showHelpOnFailure to its default value
m365 cli config reset --key showHelpOnFailure
Reset all configuration settings to default
m365 cli config reset