Announcement

Collapse
No announcement yet.

Windows NT permissions

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Windows NT permissions

    Hi, I am using SF 6.0.0.4.

    When installing under Windows NT (2000), then its important to consider the local administrator permissions for the user.

    If the user has no admin rights, any shortcuts should NOT be installed to the 'ALL users', but only to the 'per user' profile. The install to the 'ALL users' profile would fail.

    Fortunately, SF 6 has a builtin variable named %isUserNTAdmin%. I can use this variable at runtime to determine, where to install the shortcuts.

    But what shall I do with the program group ? The screen "Select program group" offers a Checkbox "NT All Users", which must be checked or unchecked at EDIT time.

    This is, of course, not sufficient !
    How can I make this decision "dynamic", based on variable %isUserNTAdmin%, but still using the prepared screen for program group selection ?

    Why isn't there a variable %SCFolderPathNT%, but only %SCFolderPath% ?

    Waiting for your helpful hints

    Hayo

    [This message has been edited by HayoOellrich (edited 04-09-2002).]

  • #2
    Re: Windows NT permissions

    OK, I found a workaround to "overrule" the checkbox setting for "NT All users":

    Add the following code to the after screen actions:

    if (%isUserNTAdmin% = TRUE)
    Assign Value(%SCFolderPath%=%StartMenuProgramsNT%\%SCFold erTitle%
    end if
    if (%isUserNTAdmin% = FALSE)
    Assign Value(%SCFolderPath%=% StartMenuPrograms%\%SCFolderTitle%
    end if

    Hereby, its ensured that the shortcut folder is installed to 'ALL users' profile for local admins, and to 'per user' profile otherwise. The checkbox "NT ALL users" is ignored.

    Hayo

    Comment

    Working...
    X