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
1
vote
0 answers

QuestPDF have a Previewer option before generating PDF

We have to view PDFs before generating the PDF file. We have tried adding the below-mentioned code but it's not working for us in WinForm and our application gets freezed. using QuestPDF.Fluent; using QuestPDF.Helpers; using…
Pooja Parmar
  • 65
  • 1
  • 7
1
vote
1 answer

merge multiple pdf files into one using QuestPDF in c#

We have created the WinForm application and for PDF generate we have used QuestPDF, but now we want to merge all PDF files into one single PDF using QuestPDF. Is there any way to merge PDF files using QuestPDF?
Pooja Parmar
  • 65
  • 1
  • 7
1
vote
0 answers

Unity Hand tracking issue on the quest with UI raycasting

I'm working on a Unity project, trying to test the UI interaction on the Quest II with hand tracking and ray casting. I've set up a very basic scene with all the default assets (OVRCameraRig, UIHelper) and added just a button to test the UI…
poorya79
  • 21
  • 1
  • 4
1
vote
1 answer

Agora unity sdk is not letting the scene to render with MRTK Oculus Integration

I am building an oculus app using MRTK (Mixed reality toolkit) and need Agora's video feed streaming capabilities. While building my app I am able to hear sound but not able to see unity scene, it's all blank and appears as a black screen. Has…
1
vote
0 answers

Unity Oculus Quest 2 low fps

I have a problem with my VR game. I have build a simple scene, and when I start the game, RivaTuner shows 90-80 frames per second, but when I put on the headset, the frame rate is very low, I want to know why it works like that. I used Oculus Quest…
Acsell
  • 11
  • 2
1
vote
1 answer

Detect Oculus Quest 1 & 2 Headsets in Unity with XR Interaction Toolkit

I'm looking for a way to detect the name of the headset being used in my VR app. I need to distinguish between the Quest 1 & 2 in order to implement the different controller meshes/skins. I have searched here, this is similar Detect Oculus Quest 1 &…
1
vote
0 answers

Oculus Quest & Unity: Hand Tracking: Grab Objects in different ways

I have made a simple game for my Oculus Quest with unity where the player has to sort different objects. The player grabs these objects with his hands. So I have used the hand-tracking. Therefore I followed the instructions of this Tutorial Video…
1
vote
1 answer

Oculus Quest Single-Pass and Multi-Pass not working?

I am using the following configuration: Unity: 2019.2.13f1 Device: Oculus Quest Using LWRP Issues: (a) When I change the "Stereo Rendering Mode" to "Single-Pass", the rendering of the screen is too small and too far. (b) When I change the "Stereo…
user12285218
1
vote
2 answers

hands not responding as expected on oculus Quest

I'm trying to develop an app to Oculus Quest yet i encounter many issues on the way. the app basically consist of a room and teleportation. the issue i encountered happens both on unity 2018.3.12 and 2019.1.8. I created an app that did work as…
likuku
  • 358
  • 6
  • 21
1
vote
2 answers

Quest Toad Default Schema Upon Logon

Our Oracle database has 500+ database users ( one for each 'human' user ). We are using TOAD Version 11.5 After every logon, I have to switch to the application schema, which means choosing the schema from a very long "users" dropdown list. Is there…
oradbanj
  • 551
  • 7
  • 23
1
vote
1 answer

Powershell QADUser Password Expiry

Hi I have the below script which emails users who's passwords are due to expire in $daysleftonpwd, but not sure how to add in an "only if user has password set to expire" meaning I don't want to email users who's password is set to next expire.…
IRLAB
  • 11
  • 1
1
vote
1 answer

How to avoid Get-QADUser queries to return multiple property strings with PowerShell 2.0

I am using Get-QADUser and .DirectoryEntry.FirstName in PowerShell 2.0 to make multiple LDAP queries and return strings. These multiple calls are slow. How could I make one Get-QADUser LDAP query only and create strings from select…
Tartrantism
  • 17
  • 2
  • 6
1
vote
2 answers

Group Scanner - GetQADGroupMember

I'm trying to loop through all groups on a specific domain and for each group perform a validation in the number of members, if some group exceeds the threshold then flag it and build a report. I guess I should get all members and then perform the…
m0dest0
  • 849
  • 4
  • 17
  • 36
1
vote
1 answer

Set-QADUser: cleaning up Displayname

Hi! Some of my users have lastname firstname in AD and I'd like to clean this up. Tried with the following snippet: get-QADUser user | Set-QADUser -DisplayName "$($_.FirstName + ' '+$_.LastName)" but get-QADUser user | select displayname shows…
Sune
  • 3,080
  • 16
  • 53
  • 64
1
vote
1 answer

Running out of memory

I have a memory problem issue I need help with for powershell. For the following code: function Get-PathPermissions { param ( [Parameter(Mandatory=$true)] [System.String]${Path} ) process { $groups=$null $groups=@{} $containers…
archcutbank
  • 419
  • 1
  • 6
  • 17