vlmcsd.ini 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #
  2. #
  3. # Sample vlmcsd.ini
  4. #
  5. # An ini file for vlmcsd is normally not required. It is for advanced users only.
  6. # vlmcsd uses an ini file only if specified using the -i option in the command line parameters.
  7. # There is no default ini file because vlmcsd is designed to run on many platforms.
  8. #
  9. # Every line starting with a number sign (#) or semicolon (;) is treated as a comment.
  10. # If a key word is used more than once, the last occurrence is used. The only exception
  11. # to this is Listen. You can use Listen=<ip address>[:port] more than once.
  12. #
  13. # Set ePID/HwId for Windows explicitly
  14. ;55c92734-d682-4d71-983e-d6ec3f16059f = 06401-00206-271-392041-03-1033-9600.0000-3622014 / 01 02 03 04 05 06 07 08
  15. # Set ePID for Office 2010 (including Visio and Project) explicitly
  16. ;59a52881-a989-479d-af46-f275c6370663 = 06401-00096-199-496023-03-1033-9600.0000-3622014
  17. # Set ePID for Office 2013 (including Visio and Project) explicitly
  18. ;0ff1ce15-a989-479d-af46-f275c6370663 = 06401-00206-234-409313-03-1033-9600.0000-3622014
  19. # Use custom TCP port
  20. # Command line: -P
  21. # ***The Port directive only works if vlmcsd was compiled to use MS RPC
  22. # ***Use Listen otherwise
  23. ;Port = 1688
  24. # Listen on all IPv4 addresses (default port 1688)
  25. # Command line: -L (and compatibility options -4, -6, -P)
  26. # Does not work with MS RPC, use Port=
  27. ;Listen = 0.0.0.0:1688
  28. # Listen on all IPv6 addresses (default port 1688)
  29. # Command line: -L (and compatibility options -4, -6, -P)
  30. ;Listen = [::]:1688
  31. # Randomize ePIDs at program start up (only those that are not explicitly specified)
  32. # Command line: -r
  33. ;RandomizationLevel = 1
  34. # Use a specific culture (1033 = English US) in ePIDs even if the ePID is randomized
  35. # Command line: -C
  36. ;LCID = 1033
  37. # Set a maximum of 4 workers (forked processes or threads)
  38. # Command line: -m
  39. ;MaxWorkers = 4
  40. # Disconnect users after 30 seconds of inactivity
  41. # Command line: -t
  42. ;ConnectionTimeout = 30
  43. # Disconnect clients immediately after each request
  44. # Command line: -d and -k
  45. ;DisconnectClientsImmediately = yes
  46. # Write a pid file (a file containing the process id of vlmcsd)
  47. # Command line: -p
  48. ;PidFile = /var/run/vlmcsd.pid
  49. # Write log to /var/log/vlmcsd.log
  50. # Command line: -l (-e and -f also override this directive)
  51. ;LogFile = /var/log/vlmcsd.log
  52. # Create a verbose log
  53. # Command line: -v and -q
  54. ;LogVerbose = true
  55. # Set activation interval to 2 hours
  56. # Command line: -A
  57. ;ActivationInterval = 2h
  58. # Set renewal interval to 7 days
  59. # Command line: -R
  60. ;RenewalInterval = 7d
  61. # Run program as user vlmcsduser
  62. # Command line: -u
  63. ;user = vlmcsduser
  64. # Run program as group vlmcsdgroup
  65. # Command line: -g
  66. ;group = vlmcsdgroup
  67. # Disable or enable the NDR64 transfer syntax in RPC (default enabled)
  68. # Command line: -n
  69. ;UseNDR64 = true
  70. # Disable or enable bind time feature negotiation in RPC (default enabled)
  71. # Command line: -b
  72. ;UseBTFN = true