Ricky,
It all sounds linke a timing issue. I never tried IIS's adsutil.vbs script myself but I think it may have some dependencies on
component initialization that happens during FBA.
Anyway, you may want to try to launch the command from a batch script during FBA. Just make sure to put a wait statement for a few
seconds or more just before the call to launch the script.
For simplicity you can implement wait in batch mode by using any technique such as:
- Use Sleep or Timeout utility from NT Resource Kit. Or you can write your own Sleep tool (just one API call),
- Use ping to ping local host address with # of seconds limitted and specified:
PING 127.0.0.1 -n <secs>
- etc.