Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table _LicenseCheck
(SampleTaken datetime,
LicensesUsed int)
/*This code is for Device CALs*/
insert into _LicenseCheck
select getdate(), count(distinct hostname)
from sysprocesses
/*This code is for User CALs*/
insert into _LicenseCheck
select getdate(), count(distinct Loginame)
from sysprocesses
select *
from _LicenseCheck
where LicensesUsed = (select max(LicensesUsed) from _LicenseCheck)