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
9
votes
2 answers

powershell sort-object doesn't work as expected

I tried to use sort-object cmdlet to sort processes by Id's here: Get-Process | Sort-Object -Property Id and it works well. In any other example I found, sorting works fine, but when I try to sort employees by their employeeID from Active Directory…
culter
  • 5,487
  • 15
  • 54
  • 66
7
votes
4 answers

How do I get properties that ONLY have populated values?

How do I get properties that ONLY have populated values? So for example if I run Get-QADUser -Identity "SomeOne" -IncludeAllProperties the output would of course include.. all properties, including those with and those without values. I want a…
Andrew Stevens
  • 105
  • 1
  • 2
  • 12
5
votes
4 answers

Check if the user is a member of a list of AD groups

$groups = 'group1', 'group2'.... I need to check if the user is in a specific AD group and echo the group name if he is not ; can I do it in the pipeline? I have googled a lot and cannot find anything, maybe I am too bad at Google search in English…
Igor Kuznetsov
  • 421
  • 1
  • 6
  • 15
4
votes
6 answers

Get all empty groups in Active Directory

I am stuck trying to figure out how to get all Active Directory groups that are empty. I came up with this command, which selects groups that have no Members and aren't a MemberOf anything. Get-QADGroup -GroupType Security -SizeLimit 0 |…
Kirk
  • 16,182
  • 20
  • 80
  • 112
3
votes
2 answers

unity - oculus quest - how to read thumbstick input

I'm working on projects for oculus quest using Unity 2019.3. I have done some work in this before, but I am up against a bit for which I am having trouble finding results. Simply, I want to reference the oculus thumbsticks in script. I have worked…
user2828965
  • 405
  • 1
  • 6
  • 17
3
votes
0 answers

Mac - Unreal 4.24.3 - Oculus Quest - Gradle - Error: ERROR: /bin/sh failed with args -c '"/Users/.../gradle/gradlew" :app:assembleDebug'

Hello and thanks in advance, I am trying to get started developing for the Oculus Quest using the Unreal Engine 4.24.3 on a Mac. I know, this is not the ideal setup. I have downloaded ADB and followed the steps in this tutorial:…
2
votes
1 answer

Session factories to handle multiple DB connections

I have a task to create multiple session factories for different Data Sources. One data source will be used for read requests and another for read-write requests. Each API of our Database Service(a wrapper over DAO) is executed as a transaction.…
instanceOfObject
  • 2,936
  • 5
  • 49
  • 85
2
votes
3 answers

How do I query msSFU30MaxUidNumber attribute with Powershell?

Does anyone know of a way to query this UNIX attribute msSFU30MaxUidNumber in Active Directory with Powershell? I'm working on a script that will assign Unix attribute to users as needed. I also have the Quest AD Powershell module available.
mwalkerii
  • 71
  • 2
  • 5
2
votes
2 answers

Unity Oculus Quest game stutters/lags when head is moved from side to side

Firstly, I've built for the Quest and checked the Unity profiler - everything seems good. The weird thing is, when I move my head from side to side I don't see any framerate drops in the profiler but I see a noticeable stutter/lag in the headset.…
spobin
  • 79
  • 1
  • 11
2
votes
2 answers

React-360 Oculus Quest won't go into VR Mode

I have to be missing something: I installed node.js, installed react-360, created the Hello360 app but can't get the page to go into VR Mode in my Oculus Quest via the Oculus Browser. It just looks the same as it does on a PC. After googling for a…
Jamie
  • 21
  • 2
2
votes
0 answers

Is there a way to access local filesystem on Oculus Browser?

i'm currently playing some 360 video files, using WebVr (a-frame). Sometimes i need to play them on my local folder. I'm using a Quest with Oculus Browser (but i can easily switch to Firefox Reality) Is there a way to access the classical "DCIM"…
2
votes
2 answers

quest powershell : how do you run scheduled task?

How do you run a scheduled task with Quest powershell snap in?
phill
  • 13,434
  • 38
  • 105
  • 141
2
votes
1 answer

Powershell 2.0 - Memory Leaking

So here's the scope of what I'm trying to do: Get remote computer information for Windows computers in multiple sites and write the information found to the .Description property of each computer object in Active Directory. If the script can't…
trebleCode
  • 2,134
  • 19
  • 34
2
votes
1 answer

Run Quest cmdlet parallel and save the output to a file

I am pretty new to Powershell and have little problems in running my code parallel. My current code works in sequence but every attempt to make it run parallel failed so far. Here is what I plan to do: I need to query multiple domain controllers (I…
2
votes
2 answers

Powershell - Searching and Comparing Arrays with Quest CMDlets

Trying to determine if there are any user folders on the network that don’t have an associated user account. All results return "Missing" when the majority should return "Found". Any ideas? $Dir = "\\ServerName\Share\" $FolderList =…
user155952
1
2 3 4 5 6 7