UWP: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:misc-faq === How to get at the virtual UWP2 === Use Firefox to connect to https://uwp.rug.nl, log in and choose your application/desktop. This use HTML5, but do...") |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category:misc-faq]] | [[Category:misc-faq]] | ||
=== How to get at the virtual | === How to get at the virtual UWP === | ||
'''Use Firefox''' to connect to https://uwp.rug.nl, log in and choose your application/desktop.<br/> | |||
Chrome/Chromium doesn't support the ICA client plug-in properly and only uses HTML5 which in turn doesn't support a direct connection to your local drives/resources. | |||
=== How to connect your local drive(s) to https://uwp.rug.nl. === | |||
After you've installed the Citrix Workspace App a.k.a Citrix Receiver a.k.a. the ICA Client, you can add the following to it's config. This will make your local drives available.<br/> | |||
'''Note:''' On the LWP this is done automatically!<br/> | |||
There should be a file '''"~/.ICAClient/wfclient.ini"''' in your home dir. Open it with your favorite editor and add the following below the '''"[WFClient]"''' header; replacing the path and any settings you want different of course: | |||
DrivePath'''?'''='''/path/to/your/drive''' | |||
DriveEnabled'''?'''='''Yes''' | |||
DrivePath?=/path/to/your/drive | DriveReadAccess'''?'''='''0''' | ||
DriveEnabled?=Yes | DriveWriteAccess'''?'''='''0''' | ||
DriveReadAccess?=0 | |||
DriveWriteAccess?=0 | |||
:*'''?''': choose any UPPERCASE letter that is not already in use by Windows. | :*'''?''': choose any UPPERCASE letter that is not already in use by Windows. | ||
:*'''DriveEnabled''': Yes to automatically mount in Windows on login. | :*'''DriveEnabled''': Yes to automatically mount in Windows on login. | ||
:*'''DriveReadAccess''': 0 | :*'''DriveReadAccess''': 0 = yes, 1 = no | ||
:*'''DriveWriteAccess''': 0 | :*'''DriveWriteAccess''': 0 = yes, 1 = no | ||
Example: | Example: | ||
Line 50: | Line 37: | ||
---8<--- <snip rest of original file> ---8<--- | ---8<--- <snip rest of original file> ---8<--- | ||
Latest revision as of 15:14, 14 January 2022
How to get at the virtual UWP
Use Firefox to connect to https://uwp.rug.nl, log in and choose your application/desktop.
Chrome/Chromium doesn't support the ICA client plug-in properly and only uses HTML5 which in turn doesn't support a direct connection to your local drives/resources.
How to connect your local drive(s) to https://uwp.rug.nl.
After you've installed the Citrix Workspace App a.k.a Citrix Receiver a.k.a. the ICA Client, you can add the following to it's config. This will make your local drives available.
Note: On the LWP this is done automatically!
There should be a file "~/.ICAClient/wfclient.ini" in your home dir. Open it with your favorite editor and add the following below the "[WFClient]" header; replacing the path and any settings you want different of course:
DrivePath?=/path/to/your/drive DriveEnabled?=Yes DriveReadAccess?=0 DriveWriteAccess?=0
- ?: choose any UPPERCASE letter that is not already in use by Windows.
- DriveEnabled: Yes to automatically mount in Windows on login.
- DriveReadAccess: 0 = yes, 1 = no
- DriveWriteAccess: 0 = yes, 1 = no
Example:
;******************************************************************** ; ; wfclient.ini ; ; User configuration for Citrix Receiver for Unix ; ; Copyright 1994-2006, 2009 Citrix Systems, Inc. All rights reserved. ; ;******************************************************************** [WFClient] DrivePathH=/home/<username> DriveEnabledH=Yes DriveReadAccessH=0 DriveWriteAccessH=0 ---8<--- <snip rest of original file> ---8<---