Hi!
I am trying to make a custom .adm file to set the KeepAliveTime value in the registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
I've read pages with forum threads and technet articles but still I am not able to get this right for some reason. Here is the content of the .adm file itself:
--- snipp ---
CLASS MACHINE
CATEGORY !!categoryname
KEYNAME "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters"
POLICY !!policyname
EXPLAIN !!explaintext
PART !!labeltext DROPDOWNLIST REQUIRED
VALUENAME "KeepAliveTime"
ITEMLIST
NAME !!option1 VALUE NUMERIC 600 DEFAULT
NAME !!option2 VALUE NUMERIC 1200
NAME !!option3 VALUE NUMERIC 1800
NAME !!option4 VALUE NUMERIC 2400
NAME !!option5 VALUE NUMERIC 3000
NAME !!option6 VALUE NUMERIC 3600
END ITEMLIST
END PART
END POLICY
END CATEGORY
[strings]
categoryname="Custom TCP IP Settings"
policyname="Configure KeepAliveTime"
explaintext="Determines how often TCP sends keep-alive transmissions. TCP sends keep-alive transmissions to verify that an idle connection is still active.This entry is used when the remote system is responding to TCP. Otherwise, the interval between transmissions is determined by the value of the KeepAliveInterval entry."
labeltext="KeepAliveTime"
option1="10 minutes"
option2="20 minutes"
option3="30 minutes"
option4="40 minutes"
option5="50 minutes"
option6="60 minutes"
--- snipp ---
My problem is that the actual policy setting is not showing up after importing the template. I get a new category named "Custom TCP IP Settings", but when I choose that one ... it contains no policies to configure at all.
I am not getting any error messages of any kind, so it does not seem to be any obvious syntax errors anywhere. I am totally lost. Does anyone have a clue how to solve this?
I am trying to make a custom .adm file to set the KeepAliveTime value in the registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
I've read pages with forum threads and technet articles but still I am not able to get this right for some reason. Here is the content of the .adm file itself:
--- snipp ---
CLASS MACHINE
CATEGORY !!categoryname
KEYNAME "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters"
POLICY !!policyname
EXPLAIN !!explaintext
PART !!labeltext DROPDOWNLIST REQUIRED
VALUENAME "KeepAliveTime"
ITEMLIST
NAME !!option1 VALUE NUMERIC 600 DEFAULT
NAME !!option2 VALUE NUMERIC 1200
NAME !!option3 VALUE NUMERIC 1800
NAME !!option4 VALUE NUMERIC 2400
NAME !!option5 VALUE NUMERIC 3000
NAME !!option6 VALUE NUMERIC 3600
END ITEMLIST
END PART
END POLICY
END CATEGORY
[strings]
categoryname="Custom TCP IP Settings"
policyname="Configure KeepAliveTime"
explaintext="Determines how often TCP sends keep-alive transmissions. TCP sends keep-alive transmissions to verify that an idle connection is still active.This entry is used when the remote system is responding to TCP. Otherwise, the interval between transmissions is determined by the value of the KeepAliveInterval entry."
labeltext="KeepAliveTime"
option1="10 minutes"
option2="20 minutes"
option3="30 minutes"
option4="40 minutes"
option5="50 minutes"
option6="60 minutes"
--- snipp ---
My problem is that the actual policy setting is not showing up after importing the template. I get a new category named "Custom TCP IP Settings", but when I choose that one ... it contains no policies to configure at all.
I am not getting any error messages of any kind, so it does not seem to be any obvious syntax errors anywhere. I am totally lost. Does anyone have a clue how to solve this?