|
||||
Remote control sessions timeout if there is no interaction in the viewer after 10 minutes.
To increase the timeout change the following registry key on the client side:
HKLM\System\CurrentControlSet\Services\issuser
String: ImagePath
Value: C:\PROGRA~1\LANDesk\LDClient\issuser.exe /SERVICE
Manually changing this value is usually a quick solution for one client, however if you want this to happen to all clients, the registry key should be deployed.
To change this value manually follow these steps:
Double click the value ImagePath.
Add the following parameter to the string but replace [minutes] with the value in minutes:
/a[minutes]
For example, to set the timeout to 30 minutes, use /a30.
HKLM\System\CurrentControlSet\Services\issuser
String: ImagePath
Value: C:\PROGRA~1\LANDesk\LDClient\issuser.exe /SERVICE /a30
Note: To set the client so that it never times out use /a0.
To make this change part of the Agent Configuration use these steps listed below.
Browse to LDLogon.
Locate the NTSTACFG.IN# file and open it with a text editor.
In the NTSTACFG.IN# file, locate the following section:
[Remote Control Post Copy]
Add the following three line below the section:
[Remote Control Post Copy]
REG001=HKEY_LOCAL_MACHINE, System\CurrentControlSet\Services\issuser\ImagePath, C:\PROGRA~1\LANDesk\LDClient\issuser.exe /SERVICE /a30 , , REG_SZ
EXEC1002=%DEST%\ISSUSER.EXE, /STOP
EXEC1003=%DEST%\ISSUSER.EXE, /START
On the Core Server, run this command to move the changes from the NTSTACFG.IN# file to the NTSTACFG.INI file:
LANDesk\ManagementSuite\stamper.exe
Apply the changes to the NTSTACFG.INI file to all the agent configuration INI files using these steps:
Open the LANDesk console.
Go to Tools | Configuration | Agent Configuration.
Click on the Rebuild All icon
|
|||||
I want to add an additional reg for FailureActions, to set the service to restart automatically.
However, the FailureActions is of type REG_BINARY and the header of the NTSTACFG.IN# file does not show this as an option. Also, as its a HEX value, when i have exported the reg to a file, the line reads as follows:
"FailureActions"=hex:00,00,00,00,00,00,00,00,00,00,00,00,03,00,00,00,53,00,65,\
00,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00
So should the line in the NTSTACFG.IN# read:
REG002=HKEY_LOCAL_MACHINE, System\CurrentControlSet\Services\issuser\FailureActions, "FailureActions"=hex:00,00,00,00,00,00,00,00,00,00,00,00,03,00,00,00,53,00,65,0 0,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00
Any ideas??!!