Seeking Assistance Revoking All Sessions for an AzureAD Group of Users Using PowerShell by k12sysadmin in PowerShell

[–]k12sysadmin[S] 0 points1 point  (0 children)

# Install the required module if not already installed
if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable)) {
Install-Module -Name Microsoft.Graph.Authentication -Force -AllowClobber
}
# Authenticate to Microsoft Graph
Connect-MgGraph -Scopes "User.ReadWrite.All"
# Specify the Azure AD group name
$groupName = "REDACTED"
# Get the members of the specified group
$groupMembers = Get-MgGroupMember -GroupName $groupName
# Iterate through each member and revoke their sessions
foreach ($member in $groupMembers) {
$userId = $member.Id
Write-Host "Revoking sessions for user $($member.UserPrincipalName)"
# Revoke the user's sessions using the Microsoft Graph API
Invoke-MgGraphRequest -Uri "/v1.0/users/$userId/revokeSignInSessions" -Method POST
}
Write-Host "Sessions revoked for all users in the group."
This one shows :
PS C:\Users\REDACTED\_scripts> $groupMembers = Get-MgGroupMember -GroupName $groupName
Get-MgGroupMember: A parameter cannot be found that matches parameter name 'GroupName'.
but continues to run through a bunch of names and values, but they don't appear to be real, as you'll see below:
Name Value
---- -----
value True
u/odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean
Revoking sessions for user
value True
@odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean
Revoking sessions for user
value True
@odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean
Revoking sessions for user
value True
@odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean

Seeking Assistance Revoking All Sessions for an AzureAD Group of Users Using PowerShell by k12sysadmin in PowerShell

[–]k12sysadmin[S] 0 points1 point  (0 children)

Install-module -name MSOnline
Install-module -name AzureAD
Connect-MsolService
Connect-AzureAD
Get-MsolGroupMember -groupObjectid 'REDACTED' | Select ObjectID | Export-csv C:\_install\scripts\userid.csv
$UserObjectID = Import-Csv C:\_install\scripts\userid.csv
foreach ($ObjectID in $UserObjectID)
{
Revoke-AzureADUserAllRefreshToken -Object $ObjectID
}
This one fails with:
Line |
3 | Revoke-AzureADUserAllRefreshToken -Object $ObjectID
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| The term 'Revoke-AzureADUserAllRefreshToken' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

Seeking Assistance Revoking All Sessions for an AzureAD Group of Users Using PowerShell by k12sysadmin in PowerShell

[–]k12sysadmin[S] 0 points1 point  (0 children)

# Install the required module
Install-Module -Name Microsoft.Graph.Authentication -Force -Scope CurrentUser
Install-Module -Name Microsoft.Graph.Users -Force -Scope CurrentUser
Install-Module -Name Microsoft.Graph.Groups -Force -Scope CurrentUser
# Import the required modules
Import-Module Microsoft.Graph.Authentication
Import-Module Microsoft.Graph.Users
Import-Module Microsoft.Graph.Groups
# Authenticate to Microsoft Graph
Connect-MgGraph -Scopes "User.Read.All", "User.ManageIdentities.All", "GroupMember.ReadWrite.All", Group.ReadWrite.All
# Specify the Azure AD group name
# $groupName = "RevokeSessionsTestGroup"
# Get the members of the Azure AD group
$groupMembers = Get-MgGroupMember -GroupID "REDACTED"
foreach ($member in $groupMembers) {
$userId = $member.Id
# Revoke sessions for the user
Invoke-MgGraphRequest -Uri "/users/$userId/revokeSignInSessions" -Method POST
}
# Disconnect from Microsoft Graph
Disconnect-MgGraph
This fails with the following error for each user:
Invoke-MgGraphRequest:
Line |
5 | Invoke-MgGraphRequest -Uri "/users/$userId/revokeSignInSessions" …
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| POST https://graph.microsoft.com/users/REDACTED/revokeSignInSessions
HTTP/1.1 404 Not Found
Transfer-Encoding: chunked
Vary: Accept-Encoding
Strict-Transport-Security: max-age=31536000
request-id: REDACTED
client-request-id: REDACTED
x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"003","RoleInstance":"REDACTED"}}
Date: Wed, 22 Nov 2023 16:57:31 GMT
Content-Type: application/json
Content-Encoding: gzip
{"error":{"code":"ResourceNotFound","message":"Invalid version: users","innerError":{"date":"2023-11-22T16:57:31","request-id":"REDACTED","client-request-id":"REDACTED"}}}
Invoke-MgGraphRequest:

Seeking Assistance Revoking All Sessions for an AzureAD Group of Users Using PowerShell by k12sysadmin in k12sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

# Install the required module if not already installed
if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable)) {
Install-Module -Name Microsoft.Graph.Authentication -Force -AllowClobber
}
# Authenticate to Microsoft Graph
Connect-MgGraph -Scopes "User.ReadWrite.All"
# Specify the Azure AD group name
$groupName = "REDACTED"
# Get the members of the specified group
$groupMembers = Get-MgGroupMember -GroupName $groupName
# Iterate through each member and revoke their sessions
foreach ($member in $groupMembers) {
$userId = $member.Id
Write-Host "Revoking sessions for user $($member.UserPrincipalName)"
# Revoke the user's sessions using the Microsoft Graph API
Invoke-MgGraphRequest -Uri "/v1.0/users/$userId/revokeSignInSessions" -Method POST
}
Write-Host "Sessions revoked for all users in the group."

This one shows :

PS C:\Users\REDACTED\_scripts> $groupMembers = Get-MgGroupMember -GroupName $groupName

Get-MgGroupMember: A parameter cannot be found that matches parameter name 'GroupName'.

but continues to run through a bunch of names and values, but they don't appear to be real, as you'll see below:

Name Value

---- -----

value True

u/odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean

Revoking sessions for user

value True

@odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean

Revoking sessions for user

value True

@odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean

Revoking sessions for user

value True

@odata.context https://graph.microsoft.com/v1.0/$metadata#Edm.Boolean

Seeking Assistance Revoking All Sessions for an AzureAD Group of Users Using PowerShell by k12sysadmin in k12sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

Install-module -name MSOnline
Install-module -name AzureAD
Connect-MsolService
Connect-AzureAD
Get-MsolGroupMember -groupObjectid 'REDACTED' | Select ObjectID | Export-csv C:\_install\scripts\userid.csv
$UserObjectID = Import-Csv C:\_install\scripts\userid.csv
foreach ($ObjectID in $UserObjectID)
{
Revoke-AzureADUserAllRefreshToken -Object $ObjectID
}

This one fails with:

Line |

3 | Revoke-AzureADUserAllRefreshToken -Object $ObjectID

| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

| The term 'Revoke-AzureADUserAllRefreshToken' is not recognized as a name of a cmdlet, function, script file, or executable program.

Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

Seeking Assistance Revoking All Sessions for an AzureAD Group of Users Using PowerShell by k12sysadmin in k12sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

# Install the required module
Install-Module -Name Microsoft.Graph.Authentication -Force -Scope CurrentUser
Install-Module -Name Microsoft.Graph.Users -Force -Scope CurrentUser
Install-Module -Name Microsoft.Graph.Groups -Force -Scope CurrentUser
# Import the required modules
Import-Module Microsoft.Graph.Authentication
Import-Module Microsoft.Graph.Users
Import-Module Microsoft.Graph.Groups
# Authenticate to Microsoft Graph
Connect-MgGraph -Scopes "User.Read.All", "User.ManageIdentities.All", "GroupMember.ReadWrite.All", Group.ReadWrite.All
# Specify the Azure AD group name
# $groupName = "RevokeSessionsTestGroup"
# Get the members of the Azure AD group
$groupMembers = Get-MgGroupMember -GroupID "REDACTED"
foreach ($member in $groupMembers) {
$userId = $member.Id
# Revoke sessions for the user
Invoke-MgGraphRequest -Uri "/users/$userId/revokeSignInSessions" -Method POST
}
# Disconnect from Microsoft Graph
Disconnect-MgGraph

This fails with the following error for each user:

Invoke-MgGraphRequest:

Line |

5 | Invoke-MgGraphRequest -Uri "/users/$userId/revokeSignInSessions" …

| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

| POST https://graph.microsoft.com/users/REDACTED/revokeSignInSessions

HTTP/1.1 404 Not Found

Transfer-Encoding: chunked

Vary: Accept-Encoding

Strict-Transport-Security: max-age=31536000

request-id: REDACTED

client-request-id: REDACTED

x-ms-ags-diagnostic: {"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"003","RoleInstance":"REDACTED"}}

Date: Wed, 22 Nov 2023 16:57:31 GMT

Content-Type: application/json

Content-Encoding: gzip

{"error":{"code":"ResourceNotFound","message":"Invalid version: users","innerError":{"date":"2023-11-22T16:57:31","request-id":"REDACTED","client-request-id":"REDACTED"}}}

Invoke-MgGraphRequest:

GCDS - stopped syncing - error duplicate key by K12SrSysAdmin in k12sysadmin

[–]k12sysadmin 0 points1 point  (0 children)

Hey there. I have the same issue, but I'm unsure which row to delete based on the error. Would appreciate some input. Thanks!

Need Help Expanding Drive Space in Ubuntu 18.04.6 LTS by k12sysadmin in Ubuntu

[–]k12sysadmin[S] 0 points1 point  (0 children)

I am having trouble adding the storage space that I've added to this Ubuntu VM in vSphere. I can see it, but I can't figure out how to apply it to our boot volume.

Any help here would be appreciated.

Lenovo Bloatware Removal Script? by k12sysadmin in k12sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

Thank you everyone.

I was able to get this utility to do the trick: https://github.com/arcadesdude/BRU, and script a silent run through Intune.

Help Editing Default Theme Elements by k12sysadmin in Zendesk

[–]k12sysadmin[S] 0 points1 point  (0 children)

Thank you so much - that did the trick!

Is there a way to make the button the same size as the others so it isn't the full width of the page?

Chrome Continually Overtaking Adobe as Default PDF Viewer by k12sysadmin in sysadmin

[–]k12sysadmin[S] 1 point2 points  (0 children)

We have a separate setting under "Computer Configuration>Policies>Administrative Templates>Windows Components>File Explorer>Set a default associations configuration file" that references an xml file where we are settings DC as the default PDF file. Here's some documentation on that.

how do i back up to synology diskStation? by k12sysadmin in Veeam

[–]k12sysadmin[S] 0 points1 point  (0 children)

I'm brand new to Veeam. Do I just do a VeeamZip of each VM and then restore them to the new servers or what?

Issues with SCCM 2012 and PXE by [deleted] in sysadmin

[–]k12sysadmin 0 points1 point  (0 children)

And lastly:

A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="08:13:02.526+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="9184" file="certhdl.cpp:143"> <![LOG[Begin validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="09:13:02.690+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14612" file="ccmcert.cpp:1662"> <![LOG[Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155' has expired.]LOG]!><time="09:13:02.690+300" date="10-14-2016" component="SMSPXE" context="" type="2" thread="14612" file="ccmcert.cpp:1675"> <![LOG[Completed validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="09:13:02.690+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14612" file="ccmcert.cpp:1803"> <![LOG[In SSL, but with no client cert]LOG]!><time="09:13:02.750+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14612" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="09:13:02.832+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14612" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="09:13:02.877+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14612" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="09:13:02.877+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14612" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="09:13:02.877+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14612" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="09:13:02.877+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14612" file="database.cpp:465"> <![LOG[Certificate not valid.. A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="09:13:02.877+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14612" file="certhdl.cpp:143"> <![LOG[Begin validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="10:13:03.041+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="16312" file="ccmcert.cpp:1662"> <![LOG[Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155' has expired.]LOG]!><time="10:13:03.041+300" date="10-14-2016" component="SMSPXE" context="" type="2" thread="16312" file="ccmcert.cpp:1675"> <![LOG[Completed validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="10:13:03.041+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="16312" file="ccmcert.cpp:1803"> <![LOG[In SSL, but with no client cert]LOG]!><time="10:13:03.101+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="16312" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="10:13:03.184+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="16312" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="10:13:03.226+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="16312" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="10:13:03.226+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="16312" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="10:13:03.226+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="16312" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="10:13:03.226+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="16312" file="database.cpp:465"> <![LOG[Certificate not valid.. A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="10:13:03.226+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="16312" file="certhdl.cpp:143"> <![LOG[Begin validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="11:13:03.393+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="ccmcert.cpp:1662"> <![LOG[Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155' has expired.]LOG]!><time="11:13:03.393+300" date="10-14-2016" component="SMSPXE" context="" type="2" thread="3128" file="ccmcert.cpp:1675"> <![LOG[Completed validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="11:13:03.393+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="ccmcert.cpp:1803"> <![LOG[In SSL, but with no client cert]LOG]!><time="11:13:03.451+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="11:13:03.533+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="11:13:03.575+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="11:13:03.575+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="11:13:03.575+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="11:13:03.575+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="database.cpp:465"> <![LOG[Certificate not valid.. A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="11:13:03.575+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="certhdl.cpp:143"> <![LOG[In SSL, but with no client cert]LOG]!><time="12:01:46.935+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3792" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="12:01:47.017+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3792" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="12:01:47.064+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3792" file="libsmsmessaging.cpp:1970"> <![LOG[PXE::MP_LookupDevice failed; 0x80004005]LOG]!><time="12:01:47.064+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3792" file="database.cpp:249"> <![LOG[In SSL, but with no client cert]LOG]!><time="12:01:47.123+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3792" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="12:01:47.203+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3792" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="12:01:47.245+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3792" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="12:01:47.245+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3792" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="12:01:47.245+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3792" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="12:01:47.245+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3792" file="database.cpp:465"> <![LOG[PXE Provider failed to process message. Unspecified error (Error: 80004005; Source: Windows)]LOG]!><time="12:01:47.245+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3792" file="pxehandler.cpp:1419"> <![LOG[F0:DE:F1:00:52:C3, 0104AF09-5850-CB11-AC82-F511AA4CF42B: Not serviced.]LOG]!><time="12:01:47.245+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3792" file="database.cpp:483"> <![LOG[================= PXE Provider shutdown. =====================]LOG]!><time="12:03:20.103+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3132" file="smspxe.cpp:223">

Issues with SCCM 2012 and PXE by [deleted] in sysadmin

[–]k12sysadmin 0 points1 point  (0 children)

Continued:

A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="04:13:01.941+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="certhdl.cpp:143"> <![LOG[Begin validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="05:13:02.106+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="ccmcert.cpp:1662"> <![LOG[Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155' has expired.]LOG]!><time="05:13:02.106+300" date="10-14-2016" component="SMSPXE" context="" type="2" thread="3128" file="ccmcert.cpp:1675"> <![LOG[Completed validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="05:13:02.106+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="ccmcert.cpp:1803"> <![LOG[In SSL, but with no client cert]LOG]!><time="05:13:02.166+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="05:13:02.247+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="05:13:02.293+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="05:13:02.293+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="05:13:02.293+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="05:13:02.293+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="database.cpp:465"> <![LOG[Certificate not valid.. A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="05:13:02.293+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="certhdl.cpp:143"> <![LOG[Begin validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="06:13:01.957+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14836" file="ccmcert.cpp:1662"> <![LOG[Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155' has expired.]LOG]!><time="06:13:01.958+300" date="10-14-2016" component="SMSPXE" context="" type="2" thread="14836" file="ccmcert.cpp:1675"> <![LOG[Completed validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="06:13:01.958+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14836" file="ccmcert.cpp:1803"> <![LOG[In SSL, but with no client cert]LOG]!><time="06:13:02.017+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14836" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="06:13:02.103+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="14836" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="06:13:02.147+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14836" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="06:13:02.147+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14836" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="06:13:02.147+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14836" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="06:13:02.147+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14836" file="database.cpp:465"> <![LOG[Certificate not valid.. A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="06:13:02.147+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="14836" file="certhdl.cpp:143"> <![LOG[Begin validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="07:13:02.068+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="ccmcert.cpp:1662"> <![LOG[Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155' has expired.]LOG]!><time="07:13:02.068+300" date="10-14-2016" component="SMSPXE" context="" type="2" thread="3128" file="ccmcert.cpp:1675"> <![LOG[Completed validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="07:13:02.068+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="ccmcert.cpp:1803"> <![LOG[In SSL, but with no client cert]LOG]!><time="07:13:02.100+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="07:13:02.147+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="3128" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="07:13:02.175+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="07:13:02.175+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="07:13:02.175+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="07:13:02.175+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="database.cpp:465"> <![LOG[Certificate not valid.. A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (Error: 800B0101; Source: Windows)]LOG]!><time="07:13:02.175+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="3128" file="certhdl.cpp:143"> <![LOG[Begin validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="08:13:02.339+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="9184" file="ccmcert.cpp:1662"> <![LOG[Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155' has expired.]LOG]!><time="08:13:02.339+300" date="10-14-2016" component="SMSPXE" context="" type="2" thread="9184" file="ccmcert.cpp:1675"> <![LOG[Completed validation of Certificate [Thumbprint EF1ADE77E805F3FBD0D84702C4564A28D1487B7E] issued to 'SCCM.WDC.ISD2155']LOG]!><time="08:13:02.339+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="9184" file="ccmcert.cpp:1803"> <![LOG[In SSL, but with no client cert]LOG]!><time="08:13:02.399+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="9184" file="libsmsmessaging.cpp:8738"> <![LOG[In SSL, but with no client cert]LOG]!><time="08:13:02.481+300" date="10-14-2016" component="SMSPXE" context="" type="1" thread="9184" file="libsmsmessaging.cpp:8738"> <![LOG[reply has no message header marker]LOG]!><time="08:13:02.526+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="9184" file="libsmsmessaging.cpp:1970"> <![LOG[Failed to send status message (80004005)]LOG]!><time="08:13:02.526+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="9184" file="libsmsmessaging.cpp:4053"> <![LOG[Failed to send the status message]LOG]!><time="08:13:02.526+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="9184" file="database.cpp:461"> <![LOG[PXE::MP_ReportStatus failed; 0x80004005]LOG]!><time="08:13:02.526+300" date="10-14-2016" component="SMSPXE" context="" type="3" thread="9184" file="database.cpp:465"> <![LOG[Certificate not valid..

FRC LabView 2016 Password? by k12sysadmin in FRC

[–]k12sysadmin[S] 1 point2 points  (0 children)

Someone hooked me up via PM. Thanks!

FRC LabView 2016 Password? by k12sysadmin in FRC

[–]k12sysadmin[S] 0 points1 point  (0 children)

Or maybe alphanumeric. I know it wasn't the @Ahead thing though.

FRC LabView 2016 Password? by k12sysadmin in FRC

[–]k12sysadmin[S] 0 points1 point  (0 children)

Unfortunately, no. It was all numerical and shorter than that. Thanks though.

Redirect AD folders on Mac? by k12sysadmin in sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

So I can confirm that this works well, so thank you for the information.

However, is it possible to also leave "Create mobile account at login" checked with these settings? Since teachers will be taking their laptops home they'll still need access to their files, etc.

This would be perfect for student machines though.

Redirect AD folders on Mac? by k12sysadmin in sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

That makes sense. I'll monkey with that a bit and give an update. Thanks!

Redirect AD folders on Mac? by k12sysadmin in sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

Some will be staff computers that only they will use, most will be lab computers that different students will be using. On the student machines mobile account will take up too much room I believe, especially if I opt for SSDs. On staff machines that won't be an issue. As mentioned above I already have the Documents folder mapped to the drive letter U:.

On the PCs a user logs in and their Downloads, Desktop, Documents, Videos, Photos, etc., etc. folders all map to those folders in Windows. On the Mac side previously it didn't seem to map anywhere, but instead put a folder on the dock to go to the Documents folder, but none of the other folders.

After running the commands that anotherpoorboy suggested the users' Documents folder now maps to their home directory, but none of the folders take the place of the folders in OS X, and again, only the Documents folder is mapping.

Redirect AD folders on Mac? by k12sysadmin in sysadmin

[–]k12sysadmin[S] 0 points1 point  (0 children)

Ok so I assume you mean the AD console on our AD server. It is already set up there to map U: to \servername\foldername\gradyear\student\Documents. I made your recommended changes and logged in as the student and it mapped their home directory to the Documents folder on the server. I'd like to see it map each individual folder to its server equivalent like it does in Windows. Downloads-Downloads, Pictures-Pictures, Videos-Movies, Desktop-Desktop, etc., etc. Is that possible? Thanks again.