Part II: Working with Server Roles
188
There are four properties that control whether or not the LinkAccess is available.
UNCAccessOnPrivateComputer and WSSAccessOnPrivateComputer control file - share and
SharePoint access for the login option ??? This is a private computer ??? by setting it to either true or false
. UNCAccessOnPublicComputer and WSSAccessOnPublicComputer control file - share and SharePoint
access for the login option ??? This is a public computer. ???
This example shows disabling the LinkAccess for SharePoint and file shares when using public
computers:
Set-OWAVirtualDirectory -Identity ???owa (default web site)???
-WSSAccessOnPublicComputersEnabled:$false
-UNCAccessOnPublicComputersEnabled:$false
After setting these two parameters, the next time the user logs in his menu bar in OWA there will no
longer be a Documents tab. In this scenario, users still can use WebReady for attachments to view them
in HTML. (See Figure 6 - 17 .)
Figure 6-17
It is also possible to set these features on a per - user basis. For example:
Set-CASMailbox -Identity Jeffrey
-OWAWSSAccessOnPublicComputersEnabled:$false
-OWAUNCAccessOnPublicComputersEnabled:$false
Another important setting is configuring access to remote file servers. There are separate settings to
allow specific servers and deny specific servers.
Pages:
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289