Title: | *OLD* ALL-IN-1 (tm) Support Conference |
Notice: | Closed - See Note 4331.l to move to IOSG::ALL-IN-1 |
Moderator: | IOSG::PYE |
Created: | Thu Jan 30 1992 |
Last Modified: | Tue Jan 23 1996 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 4343 |
Total number of notes: | 18308 |
I got something strange after ALL-IN-1/HANYU V2.4 upgeade : I find that some users' document count are not changed after housekeeping procedure (CDQ). To make sure i try the following interactive steps in manager account : 1.) <newdir user 2.) form overquota 3.) rc Then i use MGT -> MUA to edit that user profile, the document count IS updated. So i wrote the following DCL procedure and script and tried to update it by batch mode according to the above thre steps. But, the document count of those users are still UNCHANGED. Any idea ? Thanks, Roger ------------------------ cdq.com ------------------------------- $ set noon $! User group allin1.user $ open input_f allin1.user $read_loop: $ read/end_of_file=endit input_f a1user $ allin1/user=manager/reenter/noinit oa$ini_init do sys$login:cdq.scp exit $ goto read_loop $endit: $ close input_f ------------------------ cdq.scp ------------------------------- get oa$function="NEWDIR " cli$a1user form overquota rc
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
463.1 | Demand a RECOUNT | IOSG::MAURICE | IOSG ain't a place to raise a kid | Fri Apr 10 1992 12:57 | 17 |
Hi, RC is a menu option and not a function. So in the script cdq the line which says rc will not do anything. The function which does do something is RECOUNT, so the next step is to change cdq.scp to: get oa$function="NEWDIR " cli$a1user recount Then to continue your investigation I recommend that you look at the V2.4 patches, because CDQ had some bugs where it missed users. Cheers Stuart |