SCCM QUERY or VB SCRIPT to find Free Diskspace/ No of documents saved/last logon details (who and when)

Can we please get a report showing all company laptops and the following information
1. Disk space in use/Free and number of files/documents saved (doesn't matter if its Word or PDF, just give me the numbers)
2. Whether they have any PST files stored on them
3. The last login details (who and when)<o:p></o:p>
I don't mind if its a VBscript or .batch file (but that should also extract the result in excel file) or i have SCCM 2012 server in place, and i can
utilize this to get the result via querying.
<o:p>I am Fairly new to SCCM2012 so please be nice if i ask any silly questions.</o:p>
Thanks in advance,<o:p></o:p>

1a: Disk space in use/Free: there are some default reports on your ConfigMgr 2012 site in the folder "Hardware - Disk"; those may be what you want.
1b: number of files/documents saved: by default out of the box (unless you've changed it), "file inventory", also known as software inventory, is not enabled. This is for various technical and practical reasons.  However, if for your specific
company you are required to scan for *.doc, *.xls, *.docx, *.xlsx, *.pdf, etc--you can certainly enable that feature.  Once enabled, you will be able to create custom reports to "count" the number of files on each computer.
2: similar to 1b above, you could enable scanning for files which happen to be named *.pst.  This link is more advanced; but it's a more granular way of detecting who is using pst files, and where they are--whether or not they are local-->
http://www.mnscug.org/blogs/sherry-kissinger/249-pstfinder
3: "last login details who and when"--that is "sort of" recorded and available.  But I want to be cautious about telling you that it's available--because really it's your Active Directory domain controllers that *really* know when
a username last logged in.  Remember, ConfigMgr is NOT meant to be an up-to-the-second reporting mechanism.  The reason last login details are recorded from a configMgr point of view is simply to assist in determining who the primary user of a machine
is.  It's not, and is never meant to be, to help you see the exact time Bob logged into ComputerX.  It's more so that over weeks, the ConfigMgr Client can determine "hey, Bob is the one with the most console minutes on ComputerX, he's probably
the primary user of ComputerX".
Standardize. Simplify. Automate.

Similar Messages

  • SAP Query (SQ01) who and when to use the report

    HI Experts!!!
    Is there somewhere recorded information:  who and when to use the report from SAP Query (SQ01)?
    Thanks

    Hi
    This topic doesn´t belong to the Service Marketplace Area.
    regards Martin

  • How to find the Last logon detail of a deleted user?

    I need to find the last logon detail of a deleted user.I have tried with SM20 i got the details,but i coildnt get for few users.Is there any other way to get this?

    Hi Eva,
    Follow below:-
    1. Go to Se16
    2. table name either USH02 or USH04
    3. provide BNAME row as your user name then execute it
    4. you will get all the entries for that user in the next output screen
    5. Check the Column names like
    MODDA 
    MODTI
    MODBE   
    TCODE REPID
    For the Details which you need.
    The descriptions of this columns are as below:-
    MANDT                        
    Client
    BNAME                        
    User
    MODDA                        
    Modification date
    MODTI                        
    Modification time
    MODBE                        
    Changed by
    TCODE                        
    Not More Closely Defined Area, Pos
    REPID                        
    Program Name
    BCODE                        
    Initial password
    GLTGV                        
    Valid from
    GLTGB                        
    Valid through
    USTYP                        
    User Type
    CLASS                        
    User group
    UFLAG                        
    User Lock Status
    ACCNT                        
    Account number
    PASSCODE                     
    Password Hash Val.(SAH1, 160 Bit)
    CODVN                        
    Password Code Vers.
    PWDINITIAL                   
    Indicator: Password Is Initial
    Let me know if you need further help in this.
    Regards,
    Ram

  • HELP !!! - sql script to find free space in Oracle7,8,9 DB

    Hi All
    I got a PL/SQL script to find out free space in Oracle7,8,9 db. But because in Oracle 7 there is no maxbytes column in dba_data_files, so this script is not working. I am trying to use cursor and putting sql in a variable so that when program executes, it does not see maxbytes. But it still does not work.
    Please help. !!!
    Script
    set feedback off;
    set serveroutput on;
    set termout off;
    set verify off;
    spool /u01/app/oracle/admin/common/bck/log/ts.log
    declare
    v_tablespace_name varchar2(50);
    v_total_space number(12) := 0;
    v_free_space number(12);
    v_space number(12);
    v_space_used number(12);
    v_pct_free number(6,3);
    v_pct_threshold number(3) := 2;
    v_table_exist number(2) := 0;
    v_sql varchar2(300) := 'select sum(maxbytes) from dba_data_files where TABLESPACE_NAME = tablespace_rec.tablespace_name';
    TYPE t_tableref IS REF CURSOR;
    t_tablecur t_tableref;
    begin
    for tablespace_rec in (select tablespace_name from dba_tablespaces)
    loop     
    -- Get the total space for the current tablespace
    -- if this FILEXT$ view exists then some of the datafiles have autoextend on;
              select count(*) into v_table_exist from dba_tables where table_name = 'FILEXT$';
              dbms_output.put_line('table count: ' || v_table_exist);               
              if v_table_exist = 0 then
                        OPEN t_tablecur for v_sql;
                        fetch t_tablecur into v_total_space;                         
                        CLOSE t_tablecur;     
              --     select sum(maxbytes) into v_total_space from dba_data_files
              --     where TABLESPACE_NAME = tablespace_rec.tablespace_name;               
              --      v_total_space := getMaxBytes(tablespace_rec.tablespace_name);
              end if;
              select sum(bytes) into v_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;          
         if (v_total_space = 0 or v_total_space < v_space) then
              select sum(bytes) into v_total_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
         else
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              v_space_used := v_space - v_free_space;
              v_free_space := v_total_space - v_space_used;          
         end if;
    -- calculate the percent free for the current tablespace
    v_pct_free := (v_free_space / v_total_space) * 100;
         if (v_pct_free < v_pct_threshold) then
         dbms_output.put_line(tablespace_rec.tablespace_name|| ' - Percent Free: ' || v_pct_free      
         ||'%');
         end if;
    end loop;
    end;
    spool off;

    Hi All
    I got a PL/SQL script to find out free space in Oracle7,8,9 db. But because in Oracle 7 there is no maxbytes column in dba_data_files, so this script is not working. I am trying to use cursor and putting sql in a variable so that when program executes, it does not see maxbytes. But it still does not work.
    Please help. !!!
    Script
    set feedback off;
    set serveroutput on;
    set termout off;
    set verify off;
    spool /u01/app/oracle/admin/common/bck/log/ts.log
    declare
    v_tablespace_name varchar2(50);
    v_total_space number(12) := 0;
    v_free_space number(12);
    v_space number(12);
    v_space_used number(12);
    v_pct_free number(6,3);
    v_pct_threshold number(3) := 2;
    v_table_exist number(2) := 0;
    v_sql varchar2(300) := 'select sum(maxbytes) from dba_data_files where TABLESPACE_NAME = tablespace_rec.tablespace_name';
    TYPE t_tableref IS REF CURSOR;
    t_tablecur t_tableref;
    begin
    for tablespace_rec in (select tablespace_name from dba_tablespaces)
    loop     
    -- Get the total space for the current tablespace
    -- if this FILEXT$ view exists then some of the datafiles have autoextend on;
              select count(*) into v_table_exist from dba_tables where table_name = 'FILEXT$';
              dbms_output.put_line('table count: ' || v_table_exist);               
              if v_table_exist = 0 then
                        OPEN t_tablecur for v_sql;
                        fetch t_tablecur into v_total_space;                         
                        CLOSE t_tablecur;     
              --     select sum(maxbytes) into v_total_space from dba_data_files
              --     where TABLESPACE_NAME = tablespace_rec.tablespace_name;               
              --      v_total_space := getMaxBytes(tablespace_rec.tablespace_name);
              end if;
              select sum(bytes) into v_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;          
         if (v_total_space = 0 or v_total_space < v_space) then
              select sum(bytes) into v_total_space from dba_data_files
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
         else
              select sum(bytes) into v_free_space from dba_free_space
              where TABLESPACE_NAME = tablespace_rec.tablespace_name;
              v_space_used := v_space - v_free_space;
              v_free_space := v_total_space - v_space_used;          
         end if;
    -- calculate the percent free for the current tablespace
    v_pct_free := (v_free_space / v_total_space) * 100;
         if (v_pct_free < v_pct_threshold) then
         dbms_output.put_line(tablespace_rec.tablespace_name|| ' - Percent Free: ' || v_pct_free      
         ||'%');
         end if;
    end loop;
    end;
    spool off;

  • HT201304 Why is it not letting me download free apps on my iPad when ? It's asking for my bank details again and when I type my security number in its says its been declined from a previous purchase? Can u help me pls!

    Why is t not letting me download free apps on my iPad when it's asking for my security number and when I type it in my details on my iCloud account it's saying its been declined and asking for another payment card ? Can some1 help me pls!!

    You will need to contact iTunes support to get that sorted out: http://www.apple.com/support/itunes/contact/

  • QUERY TO FIND FREE DISKSPACE IN SCCM 2012 DISTRIBUTION POINT

    this is the query to get free disk space on distribution point ,but this is not working for sccm 2012 ,please help
    Select
    Distinct
    SD
    .Name0,
    SR
    .RoleName,
    LD
    .DeviceID0,
    LD
    .FreeSpace0
    * 100
    /  LD.Size0
    'Free Disk Space'
    From
    v_R_System SD
    Join
    v_Gs_Logical_Disk LD on SD.ResourceId
    = LD.ResourceId
    Join
    v_SystemResourceList SR on SD.Netbios_Name0
    = SR.ServerName
    Where
    LD.DriveType0
    = 3
    and
    SR.RoleName
    =
    'SMS Distribution Point'
    ankith

    you're probably getting 0 rows... 
    v_SystemResourceList.ServerName contains the netbios+domain name, while v_Gs_Logical_Disk.Netbios_Name0 only contains the netbios name (no domain), therefore the join doesn't find any matching rows...
    You need to trim the domain name from the field {LEFT(SRL.ServerName,CHARINDEX('.', SRL.ServerName)-1)}
    try this query instead:
    SELECT DISTINCT
    SYS.Name0 As 'Device'
    ,SRL.RoleName As 'Role'
    ,LD.DeviceID0 As 'Disk',LD.FreeSpace0,LD.Size0
    ,LD.FreeSpace0 * 100 / LD.Size0 As 'Free Disk Space'
    FROM
    v_R_System As SYS
    Join v_Gs_Logical_Disk As LD on SYS.ResourceId = LD.ResourceId
    Join v_SystemResourceList As SRL on SYS.Netbios_Name0 = LEFT(SRL.ServerName,CHARINDEX('.', SRL.ServerName)-1)
    WHERE
    LD.DriveType0 = 3
    And SRL.RoleName = 'SMS Distribution Point'
    Additionally, if you notice that the LD.FreeSpace0 field returns NULL, you need to enable the hardware Inventory collection of this information [ client settings > hardware inventory > Logical Disk (SMS_LogicalDisk) > Free Space (MB) ]... Then initiate
    the hardware Inventory cycle action and it should show results...
    I don't have this field inventoried, so I cannot confirm the accuracy of the query...

  • Flawed script for finding free tablespace space

    Currently i am using the below mentioned script to see the freespace in tablespace. But the Freespace shown in this report is mistakenly shown smaller than the actual freespace in the datafiles.
    For example i ran the below mentioned script and found that the tablespace CUSTDATA has only 4634 MB free. So i added another datafile with 2GB space using the following syntax.
    ALTER TABLESPACE CUSTDATA
    ADD DATAFILE '/u04/oradata/ora145/ora145_CUSTDATA20.dbf' SIZE 500M AUTOEXTEND ON NEXT 20M MAXSIZE 2000M;
    After the addition of this datafile, the freespace should be 6634 MB. But my script's resut is showing only 5134.75 MB.
    Why is this happening?
    My tablespace free space report script
    select ddf.tablespace_name,total ttlSize,
    (total-nvl(freespace,0))/1024 used, freespace
    from (select tablespace_name,sum(bytes/1024/1024)
    total from dba_data_files group by tablespace_name) ddf,
    (select tablespace_name,sum(bytes/1024/1024)
    freespace from dba_free_space group by tablespace_name) dfs where ddf.tablespace_name=dfs.tablespace_name(+); Message was edited by:
    for_good_reason

    The MAXSIZE (2000M) is the actual size of the
    datafile and not SIZE 500M . Right?No, at least when you create the datafile. Actual size is identified by BYTES column, which you use in your query. Example :
    SYS@db102 > select file_name,bytes, maxbytes
      2  from dba_data_files
      3  where tablespace_name = 'USERS';
    FILE_NAME                                                     BYTES         MAXBYTES
    /home/oracle/base/oradata/db102/users01.dbf               104857600      34359721984
    SYS@db102 > select tablespace_name,sum(bytes) from dba_free_space
      2  where tablespace_name = 'USERS'
      3  group by tablespace_name;
    TABLESPACE_NAME                      SUM(BYTES)
    USERS                                  61341696
    SYS@db102 > alter tablespace users add datafile
      2  '/home/oracle/base/oradata/db102/users02.dbf'
      3  size 100M autoextend on next 10M maxsize 500M;
    Tablespace altered.
    SYS@db102 > select file_name,bytes, maxbytes
      2  from dba_data_files
      3  where tablespace_name = 'USERS';
    FILE_NAME                                                     BYTES         MAXBYTES
    /home/oracle/base/oradata/db102/users01.dbf               104857600      34359721984
    /home/oracle/base/oradata/db102/users02.dbf               104857600        524288000
    SYS@db102 > select tablespace_name,sum(bytes) from dba_free_space
      2  where tablespace_name = 'USERS'
      3  group by tablespace_name;
    TABLESPACE_NAME                      SUM(BYTES)
    USERS                                 166133760
    SYS@db102 >

  • How do you find who and when for someone who has been uning imessage

    I am trying to be a responsbile parent by trying to see if my son is being sneaky.  I can not find the message through our provider and don't know where to look. 

    iMessage does not go through the cellular provider.
    Either get physical possession of the device and look or if you have the Apple ID and password, set it up on another iOS device and snoop on your child.  Just be aware they unlikely to ever trust you again.

  • Hi! I am trying to download the free trial of Illustrator CS6, I only see Illustrator CC, and when I try to download that trial I get a message that prevents me from downloading saying: "You are running an operating system that Illustrator no longer suppo

    help.

    Kelly Lynn,
    You may download CS6 here:
    Download CS6 products
    or
    http://prodesigntools.com/tag/ddl
    or
    http://technolux.blogspot.co.nz/2011/02/adobe-direct-download-links-less-akamai.html#more
    Downloading (the original) CC on 10.6.8 has been proven possible.
    Post #3 in this thread shows a viable way of doing it:
    http://forums.adobe.com/message/6342650#6342650

  • How do I sync my outlook calendar to my iPhone? I cannot find the sync calendar option since my last software updates. (iPhone and Mavericks)

    Ok, so last semester in school I had no problems syncing my outlook calandar to my iPhone, but when I tried to do it this semester for my class schedule i cannot. It seems that in iTunes there is no info button to click according to Apple's setup instructions, and the "Sync Calendar" option is missing. Anyone have information on this?

    Through iTunes, there is a tab at the top for your iphone, called Info, click there and scroll midway down to Calendar and then sync away.

  • SCCM query to find last logon server info

    dear
    all
    could u please share an sccm query to find all client logon server ie mean we get once set L command is put
    ankith

    hi
    I Have the same query added logon server
    SELECT
         v_GS_SYSTEM.Name0
    AS ComputerName,
    v_GS_NETWORK_LOGIN_PROFILE.TimeStamp
    AS [Last Login Time],
                          v_GS_NETWORK_LOGIN_PROFILE
    .Name0
    AS [Logon User],
    v_GS_SYSTEM.Domain0
    AS [Logon Domain],
    v_GS_SYSTEM.SystemRole0
    AS [System Role],
                          v_GS_SYSTEM
    .SystemType0
    AS [System Type],
    v_GS_NETWORK_LOGIN_PROFILE.LogonServer0
    FROM
             v_GS_NETWORK_LOGIN_PROFILE
    LEFT
    OUTER
    JOIN
                          v_GS_SYSTEM
    ON v_GS_NETWORK_LOGIN_PROFILE.ResourceID
    = v_GS_SYSTEM.ResourceID
    WHERE    
    (v_GS_NETWORK_LOGIN_PROFILE.LastLogon0
    IS
    NOT
    NULL)
    once query executed iam getting  in output
    ankith

  • Script to find duplicate index and how can we tell if an index is REALLY a duplicate?

    Does any one have script to find duplicate index? and how can we tell if an index is REALLY a duplicate?
    Rahul

    One more written by Itzik Ben-Gan
    The first query finds exact matches. The indexes must have 
    the same key columns in the same order, and the same included columns but in any order. 
    These indexes are sure targets for elimination. The only caution would be to check for index hints. 
    -- exact duplicates
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols,
    (select case keyno when 0 then colid else NULL end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by colid
    for xml path('')) as inc
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'exactduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and c1.cols = c2.cols
    and c1.inc = c2.inc;
    The second variation of this query finds partial, or duplicate, indexes 
    that share leading key columns, e.g. Ix1(col1, col2, col3) and Ix2(col1, col2) 
    would be considered duplicate indexes. This query only examines key columns and does not consider included columns. 
    These types of indexes are probable dead indexes walking. 
    -- Overlapping indxes
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'partialduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and (c1.cols like c2.cols + '%' 
    or c2.cols like c1.cols + '%') ;
    Be careful when dropping a partial duplicate index if the two indexes differ greatly in width. 
    For example, if Ix1 is a very wide index with 12 columns, and Ix2 is a narrow two-column index 
    that shares the first two columns, you may want to leave Ix2 as a faster, tighter, narrower index.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Script to find locks in Database with Date and time.

    Hi all,
    I used to have a script which i have lost now due to a recent laptop crash. This script used to find locks in the database.. along with the date and time since when it is locking the session.
    It was quite a comprehisive one. I think i found it on this forum only, but not able to find it now. Can someone please help me find one such comprehensive script.
    Currently I am using this script.. which is also good.. but does not have the date and time stamp on it. Is there something better.?
    SET LINESIZE 165
    SET PAGESIZE 66
    COLUMN oracle_user     FORMAT a15      HEADING 'Oracle User'
    COLUMN usercode        FORMAT a12      HEADING 'SID/Serial#'
    COLUMN os_user         FORMAT a10      HEADING 'O/S User'
    COLUMN program         FORMAT a25      HEADING 'Program'
    COLUMN mode_held       FORMAT a15      HEADING 'Mode Held'
    COLUMN mode_requested  FORMAT a15      HEADING 'Mode Requested'
    COLUMN lock_type       FORMAT a15      HEADING 'Lock Type'
    COLUMN object_name     FORMAT a30      HEADING 'Object Name'
    COLUMN lock_time_min   FORMAT 999,999  HEADING 'Lock Time (min)'
    SELECT
    s.username                                 oracle_user
    +, l.sid || '/' || s.serial# usercode+
    +, s.osuser os_user+
    +, s.program program+
    +, DECODE(l.lmode,+
    +1, NULL,+
    +2, 'Row Share',+
    +3, 'Row Exclusive',+
    +4, 'Share',+
    +5, 'Share Row Exclusive',+
    +6, 'Exclusive', 'None') mode_held+
    +, DECODE(l.request,+
    +1, NULL,+
    +2, 'Row Share',+
    +3, 'Row Exclusive',+
    +4, 'Share',+
    +5, 'Share Row Exclusive',+
    +6, 'Exclusive', 'None') mode_requested+
    +, DECODE(l.type,+
    +'MR', 'Media Recovery',+
    +'RT', 'Redo Thread',+
    +'UN', 'User Name',+
    +'TX', 'Transaction',+
    +'TM', 'DML',+
    +'UL', 'PL/SQL User Lock',+
    +'DX', 'Distributed Xaction',+
    +'CF', 'Control File',+
    +'IS', 'Instance State',+
    +'FS', 'File Set',+
    +'IR', 'Instance Recovery',+
    +'ST', 'Disk Space Transaction',+
    +'TS', 'Temp Segment',+
    +'IV', 'Library Cache Invalidation',+
    +'LS', 'Log Start or Log Switch',+
    +'RW', 'Row Wait',+
    +'SQ', 'Sequence Number',+
    +'TE', 'Extend Table',+
    +'TT', 'Temp Table',+
    l.type)                                 lock_type
    +, o.owner || '.' || o.object_name+
    +|| ' - (' || o.object_type || ')' object_name+
    +, ROUND(l.ctime/60, 2) lock_time_min+
    FROM
    v$session     s
    +, v$lock l+
    +, dba_objects o+
    +, dba_tables t+
    WHERE
    l.id1            =  o.object_id
    AND s.sid            =  l.sid
    AND o.owner          =  t.owner
    AND o.object_name    =  t.table_name
    AND o.owner          <> 'SYS'
    AND l.type           =  'TM'
    ORDER BY
    +1+
    +/+

    What Brian said is true so are your sure your query was not just reporting the start time of the current transaction from v$transaction.start_time, or the start time of the session: v$session.logon_time, or perhaps the time since the last database call (v$session.last_call_et) which for an active session would be the time the current SQL statement has been running?
    HTH -- Mark D Powell --

  • Script to find if list of Apps patches exists in DB 'A' but not in DB 'B'

    Hi All,
    DB:11.1.0.7
    Oracle Apps:12.1.1
    OS:Linux 86x64 bits Red Hat
    Could anyone please share the script to find if list of patches exists in DB 'A' but not in DB 'B'
    Thanks for your time
    Regards,

    We have already answered you, not sure why you keep asking the same question!
    SELECT bug_number,creation_date from ad_bugs where bug_number in
    ('1234','5678','56783','4321','765432');
    I get the list of patches out of the above say - '1234','5678'
    Now how to get the list of patches out of the above list of 5 patches which are not in the DB 'A' .I know this could be done manually but this is just an example as there may be hundreds of patches like this in ad_bugs to extract and we cannot manually do it in excel or any other way bit through a queryRun the same query in Database B and compare it with the output of Database A. Or, simply create a database link for Database B from Database A and run this query from DB A:
    SQL> SELECT bug_number, creation_date
    from ad_bugs
    where bug_number in ('1234','5678','56783','4321','765432')
    minus
    SELECT bug_number, creation_date
    from ad_bugs@<DBlink to DB B>
    where bug_number in ('1234','5678','56783','4321','765432');Thanks,
    Hussein

  • Script to find word stacks in InDesign

    CS6, InDesign -- I've been looking for a proofing script that finds word & letter stacks and highlights items found & would be easily removed once items have been reconciled.

    While this scripting forum is a great place to get scripting help, it's also very easy to misuse it. Please bear in mind that for most (if not all) of the participants here, writing scripts is a source of income. If someone writes a particularly useful script, don't be shy to offer money (privately)! Also, please do not expect that complete scripts will be written for you (although in many cases they will be). If you are a novice scripter and show an interest in learning, you will generally find that the help you recieve will be much more positive.
    Here's a short list of "Dos" and "Don'ts" to keep in mind...
    Do ask for help in automating your work in InDesign, but Don't expect a full solution for free.
    Do show an interest in learning, and people will probably try to help you, butDon't ask for other people to solve all your problems for you.
    If you need a script written for you, Do ask if someone is available to write one for pay, but Don't keep such an issue on the forum. Work it out off the forum please.
    Please Do thank others who spend the  time to solve your issues, and pleaseDon't expect every issue to be solved on a public forum. Many solutions have  taken a lot of programming time to work out, and it's not reasonable to  expect such solutions to be given away for free.
    Please Do give code examples to help other people, but please Don't pass off others code as you own!
    Please Do make a note in the topic of a new thread of what language you are using as well as the version number that you are using such as: [JS][CS3].
    Please Don't branch off a discussion in the middle to a new topic -- please start a new one!
    Please Don't start two discussions on one topic -- it makes it very confusing!

Maybe you are looking for

  • Report containing 15 sub reports crashing - Crystal Reports 2008

    I am using Crystal report 2008 with all latest service packs applied. I have more then 20 different reports wich work absolutely fine and never crash. One of my report contains 15 sub reports since its bringing data from 15 different queries. This co

  • HT204407 Need help with the Find Friends ap

    My daughter uses the same apple ID that I do and I'm trying to follow her with the Find Friends ap. I've installed it on her phone and requested her as a friend from my phone.  When I installed it on her phone it is basically using the same Apple acc

  • Hands free in a Honda

    My old motorola V547 worked perfectly with my Honda hands free but I see that, like me, others have had problems getting their 6230i to stay linked up permanently. I can pair and connect and even make a hands free call ! BUT if the car or the phone i

  • RAR terminal commands for dummies.

    Hello all, I'm hoping to get a terminal user here that has experience with RAR. There is a version available for download here.http://www.rarsoft.com/rar/rarosx-3.6.b6.tar.gz The command line is much more powerful and useful than any application made

  • Draytek 2750n

    Hi, I've searched the forums and found a few threads on this modem/router. However a lot of the posts seem to be historic and some of the threads never seemed to come to a conclusion. Every time I'm almost ready to hit "Buy" I read one review that sa