Q. How can I disable the RFC 1323 timestamp option on a Windows Server 2003 that is running the LPD service?

Jerold Schulman

August 28, 2006

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

To disable the RFC 1323 timestamp option on a Windows Server 2003 that is running the LPD (Line Printer Daemon), you can set the Tcp1323Opts Value Name, a REG_DWORD data type, at HKEY_LOCAL_MACHINESystemCurrentControlSetServicesTcpipParameters, per the following:

0 - Disable RFC 1323 options.1 - Window scale enabled only.2 - Timestamps enabled only.3 - Both options enabled.

To disable timestamps and Window scale:

REG ADD HKLMSystemCurrentControlSetServicesTcpipParameters /V Tcp1323Opts /T REG_DWORD /F /D 0

To disable time timestamps and enable Window scale:

REG ADD HKLMSystemCurrentControlSetServicesTcpipParameters /V Tcp1323Opts /T REG_DWORD /F /D 1


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