| Author |
Message |
Andreas D.
Guest
|
Posted:
Sun Oct 30, 2005 9:30 pm Post subject:
DRM license expiry |
|
|
Hi newsgroup,
does anybody know, if as soon as a DRM server license (license agreement
with MS) expires, only I'm not allowed to use it anymore or even the server
does not deliver any license anymore?
Thanks,
Andreas
|
|
| Back to top |
|
 |
Satoru Koshiba (JP)
Guest
|
Posted:
Mon Oct 31, 2005 1:30 am Post subject:
RE: DRM license expiry |
|
|
Hello Andreas D
No it does not.
If your DRM Server certification is expired , client WMP will display
message as follows;
------
DRM_E_LICENSE_SERVER_INFO_MISSING
The license server registry information (private key and/or certificates
and/or verification keys) is missing or inaccessible.
0xC004291CL
-----
So you have to check your DRM Server certification.
This script will be your help to check.
DrmServerCheck.vbs
------------------
dim LicenseServer
dim val
set LicenseServer = CreateObject( "LicenseServer.LicenseGenerator" )
call LicenseServer.Get( "cert1_days_to_expiry", val )
wscript.echo "Cert1 (License Signing Certificate) Expires in " & val & "
days."
call LicenseServer.Get( "cert2_days_to_expiry", val )
wscript.echo "Cert2 (MS DRM License Server Root Certificate) Expires in " &
val & " days."
set LicenseServer = nothing
------------------
Thanks
"Andreas D." wrote:
| Quote: | Hi newsgroup,
does anybody know, if as soon as a DRM server license (license agreement
with MS) expires, only I'm not allowed to use it anymore or even the server
does not deliver any license anymore?
Thanks,
Andreas
|
|
|
| Back to top |
|
 |
Andreas D.
Guest
|
Posted:
Mon Oct 31, 2005 9:30 am Post subject:
Re: DRM license expiry |
|
|
Hi Satoru,
thanks for this great answer!
Best regards,
Andreas
"Satoru Koshiba (JP)" <SatoruKoshibaJP@discussions.microsoft.com> schrieb im
Newsbeitrag news:BA414AD6-55BD-488B-801A-5B0DF690B5BC@microsoft.com...
| Quote: | Hello Andreas D
No it does not.
If your DRM Server certification is expired , client WMP will display
message as follows;
------
DRM_E_LICENSE_SERVER_INFO_MISSING
The license server registry information (private key and/or certificates
and/or verification keys) is missing or inaccessible.
0xC004291CL
-----
So you have to check your DRM Server certification.
This script will be your help to check.
DrmServerCheck.vbs
------------------
dim LicenseServer
dim val
set LicenseServer = CreateObject( "LicenseServer.LicenseGenerator" )
call LicenseServer.Get( "cert1_days_to_expiry", val )
wscript.echo "Cert1 (License Signing Certificate) Expires in " & val & "
days."
call LicenseServer.Get( "cert2_days_to_expiry", val )
wscript.echo "Cert2 (MS DRM License Server Root Certificate) Expires in "
&
val & " days."
set LicenseServer = nothing
------------------
Thanks
"Andreas D." wrote:
Hi newsgroup,
does anybody know, if as soon as a DRM server license (license agreement
with MS) expires, only I'm not allowed to use it anymore or even the
server
does not deliver any license anymore?
Thanks,
Andreas
|
|
|
| Back to top |
|
 |
|
|
|
|