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

Oculus Quest shows the wrong controller

when exporting a demo project (sphere + ovr controller and avatar) to oculus quest, instead of oculus quest controllers, the scene insists to show me the oculus go controller. I use unity 2018.3.14 and 2019.1.9 oculus integration v1.35 and…
likuku
  • 358
  • 6
  • 21
0
votes
0 answers

Picking up object in Unity Quest makes me zoom around my gamespace

I think it has something to do with trying to fix an object's collision. I have a box collider on a cube, and when I pick it up, sometimes I go zooming around (even can use it to move vertically!). It's annoying and not sure how to fix this. Upon…
Steven Jacks
  • 313
  • 1
  • 2
  • 14
0
votes
2 answers

powershell quest : get-qaduser -identity guid doesn't work?

i start out by querying an exchange server 2003 with: POSH>get-wmiobject -class Exchange_mailbox -namespace Root\MicrosoftExchangeV2 -server srv02 to get the users. One of the properties available is the mailboxguid. so for testing, I run…
phill
  • 13,434
  • 38
  • 105
  • 141
0
votes
0 answers

C# - Utilize Quest active directory cmdlets for Powershell by calling PS script

C# code (Source): private string RunScript(string scriptText) { // create Powershell runspace Runspace runspace = RunspaceFactory.CreateRunspace(); // open it runspace.Open(); // create a pipeline and feed it the script…
scharette
  • 9,437
  • 8
  • 33
  • 67
0
votes
1 answer

Powershell Script Limiting OU search for Active/Disabled users

I currently have a script that is functional with the exception of two search features. The Active user search which is limited to two OUs, and the Disabled user which is limited to a separate 2 OUs. This is all contained within a while loop that…
Matt
  • 15
  • 4
0
votes
1 answer

Cleanup PowerShell Command

I have been trying to re-format this command by making it cleaner but I just can't seem to get around the write-output. Get-QARSOperation -ParentContainer 'somedomain.com/OU1/OU2' -TargetObjectType 'user' | Where-Object {$_.Status -eq 'Completed'…
nfoman
  • 37
  • 1
  • 5
0
votes
1 answer

Wildcards in Get-QADuser

How can I search for user using quest cmdlets (Get-QADUser) for accounts containing an "_" (underscore) followed by any 3 characters for eg. User01_ad1, User55_a2d, User116_arr, User9999_1ad I tried following but it does seem to work: Get-QADUser…
sk8er_boi47
  • 383
  • 1
  • 4
  • 15
0
votes
2 answers

Powershell setting Mailnickname attribute

I have a bit of powershell code that after a user has been created the code assigns the account loads of attributes using Quest/AD. All the attributes assign except Mailnickname. Is there a reason for this / how can I fix it. Below is my…
user3290171
  • 121
  • 1
  • 3
  • 19
0
votes
1 answer

Working with dates in extensionAttributes and Get-Date

I'm attempting to use Active Directory extensionAttributes to keep track of certain dates (like start date, termination date, etc) so that I can trigger certain actions when that date occurs. I'm having an issue with the different variations that a…
0
votes
2 answers

PowerShell + AD: Return users from within any groups in a specific OU, plus count

PowerShell "white belt" here, first time poster. I'll try not to lower the collective IQ of such a helpful community while I'm here! :) I'm running PowerShell 3.0 with Quest installed. My organization has an Active Directory OU with several…
3Jake
  • 51
  • 1
  • 2
  • 11
0
votes
2 answers

Performance tuning powershell script failing with System.outOfMemoryException

I have the following PowerShell script that is failing after 30min of execution with an System.outOfMemoryException $csv = get-content "C:\test\groups.txt" $result = $csv | foreach-object { $group=$_ get-QADGroupMember "$_" -PageSize 500…
mcha
  • 2,938
  • 4
  • 25
  • 34
0
votes
1 answer

Powershell script extract AD group members - find last-login time for each user

I'm trying to create a script that will pull a list of group members from AD and run a foreach loop to determine when the last time each user logged into any given domain controller. I got some of the code for the measure-latest function here . I…
0
votes
1 answer

Powershell - Using CSV file to add Users to AD Group (Quest ActiveRoles Management)

I have a CSV file with two columns. The first column is an AD group, the second column is a list of AD users (display name - not user id) Any ideas on how the add the users to their corresponding AD groups. e.g. Add Peter Parker, Bruce Wayne, Tony…
Yad
  • 229
  • 1
  • 8
  • 19
0
votes
1 answer

Returning and saving all Unix Attributes for users in a specific OU

As part of our company policy, all employees who have left the company keep their active directory accounts, which are disabled and moved to a specific OU. There are several parts to this process which need to be automated, but a significant part…
DerekPDX
  • 3
  • 2
0
votes
0 answers

Get-QADUser for users outside dn?

Hi when I run in PowerShell (with the Quest AD add-in) a simple Get-QADUser -displayname "John, Doe Jr." It works for everyone who is in my dn, e.g. "europe", as soon as I try this on someone outside e.g. asia or africa it returns nothing. How can…
edelwater
  • 2,650
  • 8
  • 39
  • 67