├── .gitignore ├── LICENSE ├── README.md ├── plists ├── DisableAccessibilitySetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableAppearanceSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableAppleIntelligenceSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableExternalAccounts │ └── com.apple.loginwindow.plist ├── DisablePrivacySetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableScreenTimeSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableSiriSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableTimeMachineDiskOffer │ └── com.apple.TimeMachine.plist ├── DisableTouchIDSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableTrueToneSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableUnlockwithAppleWatchSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableWallpaperSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableWelcomeToMacScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableiCloudSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisableiCloudStorageSetupAssistantScreen │ └── com.apple.SetupAssistant.managed.plist ├── DisplayLoginwindowInfo │ └── com.apple.loginwindow.plist ├── DocumentationTerminalSettings │ └── com.apple.Terminal.plist ├── DocumentationVMFinderPrefs │ └── com.apple.finder.plist ├── DocumentationVMSidebarPrefs │ └── com.apple.sidebarlists.plist ├── DocumentationVMUserLoginwindowPrefs │ └── com.apple.loginwindow.plist ├── LoginwindowUsernamePasswordBlanks │ └── com.apple.loginwindow.plist └── SetBBEditConfiguration │ └── com.barebones.bbedit.plist └── profiles ├── BBEditConfiguration.mobileconfig ├── Disable Desktop Widgets.mobileconfig ├── DisableAccessibilitySetupAssistantScreen.mobileconfig ├── DisableAppearanceSetupAssistantScreen.mobileconfig ├── DisableAppleIntelligenceSetupAssistantScreen.mobileconfig ├── DisableExternalAccounts.mobileconfig ├── DisablePrivacySetupAssistantScreen.mobileconfig ├── DisableRecentTagsinFinderSidebar.mobileconfig ├── DisableReopenWindowsWhenLoggingBackIn.mobileconfig ├── DisableScreenTimeSetupAssistantScreen.mobileconfig ├── DisableScreenshotDropShadow.mobileconfig ├── DisableScreenshotFloatingThumbnail.mobileconfig ├── DisableSequoiaSetupAssistantScreens.mobileconfig ├── DisableSiriSetupAssistantScreen.mobileconfig ├── DisableTimeMachineDiskRequests.mobileconfig ├── DisableTouchIDSetupAssistantScreen.mobileconfig ├── DisableTrueToneSetupAssistantScreen.mobileconfig ├── DisableUnlockwithAppleWatchSetupAssistantScreen.mobileconfig ├── DisableWallpaperSetupAssistantScreen.mobileconfig ├── DisableWelcomeToMacScreen.mobileconfig ├── DisableiCloudSetupAssistantScreen.mobileconfig ├── DisableiCloudStorageSetupAssistantScreen.mobileconfig ├── DisplayLoginWindowInformation.mobileconfig ├── EnableScrollbarVisibility.mobileconfig ├── FinderSettings.mobileconfig ├── FinderSidebarSettings.mobileconfig ├── ManageClickWallpaperToShowDesktopItems.mobileconfig ├── SetTimeServerandTimeZone.mobileconfig ├── SetsDocumentationTerminalprofile.mobileconfig ├── SuppressAppleIntelligencenotifications.mobileconfig ├── SuppressLoginItemAddedNotifications.mobileconfig ├── SuppressLoginItemAddednotifications.mobileconfig └── macOSOnboardingCompleted.mobileconfig /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/README.md -------------------------------------------------------------------------------- /plists/DisableAccessibilitySetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableAccessibilitySetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableAppearanceSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableAppearanceSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableAppleIntelligenceSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableAppleIntelligenceSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableExternalAccounts/com.apple.loginwindow.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableExternalAccounts/com.apple.loginwindow.plist -------------------------------------------------------------------------------- /plists/DisablePrivacySetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisablePrivacySetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableScreenTimeSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableScreenTimeSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableSiriSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableSiriSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableTimeMachineDiskOffer/com.apple.TimeMachine.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableTimeMachineDiskOffer/com.apple.TimeMachine.plist -------------------------------------------------------------------------------- /plists/DisableTouchIDSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableTouchIDSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableTrueToneSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableTrueToneSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableUnlockwithAppleWatchSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableUnlockwithAppleWatchSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableWallpaperSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableWallpaperSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableWelcomeToMacScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableWelcomeToMacScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableiCloudSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableiCloudSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisableiCloudStorageSetupAssistantScreen/com.apple.SetupAssistant.managed.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisableiCloudStorageSetupAssistantScreen/com.apple.SetupAssistant.managed.plist -------------------------------------------------------------------------------- /plists/DisplayLoginwindowInfo/com.apple.loginwindow.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DisplayLoginwindowInfo/com.apple.loginwindow.plist -------------------------------------------------------------------------------- /plists/DocumentationTerminalSettings/com.apple.Terminal.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DocumentationTerminalSettings/com.apple.Terminal.plist -------------------------------------------------------------------------------- /plists/DocumentationVMFinderPrefs/com.apple.finder.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DocumentationVMFinderPrefs/com.apple.finder.plist -------------------------------------------------------------------------------- /plists/DocumentationVMSidebarPrefs/com.apple.sidebarlists.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DocumentationVMSidebarPrefs/com.apple.sidebarlists.plist -------------------------------------------------------------------------------- /plists/DocumentationVMUserLoginwindowPrefs/com.apple.loginwindow.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/DocumentationVMUserLoginwindowPrefs/com.apple.loginwindow.plist -------------------------------------------------------------------------------- /plists/LoginwindowUsernamePasswordBlanks/com.apple.loginwindow.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/LoginwindowUsernamePasswordBlanks/com.apple.loginwindow.plist -------------------------------------------------------------------------------- /plists/SetBBEditConfiguration/com.barebones.bbedit.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/plists/SetBBEditConfiguration/com.barebones.bbedit.plist -------------------------------------------------------------------------------- /profiles/BBEditConfiguration.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/BBEditConfiguration.mobileconfig -------------------------------------------------------------------------------- /profiles/Disable Desktop Widgets.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/Disable Desktop Widgets.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableAccessibilitySetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableAccessibilitySetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableAppearanceSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableAppearanceSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableAppleIntelligenceSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableAppleIntelligenceSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableExternalAccounts.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableExternalAccounts.mobileconfig -------------------------------------------------------------------------------- /profiles/DisablePrivacySetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisablePrivacySetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableRecentTagsinFinderSidebar.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableRecentTagsinFinderSidebar.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableReopenWindowsWhenLoggingBackIn.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableReopenWindowsWhenLoggingBackIn.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableScreenTimeSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableScreenTimeSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableScreenshotDropShadow.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableScreenshotDropShadow.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableScreenshotFloatingThumbnail.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableScreenshotFloatingThumbnail.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableSequoiaSetupAssistantScreens.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableSequoiaSetupAssistantScreens.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableSiriSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableSiriSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableTimeMachineDiskRequests.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableTimeMachineDiskRequests.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableTouchIDSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableTouchIDSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableTrueToneSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableTrueToneSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableUnlockwithAppleWatchSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableUnlockwithAppleWatchSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableWallpaperSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableWallpaperSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableWelcomeToMacScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableWelcomeToMacScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableiCloudSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableiCloudSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisableiCloudStorageSetupAssistantScreen.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisableiCloudStorageSetupAssistantScreen.mobileconfig -------------------------------------------------------------------------------- /profiles/DisplayLoginWindowInformation.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/DisplayLoginWindowInformation.mobileconfig -------------------------------------------------------------------------------- /profiles/EnableScrollbarVisibility.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/EnableScrollbarVisibility.mobileconfig -------------------------------------------------------------------------------- /profiles/FinderSettings.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/FinderSettings.mobileconfig -------------------------------------------------------------------------------- /profiles/FinderSidebarSettings.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/FinderSidebarSettings.mobileconfig -------------------------------------------------------------------------------- /profiles/ManageClickWallpaperToShowDesktopItems.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/ManageClickWallpaperToShowDesktopItems.mobileconfig -------------------------------------------------------------------------------- /profiles/SetTimeServerandTimeZone.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/SetTimeServerandTimeZone.mobileconfig -------------------------------------------------------------------------------- /profiles/SetsDocumentationTerminalprofile.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/SetsDocumentationTerminalprofile.mobileconfig -------------------------------------------------------------------------------- /profiles/SuppressAppleIntelligencenotifications.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/SuppressAppleIntelligencenotifications.mobileconfig -------------------------------------------------------------------------------- /profiles/SuppressLoginItemAddedNotifications.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/SuppressLoginItemAddedNotifications.mobileconfig -------------------------------------------------------------------------------- /profiles/SuppressLoginItemAddednotifications.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/SuppressLoginItemAddednotifications.mobileconfig -------------------------------------------------------------------------------- /profiles/macOSOnboardingCompleted.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtrouton/documentation_VM_profiles/HEAD/profiles/macOSOnboardingCompleted.mobileconfig --------------------------------------------------------------------------------