User Profile
B4Art
Brass Contributor
Joined 3 years ago
User Widgets
Recent Discussions
Re: Question: Script to see if device is Azure AD joined
A little extension to your script: $subKey = Get-Item "HKLM:/SYSTEM/CurrentControlSet/Control/CloudDomainJoin/TenantInfo/$tenantId" $tenantInfo = $subKey.GetValue("DisplayName") write-host $tenantInfo And for completeness: $subKey = Get-Item "HKLM:/SYSTEM/CurrentControlSet/Control/CloudDomainJoin/JoinInfo" $guids = $subKey.GetSubKeyNames() foreach($guid in $guids) { $guidSubKey = $subKey.OpenSubKey($guid) $tenantId = $guidSubKey.GetValue("TenantId") $userEmail = $guidSubKey.GetValue("UserEmail") } $subKey = Get-Item "HKLM:/SYSTEM/CurrentControlSet/Control/CloudDomainJoin/TenantInfo/$tenantId" $tenantInfo = $subKey.GetValue("DisplayName") write-host $tenantId write-host $tenantInfo write-host $userEmail1.8KViews1like0CommentsRe: How to see photo's and movies in the create-date order in OneDrive Photo
You could try using Powershell: (get-item *) | Sort-Object CreationTime Or (get-item *) | Sort-Object CreationTime -Ascending And there is variation With (get-item *) | Sort-Object CreationTimeUtc but that is not relevant for sorting. It is (of course) only available from a CLI. And I do understand that this is maybe not what you are searching for.3.2KViews0likes0CommentsRe: How to see photo's and movies in the create-date order in OneDrive Photo
You're correct Mixtral says: 1. EXIF (Exchangeable Image File) is a format that stores metadata in image files, like JPEGs. 2. MP4 is a multimedia container format, often used for videos. 3. The excerpt states that EXIF data is not embedded in an MP4 file. 4. This means that additional information, such as camera settings or GPS coordinates, is not stored in the video file. 5. It's important to note that EXIF data is not typically used or relevant for MP4 files. Maybe there is some information try: https://en.wikipedia.org/wiki/ExifTool3.9KViews0likes2CommentsRe: Exclude MFA for Non Users
Ask_Ak Maybe bit off topic, we had the experience of room-accounts becoming disabled via an automatic process in the background in Azure AD. This was because after creating the Room account the password did not match the password policy when they were created. Maybe this remark will help someone else.4.6KViews0likes0Comments
Recent Blog Articles
No content to show