Questions tagged [quest]

Questions related to the PowerShell cmdlets from Quest Software

Tag questions which are related to the PowerShell cmdlets from Quest Software. e.g., Get-QADUser, Get-QADComputer, Get-QADObject.

101 questions
0
votes
1 answer

Exporting data from a foreach loop (Get-QADUser)

I would like output from the following snippet as a text file. How do I accomplish this? $users = Import-Csv Y:\Temp\list2.csv foreach ($user in $users) { Get-QADUser -lastname $user.lastname -firstname $user.firstname | select…
Sune
  • 3,080
  • 16
  • 53
  • 64
0
votes
1 answer

Get-QADUser in a function that returns an array

function getNTAccounts { Add-PSSnapin Quest.ActiveRoles.ADManagement connect-QADService $accounts = @() Get-QADUser -CreatedAfter (Get-Date).AddDays(-3) -SerializeValue | Select-Object "samaccountname" | Foreach-Object{ …
m0dest0
  • 849
  • 4
  • 17
  • 36
0
votes
1 answer

Memory getting Eaten up Issue

I am trying to find recursively the groups on folders and their distinguished names (DN) through an extensive structure of directories / subdirectories on a NAS share. I made code and it works, but it is slow and gobbles up memory for some reason. …
archcutbank
  • 419
  • 1
  • 6
  • 17
0
votes
1 answer

toad custom filter query fail

Im using this tool name as TOAD http://www.quest.com/toad-for-mysql/ for mysql analysis, At the data compare wizard , when I type in a sql query it tells me that the query is fine, I tested the query in phpMyAdmin it worked well.…
meWantToLearn
  • 1,691
  • 2
  • 25
  • 45
0
votes
1 answer

PowerShell Set-QADGroup

I've gotten the following to work: get-QADGroup -SearchRoot 'ex.local/' -LdapFilter '(samaccountname=test_group*)' -GroupType 'Distribution' -IncludedProperties "displayName", "mailNickname", "name", "mail" | foreach-object { Set-QADGroup $_…
basickarl
  • 37,187
  • 64
  • 214
  • 335
0
votes
2 answers

powershell assign one row from document to variable

I'm using cmdlet Get-QADUser (by Quest software) to list domain users from Active Directory. The output is several hundreds of rows with domain names and email addresses. I need to select only those rows, where is email address and assign them to a…
culter
  • 5,487
  • 15
  • 54
  • 66
0
votes
2 answers

Exclude results in a list (returned from Get-QADComputer)

List all active machineaccounts in the current domain $ComputerScan = @(Get-QADComputer -sizelimit $sizelimit -IncludedProperties LastLogonTimeStamp -WarningAction SilentlyContinue -Inactive:$false -OSName $computerFilter | where…
Sune
  • 3,080
  • 16
  • 53
  • 64
-1
votes
1 answer

How to change the language of quest? (AzerothCore)

I use azerothcore docker build my private server, and use Chinese client to login successfully. The problem is the quest text, item names etc. are in English not Chinese. Is it possible to change them to Chinese? thanks.
-1
votes
1 answer

Simplest way to determine if a user has access to do something in Active Directory

I'm currently using the Quest ActiveRoles Management snap-in to determine whether the user running the script has access to perform various operations within our Active Directory domain. We delegate access using groups, so I'm not checking to see…
Greg
  • 1
  • 1
  • 2
-1
votes
2 answers

Find all Windows 7 computer logged on to in the last 90 days

I am looking to run a PowerShell report against Active Directory to find all Windows 7 pcs that have logged on in the past 90 days. I often use this report with Quest to cleanup AD and this is the exact detail I'm looking for in order to find active…
user2776281
  • 9
  • 1
  • 2
  • 5
-2
votes
2 answers

Python 3 quest command, IndentationError: unindent does not match any outer indentation level

def register(): print("Register") login = input("Enter login") passwd = input("Enter password") passwdacc = input("Accept password") if passwdacc = passwd: print("You have registered, now please sign up") else: print("Try again,…
1 2 3 4 5 6
7