Differences
This shows you the differences between the selected revisions of the page.
| 2006-01-28 | 2006-01-28 | ||
| no summary (200.163.107.102) (hidden) | old revision restored (martin) (hidden) | ||
| Line 2: | Line 2: | ||
| WinSCP allows system administrators to restrict or enforce certain functionality of the application. | WinSCP allows system administrators to restrict or enforce certain functionality of the application. | ||
| + | ===== Configuring the Restrictions ===== | ||
| + | System administrator can configure following: | ||
| + | * Restrict [[ui_login_session#session_group|password storing]]. | ||
| + | * Restrict [[task_edit|file opening/editing]]. | ||
| + | * Restrict connection to servers without having their [[ssh#verifying_the_host_key|host keys accepted in advance]]. | ||
| + | * Force [[ui_authenticate#authentication_banner|authentication banners]] being shown. | ||
| + | These restrictions are configured via "local machine" registry root key (modifiable only by system administrators). Example of corresponding registry export follows: | ||
| + | |||
| + | <code ini> | ||
| + | REGEDIT4 | ||
| + | |||
| + | [HKEY_LOCAL_MACHINE\SOFTWARE\Martin Prikryl\WinSCP 2] | ||
| + | "DisableOpenEdit"=dword:00000001 | ||
| + | "DisablePasswordStoring"=dword:00000001 | ||
| + | "DisableAcceptingHostKeys"=dword:00000001 | ||
| + | "ForceBanners"=dword:00000001 | ||
| + | </code> | ||
| + | |||
| + | ===== [[special_session]] Unmodifiable Stored Session ===== | ||
| + | Administrator can set session setting ''Special'' to 1 to restrict user from modifying or deleting the session accidentally (Note that the setting can be changed by end-user). Such session will also be highlighted in [[ui_login_stored_sessions|session list]]. Example how to configure the setting, if INI file is used as [[config|configuration storage]], follows: | ||
| <code ini> | <code ini> | ||
| [Sessions\Server] | [Sessions\Server] | ||
| - | HostName=nene.com | + | HostName=example.com |
| - | UserName=nene | + | UserName=customer |
| Special=1 | Special=1 | ||
| </code> | </code> | ||