JSI Tip 8608. How can I reset the License Logging service in Windows Server 2003?

Jerold Schulman

October 24, 2004

1 Min Read
ITPro Today logo in a gray background | ITPro Today

The License Logging service is disabled by default in Windows Server 2003.

NOTE: The License Logging service is NOT scheduled to be included in future versions of Windows.

To reset the License Logging service in Windows Server 2003, I have scripted LicenseService.bat.

To use LicenseService.bat on Windows Server 2003, run it from a CMD.EXE window, without any parameters. After you run it, add the license information you want.

LicenseService.bat contains:

@echo offSC STOP LicenseServicedel /q /f %SystemRoot%System32Cpl.cfgdel /q /f %SystemRoot%System32LlsLlsuser.llsdel /q /f %SystemRoot%System32LlsLlsmap.llsREG ADD HKLMSystemCurrentControlSetServicesLicenseInfoFilePrint /V ConcurrentLimit /T REG_DWORD /d 0 /Ftype nul >%SystemRoot%System32Cpl.cfg@echo Y|CACLS %SystemRoot%System32Cpl.cfg /E /G "NETWORK SERVICE":F@echo Y|CACLS %Systemroot%System32Lls /E /G "NETWORK SERVICE":FSC START LicenseService



Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like