Hallo Michael, Michael <michael@huith.de> schrieb: In einer Access-Anwendung soll die Berechtigung für eine Aktion von der Eingabe einer benutzerkennung mit Kennwort abhängig gemacht werden. Beispiel: In einem Formular wird der AD-Benutzername und das AD- Kennwort abgefragt. Über eine Prozedur soll die Anmeldung im AD erfolgen. Ist die Anmeldung erfolgreich, wird die Aktion freigegeben
Actually..take that back. Got it to run. Only question is now...it looks to hate empty group as it gives this err Select-Object : Cannot expand property "members" because it has nothing to expand. At line:1 char:35 + Get-QADGroup -sizeLimit 0 | select <<<< @{name="GroupName";expression={$_.name}} -expand members | select GroupName, @{n='Member';e={ (Get-QADObject $_).name I'll
On Tuesday 2 September 2008 07:06, Alvin SIU wrote: Hi all, I am usng AIX 5.2 I have a script like this : ------------------------------------------------------ integer I I=0 ls -1 | while IFS= read -r FILENAME do if [ $I -ge 5 ] then echo This script shows only the first 5 files, no more echo "--- Press ENTER to contine ---\c"
Hi all, I am usng AIX 5.2 I have a script like this : ------------------------------------------------------ integer I I=0 ls -1 | while IFS= read -r FILENAME do if [ $I -ge 5 ] then echo This script shows only the first 5 files, no more echo "--- Press ENTER to contine ---\c" read DUMMY break fi I=1+$I echo "[$I] \c" ls -diel "$FILENAME"