Dqstr - -wnh 1 !!top!! 90%

dqstr - -wnh 1 — full content

This looks like a command intended for Windows Server (or possibly a related tool like dsquery / dsget from the Windows Server Resource Kit or Active Directory tools), but dqstr is not a standard Windows command.

Based on common naming patterns, you may have meant:

However, dqstr is not a native cmdlet or executable in Windows, PowerShell, or common server tools. dqstr - -wnh 1

If you intended dsquery * -wnh 1 — the -wnh switch is not standard either. The closest option in dsquery is -scope or -subtree.

Possible correct commands:

  1. dsquery * -filter ... -attr * – to get all attributes of an object.
  2. dsget ... -display ... – to get specific properties.

If dqstr is a custom/internal tool, you’d need its documentation.

To help you better:

If you clarify, I can provide the exact equivalent command.

Here’s a helpful breakdown of the command snippet dqstr - -wnh 1. dqstr - -wnh 1 — full content


Strengths

Safer way to test

Run the command without -h first:

dqstr - -wn 1

If you want to be certain about options, check the help: This looks like a command intended for Windows

dqstr --help
# or
man dqstr

Maintenance & Community