Description
Describe the bug
#Assign license by copy existing user license settings and service plans
#Copy all enabled and disabled service plans
$SourceUser1 = 'a20250421a@MYDEMO.onmicrosoft.com'
$TargetUser1 = 'a20250421b@MYDEMO.onmicrosoft.com'
$mgUser = Get-MgUser -UserId $SourceUser1 -Property AssignedLicenses
Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedLicenses -RemoveLicenses @()
#SEND
Expected behavior
The user license setting is copied from the source to the target user
How to reproduce
#Assign license by copy existing user license settings and service plans
#Copy all enabled and disabled service plans
$SourceUser1 = 'a20250421a@MYDEMO.onmicrosoft.com'
$TargetUser1 = 'a20250421b@MYDEMO.onmicrosoft.com'
$mgUser = Get-MgUser -UserId $SourceUser1 -Property AssignedLicenses
Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedLicenses -RemoveLicenses @()
#SEND
set a source user license as template, use the $mgUser = Get-MgUser -UserId $SourceUser1 -Property AssignedLicenses and copy the license to the target user
SDK Version
2.27.0
Latest version known to work for scenario above?
<2.26.0
Known Workarounds
install previous build
Debug output
Windows PowerShell transcript start
Start time: 20250421235213
Username: KW-W11-24H2-01\Administrator
RunAs User: KW-W11-24H2-01\Administrator
Configuration Name:
Machine: KW-W11-24H2-01 (Microsoft Windows NT 10.0.26100.0)
Host Application: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Process ID: 7396
PSVersion: 5.1.26100.2161
PSEdition: Desktop
PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0, 5.1.26100.2161
BuildVersion: 10.0.26100.2161
CLRVersion: 4.0.30319.42000
WSManStackVersion: 3.0
PSRemotingProtocolVersion: 2.3
SerializationVersion: 1.1.0.1
Transcript started, output file is MGUser-20250421b.log
PS C:\Users\Administrator\Desktop\PS-O365-UAT> Get-InstalledModule
Version Name Repository Description
2.0.2.182 AzureAD PSGallery Azure Active Directory V2 General Availability M...
3.7.2 ExchangeOnlineManagement PSGallery This is a General Availability (GA) release of t...
2.27.0 Microsoft.Graph PSGallery Microsoft Graph PowerShell module
2.27.0 Microsoft.Graph.Applications PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Authentication PSGallery Microsoft Graph PowerShell Authentication Module.
2.27.0 Microsoft.Graph.BackupRestore PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Bookings PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Calendar PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.ChangeNotifications PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.CloudCommunications PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Compliance PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.CrossDeviceExper... PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.DeviceManagement PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.DeviceManagement... PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.DeviceManagement... PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.DeviceManagement... PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Devices.CloudPrint PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Devices.Corporat... PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Devices.ServiceA... PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.DirectoryObjects PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Education PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Files PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Groups PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Identity.Directo... PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Identity.Governance PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Identity.Partner PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Identity.SignIns PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Mail PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Notes PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.People PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.PersonalContacts PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Planner PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Reports PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.SchemaExtensions PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Search PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Security PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Sites PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Teams PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Users PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Users.Actions PSGallery Microsoft Graph PowerShell Cmdlets
2.27.0 Microsoft.Graph.Users.Functions PSGallery Microsoft Graph PowerShell Cmdlets
6.9.0 MicrosoftTeams PSGallery Microsoft Teams cmdlets module for Windows Power...
1.1.183.81 MSOnline PSGallery Microsoft Azure Active Directory Module for Wind...
PS C:\Users\Administrator\Desktop\PS-O365-UAT> #Assign license by copy existing user license settings and service plans
PS C:\Users\Administrator\Desktop\PS-O365-UAT> #Copy all enabled and disabled service plans
PS C:\Users\Administrator\Desktop\PS-O365-UAT> $SourceUser1 = 'a20250421a@MYDEMO.onmicrosoft.com'
PS C:\Users\Administrator\Desktop\PS-O365-UAT> $TargetUser1 = 'a20250421b@MYDEMO.onmicrosoft.com'
PS C:\Users\Administrator\Desktop\PS-O365-UAT> $mgUser = Get-MgUser -UserId $SourceUser1 -Property AssignedLicenses
PS C:\Users\Administrator\Desktop\PS-O365-UAT> Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedLicenses -RemoveLicenses @()
Set-MgUserLicense : No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:52:42
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 568a8f55-1327-497f-895f-bc03de5e2101
client-request-id : 52560d0f-7f13-4cff-af63-311c0450d7c2
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast
Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:52:41 GMT
At line:1 char:1
- Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedL ...
-
+ CategoryInfo : InvalidOperation: ({ UserId = a202...ionJsonSchema }:<>f__AnonymousType0`3)
[Set-MgUserLicense_AssignExpanded], Exception
+ FullyQualifiedErrorId : Request_BadRequest,Microsoft.Graph.PowerShell.Cmdlets.SetMgUserLicense_AssignExpanded
Set-MgUserLicense : No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:52:42
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 568a8f55-1327-497f-895f-bc03de5e2101
client-request-id : 52560d0f-7f13-4cff-af63-311c0450d7c2
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast
Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:52:41 GMT
At line:1 char:1
- Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedL ...
-
+ CategoryInfo : InvalidOperation: ({ UserId = a202...ionJsonSchema }:<>f__AnonymousType0`3) [Set-MgUserL icense_AssignExpanded], Exception + FullyQualifiedErrorId : Request_BadRequest,Microsoft.Graph.PowerShell.Cmdlets.SetMgUserLicense_AssignExpanded
PS C:\Users\Administrator\Desktop\PS-O365-UAT> #SEND
PS C:\Users\Administrator\Desktop\PS-O365-UAT> Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedLicenses -RemoveLicenses @() -Debug
DEBUG: [CmdletBeginProcessing]: - Set-MgUserLicense begin processing with parameterSet 'AssignExpanded'.
Confirm
Continue with this operation?
&Yes Yes to &All &Halt Command &Suspend
A
DEBUG: [Authentication]: - AuthType: 'AppOnly', TokenCredentialType: 'ClientSecret', ContextScope: 'Process', AppName: 'Powershell Graph API 2023xxxx'.
DEBUG: [Authentication]: - Scopes: [User.ReadWrite.All, Domain.ReadWrite.All, DelegatedPermissionGrant.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, User.EnableDisableAccount.All, DeviceManagementServiceConfig.ReadWrite.All, Organization.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, User.ManageIdentities.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementApps.ReadWrite.All].
Confirm
Are you sure you want to perform this action?
Performing the operation "Set-MgUserLicense_AssignExpanded" on target "Call remote 'POST /users/{user-id}/microsoft.graph.assignLicense' operation".
&Yes Yes to &All &No No to A&ll &Suspend
A
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
POST
Absolute Uri:
https://graph.microsoft.com/v1.0/users/a20250421b@MYDEMO.onmicrosoft.com/microsoft.graph.assignLicense
Headers:
FeatureFlag : 00000003
Cache-Control : no-store, no-cache
User-Agent : Mozilla/5.0,(Windows NT 10.0; Microsoft Windows 10.0.26100; en-US),PowerShell/5.1.26100.2161
SdkVersion : graph-powershell/2.27.0
client-request-id : 35639bb5-03c5-44ca-9513-9a9545f05721
Body:
{
"addLicenses": [],
"removeLicenses": []
}
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
BadRequest
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 0ca94669-375b-4373-9975-573e48a1cad0
client-request-id : 35639bb5-03c5-44ca-9513-9a9545f05721
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:52:52 GMT
Body:
{
"error": {
"code": "Request_BadRequest",
"message": "No license changes provided. At least one license to add or remove must be specified.",
"innerError": {
"date": "2025-04-21T15:52:53",
"request-id": "0ca94669-375b-4373-9975-573e48a1cad0",
"client-request-id": "35639bb5-03c5-44ca-9513-9a9545f05721"
}
}
}
Confirm
No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:52:53
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 0ca94669-375b-4373-9975-573e48a1cad0
client-request-id : 35639bb5-03c5-44ca-9513-9a9545f05721
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:52:52 GMT
&Yes Yes to &All &Halt Command &Suspend
A
Set-MgUserLicense : No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:52:53
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 0ca94669-375b-4373-9975-573e48a1cad0
client-request-id : 35639bb5-03c5-44ca-9513-9a9545f05721
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast
Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:52:52 GMT
At line:1 char:1
- Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedL ...
-
+ CategoryInfo : InvalidOperation: ({ UserId = a202...ionJsonSchema }:<>f__AnonymousType0`3)
[Set-MgUserLicense_AssignExpanded], Exception
+ FullyQualifiedErrorId : Request_BadRequest,Microsoft.Graph.PowerShell.Cmdlets.SetMgUserLicense_AssignExpanded
Set-MgUserLicense : No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:52:53
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 0ca94669-375b-4373-9975-573e48a1cad0
client-request-id : 35639bb5-03c5-44ca-9513-9a9545f05721
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast
Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:52:52 GMT
At line:1 char:1
- Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedL ...
-
+ CategoryInfo : InvalidOperation: ({ UserId = a202...ionJsonSchema }:<>f__AnonymousType0`3) [Set-MgUserL icense_AssignExpanded], Exception + FullyQualifiedErrorId : Request_BadRequest,Microsoft.Graph.PowerShell.Cmdlets.SetMgUserLicense_AssignExpanded
DEBUG: [CmdletEndProcessing]: - Set-MgUserLicense end processing.
PS C:\Users\Administrator\Desktop\PS-O365-UAT> Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedLicenses -RemoveLicenses @() -Debug -Confirm:$false
DEBUG: [CmdletBeginProcessing]: - Set-MgUserLicense begin processing with parameterSet 'AssignExpanded'.
Confirm
Continue with this operation?
&Yes Yes to &All &Halt Command &Suspend
TerminatingError(): "The pipeline has been stopped."
TerminatingError(): "The pipeline has been stopped."
PS C:\Users\Administrator\Desktop\PS-O365-UAT> Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedLicenses -RemoveLicenses @() -Debug -WarningAction SilentlyContinue
DEBUG: [CmdletBeginProcessing]: - Set-MgUserLicense begin processing with parameterSet 'AssignExpanded'.
Confirm
Continue with this operation?
&Yes Yes to &All &Halt Command &Suspend
A
DEBUG: [Authentication]: - AuthType: 'AppOnly', TokenCredentialType: 'ClientSecret', ContextScope: 'Process', AppName: 'Powershell Graph API 2023xxxx'.
DEBUG: [Authentication]: - Scopes: [User.ReadWrite.All, Domain.ReadWrite.All, DelegatedPermissionGrant.ReadWrite.All, Application.ReadWrite.All, Directory.ReadWrite.All, User.EnableDisableAccount.All, DeviceManagementServiceConfig.ReadWrite.All, Organization.ReadWrite.All, DeviceManagementManagedDevices.ReadWrite.All, User.ManageIdentities.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementApps.ReadWrite.All].
Confirm
Are you sure you want to perform this action?
Performing the operation "Set-MgUserLicense_AssignExpanded" on target "Call remote 'POST /users/{user-id}/microsoft.graph.assignLicense' operation".
&Yes Yes to &All &No No to A&ll &Suspend
A
DEBUG: ============================ HTTP REQUEST ============================
HTTP Method:
POST
Absolute Uri:
https://graph.microsoft.com/v1.0/users/a20250421b@MYDEMO.onmicrosoft.com/microsoft.graph.assignLicense
Headers:
FeatureFlag : 00000003
Cache-Control : no-store, no-cache
User-Agent : Mozilla/5.0,(Windows NT 10.0; Microsoft Windows 10.0.26100; en-US),PowerShell/5.1.26100.2161
SdkVersion : graph-powershell/2.27.0
client-request-id : 310f10e1-0cb2-49da-96fd-3ca6a3bffd6f
Body:
{
"addLicenses": [],
"removeLicenses": []
}
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
BadRequest
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 3ba1d3f2-0648-4998-877f-f7afc57ccf65
client-request-id : 310f10e1-0cb2-49da-96fd-3ca6a3bffd6f
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:53:53 GMT
Body:
{
"error": {
"code": "Request_BadRequest",
"message": "No license changes provided. At least one license to add or remove must be specified.",
"innerError": {
"date": "2025-04-21T15:53:53",
"request-id": "3ba1d3f2-0648-4998-877f-f7afc57ccf65",
"client-request-id": "310f10e1-0cb2-49da-96fd-3ca6a3bffd6f"
}
}
}
Confirm
No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:53:53
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 3ba1d3f2-0648-4998-877f-f7afc57ccf65
client-request-id : 310f10e1-0cb2-49da-96fd-3ca6a3bffd6f
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:53:53 GMT
&Yes Yes to &All &Halt Command &Suspend
A
Set-MgUserLicense : No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:53:53
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 3ba1d3f2-0648-4998-877f-f7afc57ccf65
client-request-id : 310f10e1-0cb2-49da-96fd-3ca6a3bffd6f
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast
Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:53:53 GMT
At line:1 char:1
- Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedL ...
-
+ CategoryInfo : InvalidOperation: ({ UserId = a202...ionJsonSchema }:<>f__AnonymousType0`3)
[Set-MgUserLicense_AssignExpanded], Exception
+ FullyQualifiedErrorId : Request_BadRequest,Microsoft.Graph.PowerShell.Cmdlets.SetMgUserLicense_AssignExpanded
Set-MgUserLicense : No license changes provided. At least one license to add or remove must be specified.
Status: 400 (BadRequest)
ErrorCode: Request_BadRequest
Date: 2025-04-21T15:53:53
Headers:
Transfer-Encoding : chunked
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : 3ba1d3f2-0648-4998-877f-f7afc57ccf65
client-request-id : 310f10e1-0cb2-49da-96fd-3ca6a3bffd6f
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Southeast
Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A46"}}
x-ms-resource-unit : 1
Cache-Control : no-cache
Date : Mon, 21 Apr 2025 15:53:53 GMT
At line:1 char:1
- Set-MgUserLicense -UserId $TargetUser1 -AddLicenses $mgUser.AssignedL ...
-
+ CategoryInfo : InvalidOperation: ({ UserId = a202...ionJsonSchema }:<>f__AnonymousType0`3) [Set-MgUserL icense_AssignExpanded], Exception + FullyQualifiedErrorId : Request_BadRequest,Microsoft.Graph.PowerShell.Cmdlets.SetMgUserLicense_AssignExpanded
DEBUG: [CmdletEndProcessing]: - Set-MgUserLicense end processing.
PS C:\Users\Administrator\Desktop\PS-O365-UAT> Stop-Transcript
Windows PowerShell transcript end
End time: 20250421235406
Configuration
Name Value
PSVersion 5.1.26100.2161
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.26100.2161
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
Other information
It was NOT working last 2 builds