File: constants_windows.go

package info (click to toggle)
golang-github-minio-cli 1.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: python: 241; sh: 11; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 629 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package cli

// Default constants for windows environments
const (
	defaultPrompt             = "C:\\>"
	defaultEnvSetCmd          = "set"
	defaultAssignmentOperator = "="
	defaultDisableHistory     = "For security reasons, disable Windows history activity momentarily.\n" +
		"     Go to \"Settings/Privacy/Activity history\" and click on check boxes,\n" +
		"     \"Store my activity on this device\" and \"Send my activity history to\n" +
		"     Microsoft\" to deselect and disable the history activity."
	defaultEnableHistory = "Click and select \"Store my activity on this device\" check box to enable history activity."
)