I don't believe there's a way to click on that exact tab. It's possible Applescript could do it, but getting GUI scripting to work right can be a little difficult.
You could open the System Information.app and then open the Storage Management window (same as clicking the Manage... button in the About this Mac > Storage tab)
Something like this for example, but it would have to be run in the user context to work I'm guessing, if being called in a Jamf policy.
tell application "System Information"
activate
tell application "System Events"
keystroke "u" using command down
end tell
end tell
This won't bring you to the colored bar in the About window of course, so I don't know if it meets your needs.
Thanks, but it still opens in the "Overview" tab. I was trying to find out if it can be open directly from the "Storage" one.
Thanks, but it still opens in the "Overview" tab. I was trying to find out if it can be open directly from the "Storage" one.
Try using @vinu_thankachan command from "About This Mac" to "Storage Management"?
```
open x-apple.systempreferences:com.apple.settings.Storage
```