AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

Userpfad für mehrere Nutzer

Ein Thema von zeras · begonnen am 10. Jul 2010 · letzter Beitrag vom 2. Aug 2010
Antwort Antwort
Seite 1 von 2  1 2      
zeras

Registriert seit: 11. Mär 2007
Ort: Saalkreis
1.618 Beiträge
 
Delphi 12 Athens
 
#1

Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 16:04
Hallo,

ich möchte ein Programm schreiben, wo unter verschiedenen Nutzeranmeldungen das selbe Programm genutzt werden kann. Dazu gehören auch noch die Daten. Bei einer Einzelanwendung habe ich immer CSIDL_APPDATA genutzt, aber da hat ja ein anderer User keinen Zugriff. Welches Verzeichnis kann ich nutzen, wo alle User schreiben und lesen dürfen?

Bei den nachfolgenden Konstanten bin ich nicht weitergekommen.


CSIDL_DESKTOP = $0000;
CSIDL_INTERNET = $0001;
CSIDL_PROGRAMS = $0002;
CSIDL_CONTROLS = $0003;
CSIDL_PRINTERS = $0004;
CSIDL_PERSONAL = $0005;
CSIDL_FAVORITES = $0006;
CSIDL_STARTUP = $0007;
CSIDL_RECENT = $0008;
CSIDL_SENDTO = $0009;
CSIDL_BITBUCKET = $000a;
CSIDL_STARTMENU = $000b;
CSIDL_DESKTOPDIRECTORY = $0010;
CSIDL_DRIVES = $0011;
CSIDL_NETWORK = $0012;
CSIDL_NETHOOD = $0013;
CSIDL_FONTS = $0014;
CSIDL_TEMPLATES = $0015;
CSIDL_COMMON_STARTMENU = $0016;
CSIDL_COMMON_PROGRAMS = $0017;
CSIDL_COMMON_STARTUP = $0018;
CSIDL_COMMON_DESKTOPDIRECTORY = $0019;
CSIDL_APPDATA = $001a;
CSIDL_PRINTHOOD = $001b;
CSIDL_ALTSTARTUP = $001d; // DBCS
CSIDL_COMMON_ALTSTARTUP = $001e; // DBCS
CSIDL_COMMON_FAVORITES = $001f;
CSIDL_INTERNET_CACHE = $0020;
CSIDL_COOKIES = $0021;
CSIDL_HISTORY = $0022;
Matthias
  Mit Zitat antworten Zitat
Benutzerbild von s.h.a.r.k
s.h.a.r.k

Registriert seit: 26. Mai 2004
3.159 Beiträge
 
#2

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 16:08
Unter Windows 7 gibts den "User" Default, unter dem z.B. Einträge im Startmenü für alle User eintragen kann.
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
  Mit Zitat antworten Zitat
fatalerror
(Gast)

n/a Beiträge
 
#3

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 16:38
Ich würde einen Ordner in CSIDL_COMMON_DOCUMENTS erstellen und diesen verwenden.
  Mit Zitat antworten Zitat
zeras

Registriert seit: 11. Mär 2007
Ort: Saalkreis
1.618 Beiträge
 
Delphi 12 Athens
 
#4

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 16:41
Ich würde einen Ordner in CSIDL_COMMON_DOCUMENTS erstellen und diesen verwenden.
Und da können alle User schreiben/lesen?
Dann wäre es ja dass, was ich brauche.
Matthias
  Mit Zitat antworten Zitat
blackfin
(Gast)

n/a Beiträge
 
#5

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 18:42
Ist nicht der korrekte Pfad für Programmdaten aller benutzer CSIDL_COMMON_APPDATA (C:\Documents and Settings\All Users\Application Data)...?
CSIDL_COMMON_DOCUMENTS bezieht sich ja auf den Pfad der Dokumente (C:\Documents and Settings\All Users\Documents), nicht auf Programmdaten.

Anbei noch eine Liste der ganzen Konstanten inklusive Erklärungen, vielleicht hilft sie ja:

Delphi-Quellcode:
{
      CSIDL_FLAG_CREATE            (0x8000)  Version 5.0.
          Combine this CSIDL with any of the following CSIDLs to force the creation of the associated
          folder.

      CSIDL_ADMINTOOLS              (0x0030)  Version 5.0.
          The file system directory that is used to store administrative tools for an individual user.
          The Microsoft Management Console (MMC) will save customized consoles to this
          directory, and it will roam with the user.

      CSIDL_ALTSTARTUP              (0x001d)                The file system
        directory that corresponds to the user's nonlocalized Startup program group.

      CSIDL_APPDATA                (0x001a)  Version 4.71. The file system
        directory that serves as a common repository for application-specific data.
        A typical path is C:\Documents and Settings\username\Application Data. This
        CSIDL is supported by the redistributable Shfolder.dll for systems that do
        not have the Microsoft Internet Explorer 4.0 integrated Shell installed.

      CSIDL_BITBUCKET              (0x000a)                The virtual folder
        containing the objects in the user's Recycle Bin.

      CSIDL_CDBURN_AREA            (0x003b)  Version 6.0.  The file system
        directory acting as a staging area for files waiting to be written to CD. A
        typical path is C:\Documents and Settings\username\Local
        Settings\Application Data\Microsoft\CD Burning.

      CSIDL_COMMON_ADMINTOOLS      (0x002f)  Version 5.0.  The file system
        directory containing administrative tools for all users of the computer.

      CSIDL_COMMON_ALTSTARTUP      (0x001e)                The file system
        directory that corresponds to the nonlocalized Startup program group for all
        users. Valid only for Microsoft Windows NT systems.

      CSIDL_COMMON_APPDATA          (0x0023)  Version 5.0.  The file system
        directory containing application data for all users. A typical path is
        C:\Documents and Settings\All Users\Application Data.

      CSIDL_COMMON_DESKTOPDIRECTORY (0x0019)                The file system
        directory that contains files and folders that appear on the desktop for all
        users. A typical path is C:\Documents and Settings\All Users\Desktop. Valid
        only for Windows NT systems.

      CSIDL_COMMON_DOCUMENTS        (0x002e)                The file system
        directory that contains documents that are common to all users. A typical
        paths is C:\Documents and Settings\All Users\Documents. Valid for Windows NT
        systems and Microsoft Windows 95 and Windows 98 systems with Shfolder.dll
        installed.

      CSIDL_COMMON_FAVORITES        (0x001f)                The file system
        directory that serves as a common repository for favorite items common to
        all users. Valid only for Windows NT systems.

      CSIDL_COMMON_MUSIC            (0x0035)  Version 6.0.  The file system
        directory that serves as a repository for music files common to all users. A
        typical path is C:\Documents and Settings\All Users\Documents\My Music.

      CSIDL_COMMON_PICTURES        (0x0036)  Version 6.0.  The file system
        directory that serves as a repository for image files common to all users. A
        typical path is C:\Documents and Settings\All Users\Documents\My Pictures.

      CSIDL_COMMON_PROGRAMS        (0x0017)                The file system
        directory that contains the directories for the common program groups that
        appear on the Start menu for all users. A typical path is C:\Documents and
        Settings\All Users\Start Menu\Programs. Valid only for Windows NT systems.

      CSIDL_COMMON_STARTMENU        (0x0016)                The file system
        directory that contains the programs and folders that appear on the Start
        menu for all users. A typical path is C:\Documents and Settings\All
        Users\Start Menu. Valid only for Windows NT systems.

      CSIDL_COMMON_STARTUP          (0x0018)                The file system
        directory that contains the programs that appear in the Startup folder for
        all users. A typical path is C:\Documents and Settings\All Users\Start
        Menu\Programs\Startup. Valid only for Windows NT systems.

      CSIDL_COMMON_TEMPLATES        (0x002d)                The file system
        directory that contains the templates that are available to all users. A
        typical path is C:\Documents and Settings\All Users\Templates. Valid only
        for Windows NT systems.

      CSIDL_COMMON_VIDEO            (0x0037)  Version 6.0.  The file system
        directory that serves as a repository for video files common to all users. A
        typical path is C:\Documents and Settings\All Users\Documents\My Videos.

      CSIDL_CONTROLS                (0x0003)                The virtual folder
        containing icons for the Control Panel applications.

      CSIDL_COOKIES                (0x0021)                The file system
        directory that serves as a common repository for Internet cookies. A typical
        path is C:\Documents and Settings\username\Cookies.

      CSIDL_DESKTOP                (0x0000)                The virtual folder
        representing the Windows desktop, the root of the namespace.

      CSIDL_DESKTOPDIRECTORY        (0x0010)                The file system
        directory used to physically store file objects on the desktop (not to be
        confused with the desktop folder itself). A typical path is C:\Documents and
        Settings\username\Desktop.

      CSIDL_DRIVES                  (0x0011)                The virtual folder
        representing My Computer, containing everything on the local computer:
        storage devices, printers, and Control Panel. The folder may also contain
        mapped network drives.

      CSIDL_FAVORITES              (0x0006)                The file system
        directory that serves as a common repository for the user's favorite items.
        A typical path is C:\Documents and Settings\username\Favorites.

      CSIDL_FONTS                  (0x0014)                A virtual folder
        containing fonts. A typical path is C:\Windows\Fonts.

      CSIDL_HISTORY                (0x0022)                The file system
        directory that serves as a common repository for Internet history items.

      CSIDL_INTERNET                (0x0001)                A virtual folder
        representing the Internet.

      CSIDL_INTERNET_CACHE          (0x0020)  Version 4.72. The file system
        directory that serves as a common repository for temporary Internet files. A
        typical path is C:\Documents and Settings\username\Local Settings\Temporary
        Internet Files.

      CSIDL_LOCAL_APPDATA          (0x001c)  Version 5.0.  The file system
        directory that serves as a data repository for local (nonroaming)
        applications. A typical path is C:\Documents and Settings\username\Local
        Settings\Application Data.

      CSIDL_MYDOCUMENTS            (0x000c)  Version 6.0.  The virtual folder
        representing the My Documents desktop item.

      CSIDL_MYMUSIC                (0x000d)                The file system
        directory that serves as a common repository for music files. A typical path
        is C:\Documents and Settings\User\My Documents\My Music.

      CSIDL_MYPICTURES              (0x0027)  Version 5.0.  The file system
        directory that serves as a common repository for image files. A typical path
        is C:\Documents and Settings\username\My Documents\My Pictures.

      CSIDL_MYVIDEO                (0x000e)  Version 6.0.  The file system
        directory that serves as a common repository for video files. A typical path
        is C:\Documents and Settings\username\My Documents\My Videos.

      CSIDL_NETHOOD                (0x0013)                A file system
        directory containing the link objects that may exist in the My Network
        Places virtual folder. It is not the same as CSIDL_NETWORK, which represents
        the network namespace root. A typical path is C:\Documents and
        Settings\username\NetHood.

      CSIDL_NETWORK                (0x0012)                A virtual folder
        representing Network Neighborhood, the root of the network namespace
        hierarchy.

      CSIDL_PERSONAL                (0x0005)  Version 6.0.  The virtual folder
        representing the My Documents desktop item. This is equivalent to

    CSIDL_MYDOCUMENTS. Previous to Version 6.0. The file system directory used
        to physically store a user's common repository of documents. A typical path
        is C:\Documents and Settings\username\My Documents. This should be
        distinguished from the virtual My Documents folder in the namespace. To
        access that virtual folder, use SHGetFolderLocation, which returns the
        ITEMIDLIST for the virtual location, or refer to the technique described in
        Managing the File System.

      CSIDL_PRINTERS                (0x0004)                The virtual folder
        containing installed printers.

      CSIDL_PRINTHOOD              (0x001b)                The file system
        directory that contains the link objects that can exist in the Printers
        virtual folder. A typical path is C:\Documents and
        Settings\username\PrintHood.

      CSIDL_PROFILE                (0x0028)  Version 5.0.  The user's profile
        folder. A typical path is C:\Documents and Settings\username. Applications
        should not create files or folders at this level; they should put their data
        under the locations referred to by CSIDL_APPDATA or CSIDL_LOCAL_APPDATA.

      CSIDL_PROFILES                (0x003e)  Version 6.0.  The file system
        directory containing user profile folders. A typical path is C:\Documents
        and Settings.

      CSIDL_PROGRAM_FILES          (0x0026)  Version 5.0.  The Program Files
        folder. A typical path is C:\Program Files.

      CSIDL_PROGRAM_FILES_COMMON    (0x002b)  Version 5.0.  A folder for
        components that are shared across applications. A typical path is C:\Program
        Files\Common. Valid only for Windows NT, Windows 2000, and Windows XP
        systems. Not valid for Windows Millennium Edition (Windows Me).

      CSIDL_PROGRAMS                (0x0002)                The file system
        directory that contains the user's program groups (which are themselves file
        system directories). A typical path is C:\Documents and
        Settings\username\Start Menu\Programs.

      CSIDL_RECENT                  (0x0008)                The file system
        directory that contains shortcuts to the user's most recently used
        documents. A typical path is C:\Documents and Settings\username\My Recent
        Documents. To create a shortcut in this folder, use SHAddToRecentDocs. In
        addition to creating the shortcut, this function updates the Shell's list of
        recent documents and adds the shortcut to the My Recent Documents submenu of
        the Start menu.

      CSIDL_SENDTO                  (0x0009)                The file system
        directory that contains Send To menu items. A typical path is C:\Documents
        and Settings\username\SendTo.

      CSIDL_STARTMENU              (0x000b)                The file system
        directory containing Start menu items. A typical path is C:\Documents and
        Settings\username\Start Menu.

      CSIDL_STARTUP                (0x0007)                The file system
        directory that corresponds to the user's Startup program group. The system
        starts these programs whenever any user logs onto Windows NT or starts
        Windows 95. A typical path is C:\Documents and Settings\username\Start
        Menu\Programs\Startup.

      CSIDL_SYSTEM                  (0x0025)  Version 5.0.  The Windows System
        folder. A typical path is C:\Windows\System32.

      CSIDL_TEMPLATES              (0x0015)                The file system
        directory that serves as a common repository for document templates. A
        typical path is C:\Documents and Settings\username\Templates.

      CSIDL_WINDOWS                (0x0024)  Version 5.0.  The Windows
        directory or SYSROOT. This corresponds to the %windir% or %SYSTEMROOT%
        environment variables. A typical path is C:\Windows.
}
  Mit Zitat antworten Zitat
zeras

Registriert seit: 11. Mär 2007
Ort: Saalkreis
1.618 Beiträge
 
Delphi 12 Athens
 
#6

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 18:48
Jetzt verwirrt mich wieder alles.

Ich möchte einige Daten für alle User zugänglich machen. Diese sollen auch ohne Adminrechte geändert werden können. Das Progamm an sich wird direkt im Programmpfad installiert.
Das könnte eine gemeimsame Registrierungsdatei sein oder aber auch Daten, die der ein oder andere User auslesen will oder auch eintragen will.
Matthias
  Mit Zitat antworten Zitat
blackfin
(Gast)

n/a Beiträge
 
#7

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 18:55
CSIDL_COMMON_APPDATA ist der richtige Ort für Programm-Daten, die für alle Benutzer gleichermaßen verfügbar sind.
Allerdings ist das Verzeichnis per Standard ohne Schreibrechte für Nicht-Admin-Benutzer.
Wenn auch von allen Benutzern Dateien verändert werden dürfen / müssen, dann hat das Installations-Programm dafür zu sorgen, den angelegten Unterordner in CSIDL_COMMON_APPDATA mit den entsprechenden Rechten zu versehen.

Das gleiche (keine Schreibrechte für nicht-Admins per Standard) gilt übrigens auch für CSIDL_COMMON_DOCUMENTS, nur dass das der falsche Ort für Programmdaten ist.

Genau so wie oben beschrieben ist es auch von Microsoft vorgesehen:

Zitat:
# CSIDL_COMMON_APPDATA

This folder should be used for application data that is not user specific. For example, an application may store a spell check dictionary, a database of clip-art or a log file in the CSIDL_COMMON_APPDATA folder. This information will not roam and is available to anyone using the computer. By default, this location is read-only for normal (non-admin, non-power) Users. If an application requires normal Users to have write access to an application specific subdirectory of CSIDL_COMMON_APPDATA, then the application must explicitly modify the security on that sub-directory during application setup. The modified security must be documented in the Vendor Questionnaire.
Der Text kommt direkt von Microsoft selbst, nachzulesen (mit vielen weiteren nützlichen Informationen über Datenspeicherung in Windows) unter folgendem Link:

http://msdn.microsoft.com/en-us/library/ms995853.aspx

Du legst also deine Programmdaten in einem Unterordner von CSIDL_COMMON_APPDATA ab und fügst diesem Schreibrechte für alle Benutzer während deiner Programm-Installation hinzu, dann ist alles in Ordnung.

Geändert von blackfin (10. Jul 2010 um 19:06 Uhr)
  Mit Zitat antworten Zitat
Benutzerbild von Sir Rufo
Sir Rufo

Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
 
Delphi 10 Seattle Enterprise
 
#8

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 19:56
Schau mal hier Beitrag #31

Da findest du eine Unit, mit der du auf alle "Special Folders" einfach zugreifen kannst.
Die beiliegende Demo listet alle Verzeichnisse auf inkl. der entsprechenden Rechte.
Such dir da das passende Verzeichnis aus und gut.
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ‎ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
  Mit Zitat antworten Zitat
fatalerror
(Gast)

n/a Beiträge
 
#9

AW: Userpfad für mehrere Nutzer

  Alt 10. Jul 2010, 23:10
CSIDL_COMMON_APPDATA oder CSIDL_COMMON_DOCUMENTS welches ist nun das richtige Verzeichnis?

Das hängt _meiner_ Meinung nach von der Art der Daten ab, die dort gespeichert werden.

CSIDL_COMMON_APPDATA ist ein verstecktes Verzeichnis, das normale User also nicht zu sehen bekommen. Sollen also zum Beispiel User mit Hilfe eines Opendialogs Daten holen, sind diese Daten für normale User in diesem Verzeichnis nicht greifbar. Es empfiehlt sich hier also Daten abzuspeichern, die von deinem Programm direkt gelesen werden (zb.: Verbindungseinstellungen zu Datenbanken, Pfadeinstellungen, ...)

In CSIDL_COMMON_DOCUMENTS gehören Daten wie zb. Reports, Dokumentenvorlagen, ... die User während der Arbeit laden, verändern und speichern können sollen.

In beiden Ordnern haben aber Userspezifische Einstellungen wie Fensterpositionen, zuletzt geladene Dokumente, Skineinstellungen, Userspezifische Menu- oder Toolbareinstellungen nichts zu suchen. Diese gehören definitiv ins spezifische Userprofil.
  Mit Zitat antworten Zitat
zeras

Registriert seit: 11. Mär 2007
Ort: Saalkreis
1.618 Beiträge
 
Delphi 12 Athens
 
#10

AW: Userpfad für mehrere Nutzer

  Alt 31. Jul 2010, 18:27
Du legst also deine Programmdaten in einem Unterordner von CSIDL_COMMON_APPDATA ab und fügst diesem Schreibrechte für alle Benutzer während deiner Programm-Installation hinzu, dann ist alles in Ordnung.
Ich habe mal 2 Rechner auf Schreibrechte in dem Pfad überprüft. Bei beiden Rechnern (kein Admin) konnte ich mit dem Explorer einen Pfad erzeugen und auch Dateien darin ablegen. Bei dem einen Rechner habe ich einfach einen User als "Nicht Admin" angelegt und der andere ist aus meiner Firma, wo man eigentlich immer "zuwenig" freischaltet als zuviel. Auf der genannten Homepage von MS steht aber auch, dass dieser eigentlich schreibgeschützt ist.
Da werde ich wohl man in den Innosetup Info nachschauen, wie man die Pfade als "schreibend" anlegen kann.
Matthias
Es ist nie falsch das Richtige zu tun!
- Mark Twain
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 1 von 2  1 2      


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:53 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz