quest

quest powershell : how do you run scheduled task?

How do you run a scheduled task with Quest powershell snap in? ...

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 POSH> get-qaduser -identity <mailboxguid> however it doesn't work. is there something spe...

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 = Get-ChildItem($Dir) | where {$_.psIsContainer -eq $true} $UserList = get-qaduser -sizelimit 0 | select Lo...