I'm trying to make a batch script to list all laptops in my domain that doesn't have a computer description.
I can't seem to make DSQUERY find computers without descriptions Example:
DSQUERY Computer -name [COMPUTERNAMES]* -desc "" -limit 0 | dsget computer -dn -desc
dsquery failed:The search filter cannot be recognized.
type dsquery /? for help.
dsget failed:'Target object for this command' is missing.
type dsget /? for help.
In the example above I tried to search for -desc "" which doesn't work. Do any of you have some trick to list computers without descriptions? Grateful for every reply!
I have revised my script a bit to actually break apart the 'dsget computer -dn -desc' like this:
DSQUERY Computer -name LAPTOP* -limit 0 | dsget computer -dn -desc>computers_unformatted.txt
FOR /F "tokens=2,15,16,17,18,19,20 delims=,= " %%a IN (computers_unformatted.txt) DO (
ECHO.%%a^|%%b^|%%c^|%%d^|%%e^|%%f^|%%g>>computers_unformatted2.txt
)
Output looks like this:
LAPTOP039|John|Doe|T430|Windows7||
LAPTOP040||||||
I'm onto something good here but I can't seem to write anything that makes the output become just (in the example output above) 'LAPTOP040'
Here you go:
And just for fun, I whipped this up