Directoy
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 368 articles for 0.228 sec
On 5 Okt., 11:26, Thomas Möller <Thomas_N_O_S_P_...@Team-Moeller.de> wrote: > Hallo Michael, > > Michael <mich...@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     

Group: microsoft.public.de.access · Group Profile · Search for Directoy in microsoft.public.de.access
Author: Michael
Date: Oct 5, 2007 02:57

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
Show full article (1.25Kb) · Show article thread
Hi chris, Yes, sorry for that :) Add an ldap filter to Get-QADGroup to return none empty groups only: Get-QADGroup -sizeLimit 0 -ldap '(member=*)' | select ... --- Shay Levy Windows PowerShell MVP http://blogs.microsoft.co.il/blogs/ScriptFanatic c> Actually..take that back. Got it to run. Only question is now...it c> looks to hate empty group as it gives this err c>     

Group: microsoft.public.de.access · Group Profile · Search for Directoy in microsoft.public.de.access
Author: Thomas Möller
Date: Oct 5, 2007 02:26

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
Show full article (0.83Kb) · Show article thread
Shay, Thanks for the post and help as well. But, when trying to run your script, it is only pulling groups. Your output is the exact format I'm looking to accomplish tho!! Thanks! --Chris "Shay Levy [MVP]" wrote: > Hello chris, > > > Here's another way (one line): > > PS > Get-QADGroup -sizeLimit 0 | select @{name="GroupName";expression={$_.name}} > -expand members | select     

Group: microsoft.public.windows.powershell · Group Profile · Search for Directoy in microsoft.public.windows.powershell
Author: Shay Levy [MVP]
Date: Sep 2, 2008 09:09

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"
Show full article (2.11Kb) · Show article thread
In article <4af46407-c04a-4d9c-ac2f-5bf09814c791@t1g2000pra.googlegroups.com>, Alvin SIU <alvin.siu@gmail.com> 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     

Group: microsoft.public.windows.powershell · Group Profile · Search for Directoy in microsoft.public.windows.powershell
Author: Chris
Date: Sep 2, 2008 07:10

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"
Show full article (1.84Kb) · Show article thread
Hello chris, Here's another way (one line): PS > Get-QADGroup -sizeLimit 0 | select @{name="GroupName";expression={$_.name}} -expand members | select GroupName,@{n='Member';e={ (Get-QADObject $_).name }} GroupName Member --------- ------ Group1 User1 Group1 User1 Group2 User2 Group2 User2 Group3 User3 Group3 User3 --- Shay Levy Windows PowerShell MVP http://blogs     

Group: microsoft.public.windows.powershell · Group Profile · Search for Directoy in microsoft.public.windows.powershell
Author: Chris
Date: Sep 2, 2008 06:15

Try this $names = @() Get-QADGroup | ForEach-Object { $temp = "`n$($_.Name): " if ($_.member -ne $null) { foreach ($user in $_.member){ $un = $user.Split(",") $temp += $un[0].Replace("CN=","") + ", " } $names += $temp.TrimEnd(", ") } else {$names += ($temp + "No members")} } $names -- Richard Siddaway All scripts are supplied "as is" and with no warranty PowerShell
Show full article (1.28Kb) · Show article thread
    

Group: comp.unix.shell · Group Profile · Search for Directoy in comp.unix.shell
Author: pk
Date: Sep 2, 2008 01:29

Show full article (0.97Kb) · Show article thread
    

Group: comp.unix.shell · Group Profile · Search for Directoy in comp.unix.shell
Author: Barry Margolin
Date: Sep 1, 2008 22:38

Show full article (1.80Kb) · Show article thread
    

Group: comp.unix.shell · Group Profile · Search for Directoy in comp.unix.shell
Author: Alvin SIU
Date: Sep 1, 2008 22:06

Show full article (1.16Kb)
    

Group: microsoft.public.windows.powershell · Group Profile · Search for Directoy in microsoft.public.windows.powershell
Author: Shay Levy [MVP]
Date: Aug 31, 2008 07:32

Show full article (0.97Kb) · Show article thread
    

Group: microsoft.public.windows.powershell · Group Profile · Search for Directoy in microsoft.public.windows.powershell
Author: RichS [MVP]
Date: Aug 30, 2008 12:47

Show full article (2.05Kb) · Show article thread
1 · 2 · 3 · 4 · 5 · 6 · 7 · 8 · 9 · next