MS Access SQL Command Automatic Update

Does anyone know the SQL command for automaticlly incrementing a number in Microsoft Access?
I'm writing a program in Java and I have these 3 fields of ID, name and address, and I want the ID to be automicattly incremented each time a name and address is added.

If you have a table like this.
customer_table: id_column, name_column
Then you do an insert like the following
insert into customer_table(name_column) values('xxx')
After that the id_column will have a value in it. For the next insert the id_column will have a different incremented value.

Similar Messages

  • The PL/SQL command (select/update) was hanged for long time

    We have a proc program to access a 160 rows table (F_TRDATA), however, it always hanged for a long time, then it was retarted by our defence process.
    (1)Table structure:
    SQL> desc F_TRDATA;
    Name Null? Type
    SCP_NBR NUMBER
    A_INDEX NUMBER
    A_BITMAP LONG
    SQL> select index_name, column_name from user_ind_columns where TABLE_NAME='F_TRDATA';
    INDEX_NAME
    COLUMN_NAME
    I_F_TRDATA
    SCP_NBR
    I_F_TRDATA
    A_INDEX
    (2)Use DBLINK between two different machines:
    LONG rtc;
    char f_tabname[100];
    EXEC SQL BEGIN DECLARE SECTION;
    char srvname[100];
    char dblink_name[100];
    EXEC SQL END DECLARE SECTION;
    sprintf(srvname,"%s",(const char*)STRING(INOBJECT::srvname).ToUpper());
    EXEC SQL SELECT DB_LINK INTO :dblink_name FROM ALL_DB_LINKS WHERE OWNER=:srvname;
         db.setLastSqlCode(sqlca.sqlcode);
         if (sqlca.sqlcode!=0)
              TRACE("SELECT DB_LINK error "<<sqlca.sqlerrm.sqlerrmc)
              return VAL_ERROR;
         else
              TRACE("SELECT DB_LINK OK");
    sprintf(f_tabname,"F_%s@%s",(const char*)STRING(parent->getClassName()),(const char*)STRING(dblink_name));
    TRACE_SHOW(f_tabname);
    rtc=get_free_ri(f_tabname);
    EXEC SQL COMMIT;
    (3)get_free_ri ():
    memset(s_ln,0,800);
    sprintf(s_ln,"SELECT A_BITMAP FROM %s WHERE A_INDEX=:a AND SCP_NBR=:b \
              FOR UPDATE OF A_BITMAP",tab);
    EXEC SQL PREPARE S FROM :s_ln;
    if (sqlca.sqlcode)
    {TRACE(""<<s_ln);
    TRACE(""<<sqlca.sqlerrm.sqlerrmc);
    EXEC SQL DECLARE C_FREE_RI CURSOR FOR S;
    if (sqlca.sqlcode) {TRACE("DECLARE C_FREE_RI : "<<sqlca.sqlerrm.sqlerrmc)};
    memset(s_ln,0,800);
    sprintf(s_ln,"UPDATE %s SET A_BITMAP=:a WHERE A_INDEX=:b AND SCP_NBR=:c",
         tab);
    EXEC SQL PREPARE S FROM :s_ln;
    EXEC SQL EXECUTE S USING :bitmap,:rand_ind,:scp;
    switch(sqlca.sqlcode)
    {case 0: /* FOUND */
    (4)Trace tools:
    select SQL_TEXT from v$sql where HASH_VALUE=(select SQL_HASH_VALUE from v$session where process=10775);
    select SQL_TEXT from v$sql where HASH_VALUE=(select PREV_HASH_VALUE from v$session where process=10775);
    select XIDUSN,object_id,locked_mode from v$locked_object where object_id =
    (select l.object_id from v$locked_object l,v$session s where s.sid=l.session_id and s.process=10775);
    select s1.SEQ#,s1.P1,s1.P1TEXT,s1.P2,s1.P2TEXT,s1.P3,s1.P3TEXT,s1.EVENT,e.PARAMETER1,e.PARAMETER2,e.PARAMETER3,s1.WAIT_TIME,s1.SECONDS_IN_WAIT,s1.STATE from
    v$session_wait s1,v$session s2,v$event_name e where s1.sid=s2.sid and  e.name=s1.EVENT and s2.process=10775;
    (5)Trace info:
    SQL> start P6-3.sql1
    SQL_TEXT                                                                                           
    SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
    OF A1."A_BITMAP"                                                                                  
    SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
    OF A1."A_BITMAP"                                                                                  
    SQL_TEXT                                                                                           
    SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
    OF A1."A_BITMAP"                                                                                  
    SELECT "A1"."A_BITMAP" FROM "F_TRDATA" "A1" WHERE "A1"."A_INDEX"=:A AND "A1"."SCP_NBR"=:B FOR UPDATE
    OF A1."A_BITMAP"                                                                                  
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
          1897 1413697536 driver id                                                                 1  
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
    #bytes                                                                    0                        
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
    SQL*Net message from client                                                                        
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
    driver id                                                                                          
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
    #bytes                                                                                             
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
                                                                              0          197725        
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
    WAITING                                                                                            
          SEQ#         P1 P1TEXT                                                                   P2  
    P2TEXT                                                                   P3                        
    P3TEXT                                                                                             
    EVENT                                                                                              
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
    SQL> spool off
    SQL> start P6-4.sql1
    SQL_TEXT                                                                                           
    UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
    UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
    UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
    SQL_TEXT                                                                                           
    UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
    UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
    UPDATE "F_TRDATA" "A1" SET "A_BITMAP" = :A WHERE "A1"."A_INDEX"=:B AND "A1"."SCP_NBR"=:C           
          SEQ# EVENT                                                                                   
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
           657 SQL*Net message from client                                                             
    driver id                                                                                          
    #bytes                                                                                             
          SEQ# EVENT                                                                                   
    PARAMETER1                                                                                         
    PARAMETER2                                                                                         
    PARAMETER3                                                        WAIT_TIME SECONDS_IN_WAIT        
    STATE                                                                                              
                                                                              0          311573        
    WAITING                                                                                            
    SQL> spool off
    (6)We found no locked sessions, and the proecess was hanged when it executed SELECT and UPDATE command. However, the system CPU traffic and I/O traffic was not high.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    up?
    up ... in the sky?
    up ... my shirt sleeve?
    up ... above the streets and houses, rainbow's flying high, everyone can see a rainbow, in the sky.... paint the whole world with a RAINBOW!
    up ... yours?

  • Sender JDBC Communication Update SQL Command Problem!

    Hi all,
    I am trying to do a SENDER JDBC Scenario in XI.
    I fetch the Records from the table Once per day based on the Current Date.
    I do not have any Update Credentials in the table.
    I can only perform Select Querry.
    But when i am trying to configure the SENDER JDBC Channel its asking me to enter value for Update SQL Command in Sender JDBC communication channel Process Parameters.
    Its not accepting BLANK or ' * '  Values.
    But i have only Select Querry credentials in the table. I can only pick the values cant Update the tables but.
    In the Above scenario how can i configure the Sender JDBC CC without Updating the Table after fetching the value?
    Please Advice
    Regards,
    Senthilprakash.

    Hi,
    Specify the Update SQL Statement value as .
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Thanks
    SaNv...
    Edited by: Sãnthosh Kûmãr  V on Oct 8, 2008 10:44 AM
    Edited by: Sãnthosh Kûmãr  V on Oct 8, 2008 10:45 AM

  • This morning after an automatic update, I could not access my email on the phone at all. I rebooted.  I checked settings.  No mail app will open.  what kind of update was that?

    There was an automatic update to my ios on my phone whjen I checked it this morning.  I hit "download" and it did.  Since then , all my email accounts which I have been accessing with no problem are not accessible on my phone.  I cna;t even open the phone app in settings - nothing.
    I hit reset after tring several fixes, but that didn't make a difference.
    What's up?

    First, try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose data, but it can clear some glitches after installing new software or apps.
    If this does not help, set it up as new device, explained here:
    How to back up your data and set up as a new device

  • Since my windows 8 has automatically updated, I am unable to access itunes store. It comes up blank, and sometimes my downloads say 'the network connection was reset'. Any ideas?

    I have checked servers and ports, done the winsock bit (only bonjour shows), have checked my antivirus, everything. But still I can't sort it and it's frustrating me, as it picks and chooses when it downloads apps and songs I have recently purchased too. Nothing has changed except for the windows 8 automatic updates, and it was working fine beforehand.

    Hi, SarahKilmister. 
    Thank you for visiting Apple Support Communities.
    Here are the best troubleshooting articles when experiencing issues accessing the iTunes Store.
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Cheers,
    Jason H.

  • Copying Access Queries to Query Builder instead of SQL Commands

    Is there a way to copy Microsoft Access Queries to Query Builder (saved sql) instead of SQL Commands (saved sql)...Thanks in advance.

    Hello,
    No, that functionality does not exist currently, you would need to build your own.
    If you search this forum there are a few threads which detail how you can install the Application Builder and SQL Workshop applications into the APEX environment itself so you can see how they (meaning the Oracle team) have built those apps.
    Hope this helps,
    John.
    http://jes.blogs.shellprompt.net
    http://apex-evangelists.com

  • Can't connect to my sql server express 14 database following an automatic update on my pc [Closed]

    hi
    following an automatic update a few minutes ago that resulted in a pc re-start, i cannot connect to my database anymore.
    is there any solution to overcome this issue?
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
    ps: i never got server or instance related error before the update
    Cheers

    in case it might help, i've finally found the solution:
    -enable/start sql server browser from sql server configuration manager
    -update status to "enabled" for all protocol names in my instance 

  • Reader will not read my pdf files. after an automatic update the pdf files are not accessable.

    adobe automatic update to XI caused the reader of my pdf files to stop working. The reader tries to open -- the adobe reader window opens for a few seconds, nothing in the window is activated -- then the window automatically closes.
    I have uninstalled and reinstalled previous versions that used to work but the reader 9 and X now do the same thing. open, unactivated window after a few seconds the program then shuts down.
    I cannot open and read any pdf file on this computer.
    There are no error messages and everything seems normal. The program does not work properly.
    I have ran the windows diagnostic tools to no avail.
    This computer operates windows 7

    See if you can open the EULA.exe file in the folder that contains the install of Reader or Acrobat.

  • Access to Previously-saved SQL in SQL Commands Window

    Hi all,
    If I've saved some SQL in the SQL Commands window, shouldn't that be available to other developers when they click on the Saved SQL tab? I saved a sample query and one of my other developers doesn't see it. I don't see any setting available in the developer account that controls whether or not the account can see others' saved SQL.
    If this isn't allowed, then I don't really see the point of the Owner drop-down in the Saved SQL tab.
    Any advice?
    Thanks!!
    John

    Hi Sc0tt,
    I think you may be referring to the Schema drop-down that appears in the upper-right area in SQL Commands, Object Browser, etc. That isn't the drop-down I'm referring to. I'm referring to the Owner drop-down that appears in the lower-half of the SQL Commands window then you click the Saved SQL link. I understand that to be the ApEx developer who saved the SQL - nothing to do with database schemas.
    I saved some SQL using the Save button assuming I could tell my other developers that if they click Saved SQL they'd see it listed. They don't, and the only choices in the Owner drop-down for any of us are "-- All Users --" or our own user. I don't see any setting I can change for our accounts to allow/prevent seeing others' Saved SQL, so either it's a bug, or if it's intentional that a user can only bring back their own saved SQL then there doesn't appear to be any point in having an Owner drop-down.
    Thanks,
    John

  • Security context issue when executing a SQL command in SQLCMD

    Simplified core issue below:
    I have myscript.sql that has:
    SELECT name FROM Sys.Databases
    GO
    USE mydatabase
    GO
    EXEC mystoredprocedure 'myparameter'
    GO
    When I open cmd.exe and use:
    SQLCMD -S localhost\myinstance -i script.sql
    It executes fine.
    When I open cmd.exe in C# using the Process class and execute the same command I get the following error:
    name
    master
    tempdb
    model
    msdb
    mydatabase
    (5 rows affected)
    Msg 916, Level 14, State 1, Server localhost\myinstance, Line 1
    The server principal "NT AUTHORITY\SYSTEM" is not able to access the database "mydatabase" under the current security context.
    Msg 2812, Level 16, State 62, Server localhost\myinstance, Line 1
    Could not find stored procedure 'mystoredprocedure'.
    And now the detailed explaination:
    I created an MSI which installs my custom application.
    During the bootstrap process, SQL Server 2012 Express is installed using the following parameters:
    /INSTANCEID="SQLEXPRESS"
    /ACTION="Install"
    /FEATURES=SQLEngine,Replication
    /HELP="False"
    /INDICATEPROGRESS="False"
    /Q="True"
    /QS="False"
    /ROLE="AllFeatures_WithDefaults"
    /ENU="True"
    /ERRORREPORTING="False"
    /SQMREPORTING=0
    /INSTANCENAME="SQLEXPRESS"
    /AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /AGTSVCSTARTUPTYPE="Disabled"
    /ISSVCSTARTUPTYPE="Automatic"
    /ISSVCACCOUNT="NT AUTHORITY\NetworkService"
    /ASSVCSTARTUPTYPE="Automatic"
    /ASCOLLATION="Latin1_General_CI_AS"
    /ASDATADIR="Data"
    /ASBACKUPDIR="Backup"
    /ASTEMPDIR="Temp"
    /ASCONFIGDIR="Config"
    /ASPROVIDERMSOLAP="1"
    /SQLSVCSTARTUPTYPE="Automatic"
    /FILESTREAMLEVEL="0"
    /ENABLERANU="True"
    /SQLCOLLATION="SQL_Latin1_General_CP1_CI_AS"
    /SQLSVCACCOUNT="NT Authority\Network Service"
    /SECURITYMODE="SQL"
    /ADDCURRENTUSERASSQLADMIN="True"
    /RSSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
    /RSSVCSTARTUPTYPE="Automatic"
    /RSINSTALLMODE="FilesOnlyMode"
    /HIDECONSOLE
    /IACCEPTSQLSERVERLICENSETERMS
    /SAPWD="***************"
    The MSI then executes an Installer class DLL written in C# which restores a database to the SqlExpress instance.
    When the restore is completed, the Installer class then uses the Process class to launch CMD.exe and execute the SQL script using SQLCMD.
    Process vProcess = new Process();
    ProcessStartInfo vStartInfo = new ProcessStartInfo("cmd.exe");
    vStartInfo.Arguments = "/c set path=%path%;" + Context.Parameters["TargetDir"] + "\\; && sqlcmd -S LocalHost\\myinstance -i myscript.sql";
    vProcess.StartInfo = vStartInfo;
    vProcess.Start();
    vProcess.WaitForExit(30000);
    This is where I get the error mentioned above.
    However if I execute the same command manually by opening CMD.exe from the RUN command, it executes perfectly.
    I can not use -U or -P to supply a user / password, I MUST use integrated security.
    Additional info:
    Previously SQL Server 2008 Express has been in use for the bootstrapper, and this issue did not occur.
    The database the MSI restores is also built from SQL Server 2008. (Will be built from 2012 in the future.)
    Installation is performed on an account with administrative rights.
    Running the installer AS Administrator does not fix the issue.
    Any help would be greatly appreciated, as well please let me know if additional info is required.
    Thank you

    I'm having a similar issue where I'm using a batch file to execute commands to a group of servers. I can use the batch commands when updating MyDatabase but get the security context error when I try to update MyDatabase with a join to TheirDatabase except
    on servers where I am sysadmin.   Like I said, I can update MyDatabase as long as I don't join to TheirDatabase.
    Update A
    Set A.CCMCoderStaffSID = IsNull(B.StaffSID, -1)
    From MyDatabase.[R_Encounter].[VejdPfcsLinkageDataF19610x5] A
    Left Join ThierDatabase.Staff.Staff B on
    A.Sta3n = B.Sta3n and A.[CCMCoderF200IEN]= B.StaffIEN
    Error:
    Msg 916, Level 14, State 1, Server R04PHIDWH58, Line 1
    The server principal "MyDomain\ME" is not able to access the database "TheirDatabase" under the current security context.
    Line from batch:
    sqlcmd -S Server54 -d MyDatabase -i D:\ETLDevelopment\R04\Me\querytools\%RAWTablesScript%  -o D:\ETLDevelopment\R04\Me\UpdateSIDV1.txt

  • Applescript to automatically update the EyeTV DVB EPG program guide

    For EyeTV users in Europe and Australia with DVB EPG access, you will all know that EyeTV will not keep that database automatically updated.
    So I wrote this bit of Applescript will update EyeTV's free to air DVB EPG database.
    Paste it into the ApplesScript Editor, and save it as an application somewhere like in Applications.  On first run you will get a dialog saying it need access to Accessibility.  Navigate to System Preferences > Security and Privacy > Accessibility and you will see your app listed there.  Enter your password, click the checkbox, and then try again.  It should then work fine.
    To automate the launching of the script, set it to run at at daily a convenient time using either Lingon (or some similar launch agent configuration utility), or using iCal as per this tip: http://www.maclife.com/article/howtos/how_make_your_ical_alarm_perform_action
    Running it daily (or as often as you like) will keep your EyeTV EPG database up to date always.  No more missed recordings because the EPG was not up to date!  Yay!
    This is the basic script, I'm sure it can be better.:
    tell application "EyeTV"
              activate
    end tell
    tell application "System Events"
              tell process "EyeTV"
                        keystroke "g" using command down
                        delay 1
                        click (pop up button 1 of window 1)
                        delay 1
                        click menu item "Update DVB Program Guide" of menu 1 of pop up button 1 of window "EyeTV Programs"
              end tell
    end tell
    Cheers
    Chris.

    Good morning Frank
    OK....
    I too have the same issue (didn't notice it at first).  Having wasted several hours, I found no way around it.
    But there are tools like clicclick that can click anywhere on the mac screen.  So... get it from here:
    http://www.bluem.net/en/mac/cliclick   (big thank you to Carsten Blüm)  :-)
    install as recommended (I put it in usr/bin/ as I had no usr/local/bin).  Check it works via the terminal by pastingcliclick c:28,11 into terminal and pressing return.  If that opens the apple menu, then it is installed and working.
    Then try this script, which first puts the EyeTV window to a specific location on the screen, then instead of using UI scripting to click the silly pop up button 1, uses clicclick to clik at the location of the button.  This opens the menu, and then UI scripting can click it.  You may want to change the EyeTV window location from the value I chose, if so put it into your prefered position then use the Accessibility Inspector to get the location of the button, then add some pixels either side of that.
    For me this now works perfectly every time, I hope it will for you.  Annoying to have to install clicclick but there you go. 
    tell application "EyeTV"
      activate
      set the position of window 1 to {30, 60}
    end tell
    tell application "System Events"
      tell application process "EyeTV"
      keystroke "g" using command down
      delay 4
      do shell script "cliclick c:170,70"
      delay 1
      click menu item "Update DVB Program Guide" of menu 1 of pop up button 1 of window "EyeTV Programs"
      end tell
    end tell
    I have found that the delay after the keystroke g is essential otherwise I get an invalid index error, I think because it is not ready to accept the click.  You may need to change the delay.
    Also when using Lingon to launch the Applescript App, the path needs to be to the applet file inside the contents of it.  ie something like mydirectory/myappname.app/contents/MacOS/applet.  name your app without spaces.
    cheers
    Chris

  • Cannot change SQL command text in Data Flow Task

    I have an SSIS package that extracts data from Teradata into a SQL Server DB.
    I'm using SQL Server 2008 R2 EE x64, and Visual Studio 2008 PE (BIDS) supplied with it, accessing Teradata v13.
    In the Integration Services project, I have a Data Flow Task, it has an ADO .net source which has Data access mode set to “SQL Command”.
    This worked for a while when I initially entered a SQL statement to select data.
    But, when I change the existing SQL Command text and save the package, the changes are lost.
    It keeps going back to the original SQL Statement.
    It is currently “select col1, col2, … col10 from view1”.
    When I change it to anything else, like “select col5 from view1”, and save, and then double click the ADO NET source again, I find that the SQL command text is still the old one. It goes back to the previous statement.
    I’ve tried other statements like “exec macro” for Teradata, etc. but the same thing keeps happening - changes are not saved.
    Does anyone have any ideas on this, or have you seen this before?

    This is odd, but seems to be a component metadata corruption; so why don't you:
    delete the teradata connector and source component, then re add them back, see if it now accepts the new SQL statement, if this does not work
    abandon this package and create a new one replicating the functionality incorporating the new SQL.
    In case #1 and 2 both fail post here any errors observed and find out whether you are missing any updates to either Teradata provider or SQL Server
    Arthur My Blog

  • Crystal Reports XI does not allow to change Table to SQL command?

    I have report that has Table in Datasource and this table used in report and all fileds are mapped. I need to change table to SQL Command with the same result set of collumns. When I try to Update in Set Datasource Location - it does not work. CR XI allow to update Command to table but Table to Command just do nothing.
    What I have to do or how I can do it?

    Alexander,
    That's probably the "Best" way to do it, and long term you'll want to start adding BOE to your work flow.
    If you want to get around it, here how:
    1) MAKE A COPY OF YOUR REPORT AND WORK FROM THE COPY!!! This involves some a good deal of destruction before you get into reconstruction.
    2) Once you have created your command, remove the table.
    3) Now the fun part... Go through report and manually change all references to the 1st table...
       report fields
       formulas
       selection criteria
       groups
       the whole 9 yards...
    A short cut for the future... If you make all of your formula copies of all of your fields ( fCustomerName = {Table.CustomerName} ) and then only use the formula version of the field in the reports, you can make these changes very easily. (All you have to do is update the one set of formulas.)
    Also as a side note before you get started... You may want to think twice before you mix commands with tables. You loose the server side filtering and grouping on the tables when you do that.  So if you have several tables, you are better off doing the whole thing in one SQL command, do all of your filtering and sorting there and use it to replace ALL of your tables.
    Basically, Graham's way is the easy way... Assuming you have access to the BOE.
    Jason

  • Code block works in SQL Command Processor but not in application

    Hello forum,
    Been struggling with this for a few days without success:
    I have a form with a popup LOV called P6_POPUP, a file browse item called P6_BROWSE, a SUBMIT button, and a Process with the following code:
    declare
    q_image_id number;
    begin
    select host_family_photos_seq.nextval into q_image_id from dual;
    insert into host_family_photos (image_id, file_object_id, image_name)
    select q_image_id, id, filename
    from htmldb_application_files where filename = :P6_BROWSE;
    update host_family set image_id = q_image_id where family_name = :P6_POPUP;
    end;
    The Process Point is set to On Submit after Computations and Validations and When Button Pressed is set to the Submit button.
    When I run the page the file is imported into HTMLDB_APPLICATION_FILES
    but the insert and update do not occur.
    The URL header after submitting is as follows:
    http://127.0.0.1:8080/apex/f?p=115:1:480837828458787::NO:::&success_msg=Photo%20Imported%2FB87C5A54684B0DF005D09D0DFE6E98D6%2F
    However if I run the above code in the APEX SQL Command window and supply the required variables it works every time - most confusing.
    Not sure what to try from here.
    thanks for your time,
    Brett

    Scott:
    I always thought that the File Browse item maps to the NAME column in the view (below) and that is guaranteed to be unique. The NAME column seems to have a system-generated "F1234" id embedded in it (to guarantee uniqueness, I thought).
    In other words, when we put a File Browse item on the page, submitting the page uploads the file into the HTMLDB_APPLICATION_FILES table and the way to access that record (to copy/move it into our own custom table) is by doing
    from htmldb_application_files
    where name = :P1_BROWSEThanks
    SQL> desc htmldb_application_files
    Name                                      Null?    Type
    ID                                        NOT NULL NUMBER
    FLOW_ID                                   NOT NULL NUMBER
    NAME                                      NOT NULL VARCHAR2(90)
    FILENAME                                           VARCHAR2(400)
    TITLE                                              VARCHAR2(255)
    MIME_TYPE                                          VARCHAR2(48)
    DOC_SIZE                                           NUMBER
    DAD_CHARSET                                        VARCHAR2(128)
    CREATED_BY                                         VARCHAR2(255)
    CREATED_ON                                         DATE
    UPDATED_BY                                         VARCHAR2(255)
    UPDATED_ON                                         DATE
    LAST_UPDATED                                       DATE
    CONTENT_TYPE                                       VARCHAR2(128)
    BLOB_CONTENT                                       BLOB
    LANGUAGE                                           VARCHAR2(30)
    DESCRIPTION                                        VARCHAR2(4000)
    FILE_TYPE                                          VARCHAR2(255)
    FILE_CHARSET                                       VARCHAR2(128)

  • Automatic update from 10.0.0 to 10.0.1 ends with error 1603

    - System: Windows XP Professional SP3
    - "Automatically install updates" is set
    - logged in as local administrator
    - the update download works, the installation ends with error 1603 ("fatal installation error" or something, in German)
    - about 80 machines here, all failing
    What's wrong with the update?

    - The installation of 10.0.0 went by ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.0.0/de_DE/AdbeRdr1000_de_DE.exe.
    - What does AIP mean in this case?
    - The drive is C:, no substituted drive or encrypted disk.
    - The name of the drive is System.
    - The language is German.
    - The latest MSI....log:
    Fehler 1321. Installer besitzt keine ausreichenden Berechtigungen, um diese Datei zu verändern: C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\WindowsMedia.mpp.
    Property(S): Text = 0
    Property(S): DiskPrompt = [1]
    Property(S): Registration = No
    Property(S): UpgradeCode = {A6EADE66-0000-0000-484E-7E8A45000000}
    Property(S): RedirectedDllSupport = 2
    Property(S): MsiWin32AssemblySupport = 5.1.2600.5512
    Property(S): MsiNetAssemblySupport = 2.0.50727.3053
    Property(S): Date = 15.2.2011
    Property(S): Time = 09:54:42
    Property(S): Installed = 2010/11/10 13:59:40
    Property(S): TTCSupport = 1
    Property(S): ColorBits = 32
    Property(S): TextHeight = 16
    Property(S): BorderSide = 1
    Property(S): BorderTop = 1
    Property(S): CaptionHeight = 26
    Property(S): ScreenY = 1024
    Property(S): ScreenX = 1280
    Property(S): SystemLanguageID = 1031
    Property(S): ComputerName = OBST
    Property(S): UserLanguageID = 1031
    Property(S): UserSID = S-1-5-21-527237240-1563985344-725345543-500
    Property(S): LogonUser = Administrator
    Property(S): AdminUser = 1
    Property(S): VirtualMemory = 7740
    Property(S): PhysicalMemory = 1984
    Property(S): Intel = 15
    Property(S): ShellAdvtSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): GPTSupport = 1
    Property(S): RecentFolder = C:\Dokumente und Einstellungen\Administrator\Recent\
    Property(S): PrintHoodFolder = C:\Dokumente und Einstellungen\Administrator\Druckumgebung\
    Property(S): NetHoodFolder = C:\Dokumente und Einstellungen\Administrator\Netzwerkumgebung\
    Property(S): ROOTDRIVE = D:\
    Property(S): IS_CURRENT_PDFOWNER = 1
    Property(S): RemoteAdminTS = 1
    Property(S): MsiNTProductType = 1
    Property(S): ServicePackLevelMinor = 0
    Property(S): ServicePackLevel = 3
    Property(S): WindowsBuild = 2600
    Property(S): ISSETUPFILESCOMPLETED = Completed
    Property(S): SUPPORTDIR = C:\DOKUME~1\ADMINI~1\LOKALE~1\Temp\{AC76BA86-7AD7-1031-7B44-AA0000000001}
    Property(S): VersionMsi = 3.01
    Property(S): ACTION = INSTALL
    Property(S): VersionNT = 501
    Property(S): LockRegPermissions = CLASSES_ROOT\AcroIEHelper.AcroIEHlprObj@@1@@131097@@CLASSES_ROOT\AcroIEHelper.AcroIEHlprO bj@@22@@983103@@CLASSES_ROOT\AcroIEHelper.AcroIEHlprObj@@26@@131097@@CLASSES_ROOT\AcroIEHe lper.AcroIEHlprObj.1@@1@@131097@@CLASSES_ROOT\AcroIEHelper.AcroIEHlprObj.1@@22@@983103@@CL ASSES_ROOT\AcroIEHelper.AcroIEHlprObj.1@@26@@131097@@CLASSES_ROOT\AcroPDF.FDF@@1@@131097@@ CLASSES_ROOT\AcroPDF.FDF@@22@@983103@@CLASSES_ROOT\AcroPDF.FDF@@26@@131097@@CLASSES_ROOT\A croPDF.FDF.1@@1@@131097@@CLASSES_ROOT\AcroPDF.FDF.1@@22@@983103@@CLASSES_ROOT\AcroPDF.FDF. 1@@26@@131097@@CLASSES_ROOT\AcroPDF.PDF@@1@@131097@@CLASSES_ROOT\AcroPDF.PDF@@22@@983103@@ CLASSES_ROOT\AcroPDF.PDF@@26@@131097@@CLASSES_ROOT\AcroPDF.PDF.1@@1@@131097@@CLASSES_ROOT\ AcroPDF.PDF.1@@22@@983103@@CLASSES_ROOT\AcroPDF.PDF.1@@26@@131097@@CLASSES_ROOT\AppID\{BBA A0E44-3862-490C-8E63-AC2D2D6EF733}@@1@@131097@@CLASSES_ROOT\AppID\{BBAA0E44-3862-490C-8E63 -AC2D2D6EF733}@@22@@983103@@CLASSES_ROOT\AppID\{BBAA0E44-3862-490C-8E63-AC2D2D6EF733}@@26@ @131097@@CLASSES_ROOT\AppID\AcroPDF.DLL@@1@@131097@@CLASSES_ROOT\AppID\AcroPDF.DLL@@22@@98 3103@@CLASSES_ROOT\AppID\AcroPDF.DLL@@26@@131097@@CLASSES_ROOT\CLSID\{06849E9F-C8D7-4D59-B 87D-784B7D6BE0B3}@@1@@131097@@CLASSES_ROOT\CLSID\{06849E9F-C8D7-4D59-B87D-784B7D6BE0B3}@@2 2@@983103@@CLASSES_ROOT\CLSID\{06849E9F-C8D7-4D59-B87D-784B7D6BE0B3}@@26@@131097@@CLASSES_ ROOT\CLSID\{5BB2200E-5672-4A32-902A-5A98DB1C58DC}@@1@@131097@@CLASSES_ROOT\CLSID\{5BB2200E -5672-4A32-902A-5A98DB1C58DC}@@22@@983103@@CLASSES_ROOT\CLSID\{5BB2200E-5672-4A32-902A-5A9 8DB1C58DC}@@26@@131097@@CLASSES_ROOT\CLSID\{CA8A9780-280D-11CF-A24D-444553540000}@@1@@1310 97@@CLASSES_ROOT\CLSID\{CA8A9780-280D-11CF-A24D-444553540000}@@22@@983103@@CLASSES_ROOT\CL SID\{CA8A9780-280D-11CF-A24D-444553540000}@@26@@131097@@CLASSES_ROOT\CLSID\{EE5A151A-AD2A- 4CEE-AD65-228B59F5B4AD}@@1@@131097@@CLASSES_ROOT\CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4 AD}@@22@@983103@@CLASSES_ROOT\CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@26@@131097@@CL ASSES_ROOT\Interface\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@1@@131097@@CLASSES_ROOT\Inter face\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@22@@983103@@CLASSES_ROOT\Interface\{3B813CE7- 7C10-4F84-AD06-9DF76D97A9AA}@@26@@131097@@CLASSES_ROOT\Interface\{6E67BCC1-D776-44BB-9DC8- C09F542C3CB6}@@1@@131097@@CLASSES_ROOT\Interface\{6E67BCC1-D776-44BB-9DC8-C09F542C3CB6}@@2 2@@983103@@CLASSES_ROOT\Interface\{6E67BCC1-D776-44BB-9DC8-C09F542C3CB6}@@26@@131097@@CLAS SES_ROOT\Interface\{E790E1D1-9DE8-4853-8AC6-933D4FD9C927}@@1@@131097@@CLASSES_ROOT\Interfa ce\{E790E1D1-9DE8-4853-8AC6-933D4FD9C927}@@22@@983103@@CLASSES_ROOT\Interface\{E790E1D1-9D E8-4853-8AC6-933D4FD9C927}@@26@@131097@@CLASSES_ROOT\Interface\{EE5A151A-AD2A-4CEE-AD65-22 8B59F5B4AD}@@1@@131097@@CLASSES_ROOT\Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@22@ @983103@@CLASSES_ROOT\Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@26@@131097@@CLASSE S_ROOT\TypeLib\{05BFD3F1-6319-4F30-B752-C7A22889BCC4}@@1@@131097@@CLASSES_ROOT\TypeLib\{05 BFD3F1-6319-4F30-B752-C7A22889BCC4}@@22@@983103@@CLASSES_ROOT\TypeLib\{05BFD3F1-6319-4F30- B752-C7A22889BCC4}@@26@@131097@@CLASSES_ROOT\TypeLib\{5F226421-415D-408D-9A09-0DCD94E25B48 }@@1@@131097@@CLASSES_ROOT\TypeLib\{5F226421-415D-408D-9A09-0DCD94E25B48}@@22@@983103@@CLA SSES_ROOT\TypeLib\{5F226421-415D-408D-9A09-0DCD94E25B48}@@26@@131097
    Property(S): DefragmentFiles = IMM_SUCCESS;C:\Programme\Adobe\Reader 10.0\;Software\Adobe\Acrobat Reader\;2;Leistung wird optimiert...;[1]% des Vorgangs abgeschlossen;HINWEIS: Die Installation wurde erfolgreich abgeschlossen. Da Ihre Festplatte jedoch fragmentiert ist, kann das Programm eventuell nicht so schnell wie normalerweise möglich starten. Zur Optimierung der Systemleistung sollten Sie die Festplatte defragmentieren und anschließend das Programm in der Systemsteuerung unter "Software" reparieren.
    ;|rdr|\ace.dll;|rdr|\acrord32.dll;|rdr|\acrord32.exe;|rdr|\agm.dll;|rdr|\bib.dll;|rdr|\coo ltype.dll;|rdr|\plug_ins\accessibility.api;|rdr|\plug_ins\acroform.api;|rdr|\plug_ins\anno ts.api;|rdr|\plug_ins\checkers.api;|rdr|\plug_ins\digsig.api;|rdr|\plug_ins\escript.api;|r dr|\plug_ins\ia32.api;|rdr|\plug_ins\makeaccessible.api;|rdr|\plug_ins\multimedia.api;|rdr |\plug_ins\pddom.api;|rdr|\plug_ins\ppklite.api;|rdr|\plug_ins\ReadOutLoud.api;|rdr|\plug_ ins\reflow.api;|rdr|\plug_ins\saveasrtf.api;|rdr|\plug_ins\search.api;|rdr|\plug_ins\sendm ail.api;|rdr|\plug_ins\spelling.api;|rdr|\plug_ins\updater.api;|rdr|\plug_ins\eBook.api;|r dr|\plug_ins\weblink.api;|rdr|\plug_ins\dva.api;35029023
    Property(S): FileTypesOwnerRestore = AcroExch.FDFDoc@@0@@PDF@@AcroExch.XFDFDoc@@0@@PDF@@AcroExch.XDPDoc@@0@@PDF@@AcroExch.SecS tore@@0@@PDF@@AcroExch.Document.7@@0@@PDF@@AcroExch.Document@@0@@PDF@@.pdf@@0@@PDF@@.secst ore@@0@@PDF@@AcroAccess.AcrobatAccess@@0@@PDF@@AcroExch.Profile@@0@@PDF@@AcroExch.RMFFile@ @0@@PDF@@AcroIEHelper.AcroIEHlprObj@@0@@PDF@@AcroPDF.PDF@@0@@PDF@@AFormAut.App@@0@@PDF@@Ap pID\{6236FF8C-E747-4173-86D3-99F511B61DF3}@@0@@PDF@@AppID\{BBAA0E44-3862-490C-8E63-AC2D2D6 EF733}@@0@@PDF@@AppID\AcroPDF.DLL@@0@@PDF@@AppID\PDFPrevHndlr.DLL@@0@@PDF@@CLSID\{06849E9F -C8D7-4D59-B87D-784B7D6BE0B3}@@0@@PDF@@CLSID\{12BA069D-0FC6-4577-97C6-5DF634CE6E84}@@0@@PD F@@CLSID\{17F2E344-8227-4AA7-A25A-E89424566BBA}@@0@@PDF@@CLSID\{49400A7C-81A8-4F52-8CCE-D5 4739EE87EC}@@0@@PDF@@CLSID\{5BB2200E-5672-4A32-902A-5A98DB1C58DC}@@0@@PDF@@CLSID\{7CD069A1 -50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@CLSID\{98D9A6F1-4696-4B5E-A2E8-36B3F9C1E12C}@@0@@PD F@@CLSID\{B801CA65-A1FC-11D0-85AD-444553540000}@@0@@PDF@@CLSID\{BD57A9B2-4E7D-4892-9107-9F 4106472DA4}@@0@@PDF@@CLSID\{C523F39F-9C83-11D3-9094-00104BD0D535}@@0@@PDF@@CLSID\{CA8A9780 -280D-11CF-A24D-444553540000}@@0@@PDF@@CLSID\{D38406DA-E8AA-484b-B80D-3D3DBDCC2FB2}@@0@@PD F@@CLSID\{DC6EFB56-9CFA-464D-8880-44885D7DC193}@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FD FDFDFDFDFD}\AutoTreatAs@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FDFDFDFDFDFD}\TreatAs@@0@@ PDF@@CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PDF@@Interface\{17F2E344-8227-4AA7-A 25A-E89424566BBA}@@0@@PDF@@Interface\{36DE898D-AD48-40A5-B4B2-123F916BFBAB}@@0@@PDF@@Inter face\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@0@@PDF@@Interface\{4A894040-247E-4AFF-BB08-34 89E9905235}@@0@@PDF@@Interface\{5007373A-20D7-458F-9FFB-ABC900E3A831}@@0@@PDF@@Interface\{ 618736E0-3C3D-11CF-810C-00AA00389B71}@@0@@PDF@@Interface\{673E8452-7646-11D1-B90B-00A0C925 9304}@@0@@PDF@@Interface\{7CD069A0-50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@Interface\{81F9B4 4F-BA3A-4F5D-9B51-090C74A9B3A4}@@0@@PDF@@Interface\{8D46C1B6-BBAB-450D-A61F-4DDC898B21D4}@ @0@@PDF@@Interface\{9B4CD3E6-4981-101B-9CA8-9240CE2738AE}@@0@@PDF@@Interface\{E790E1D1-9DE 8-4853-8AC6-933D4FD9C927}@@0@@PDF@@Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PD F@@Interface\{F9F2FE81-F764-4BD0-AFA5-5DE841DDB625}@@0@@PDF@@MIME\Database\Content Type\application/pdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xdp+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfd+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.fdf@@0@@PDF@@PDFPrevHndlr.PDFPreviewHandler@@0@@PDF@@PDFPrevHndlr.PD FPreviewHandler.1@@0@@PDF@@SOFTWARE\Classes\AcroBroker.Broker@@2@@PDF@@SOFTWARE\Classes\Ac roBroker.Broker.1\CLSID@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker\CLSID@@2@@PDF@@SOFTWAR E\Classes\AcroBroker.Broker\CurVer@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker1@@2@@PDF@@S OFTWARE\Classes\AppID\{F2383816-917A-46CC-AD2A-5013BED3800F}@@2@@PDF@@SOFTWARE\Classes\App ID\AcroBroker.EXE@@2@@PDF@@SOFTWARE\Classes\Interface\{D3F22039-E3CF-4FC4-9A30-426A46056B8 C}@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}@@2@@PDF@@SOFTW ARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0@@2@@PDF@@SOFTWARE\Classes\T ypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0@@2@@PDF@@SOFTWARE\Classes\TypeLib\{417 38EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0\win32@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA -442F-477F-92CF-2889BD6CD7E7}\1.0\FLAGS@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-4 77F-92CF-2889BD6CD7E7}\1.0\HELPDIR@@2@@PDF@@TypeLib\{0F6D3808-7974-4B1A-94C2-3200767EACE8} @@0@@PDF@@TypeLib\{41C5FFFE-36DD-415D-9ED0-2976A342A1C8}@@0@@PDF@@TypeLib\{E64169B3-3592-4 7d2-816E-602C5C13F328}@@0@@PDF
    Property(S): ProcessDeleteFilesEx = Leame.htm@@INSTALLDIR
    Property(S): RegisterProperties = CACHE_DIR@@C:\Programme\Adobe\Reader 10.0\Setup Files\{AC76BA86-7AD7-1031-7B44-AA0000000001}\@@ProductName@@Adobe Reader X (10.0.1) - Deutsch@@OriginalDatabase@@C:\WINDOWS\Installer\4866b7.msi@@REMOVE@@@@WindowsFolder@@C:\W INDOWS\@@SetupCacheExport@@ @@ALLUSERS@@1@@REINSTALLMODE@@omus@@PLUG_INS@@C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\@@DefragResetProgress@@No@@ALLUSERS_APPDATA_ADOBE@@C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\@@DEFAULT_VERB@@Read@@IS_CURRENT_PDFOWNER@@1@@ACTIVE_X@@C:\Pr ogramme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@Installed@@2010/11/10 13:59:40@@READER@@C:\Programme\Adobe\Reader 10.0\Reader\@@ProductCode@@{AC76BA86-7AD7-1031-7B44-AA0000000001}@@DeleteUpdateFolder@@Ye s
    Property(S): FileTypesOwnerBackup = AcroExch.FDFDoc@@0@@PDF@@AcroExch.XFDFDoc@@0@@PDF@@AcroExch.XDPDoc@@0@@PDF@@AcroExch.SecS tore@@0@@PDF@@AcroExch.Document.7@@0@@PDF@@AcroExch.Document@@0@@PDF@@.pdf@@0@@PDF@@.secst ore@@0@@PDF@@AcroAccess.AcrobatAccess@@0@@PDF@@AcroExch.Profile@@0@@PDF@@AcroExch.RMFFile@ @0@@PDF@@AcroIEHelper.AcroIEHlprObj@@0@@PDF@@AcroPDF.PDF@@0@@PDF@@AFormAut.App@@0@@PDF@@Ap pID\{6236FF8C-E747-4173-86D3-99F511B61DF3}@@0@@PDF@@AppID\{BBAA0E44-3862-490C-8E63-AC2D2D6 EF733}@@0@@PDF@@AppID\AcroPDF.DLL@@0@@PDF@@AppID\PDFPrevHndlr.DLL@@0@@PDF@@CLSID\{06849E9F -C8D7-4D59-B87D-784B7D6BE0B3}@@0@@PDF@@CLSID\{12BA069D-0FC6-4577-97C6-5DF634CE6E84}@@0@@PD F@@CLSID\{17F2E344-8227-4AA7-A25A-E89424566BBA}@@0@@PDF@@CLSID\{49400A7C-81A8-4F52-8CCE-D5 4739EE87EC}@@0@@PDF@@CLSID\{5BB2200E-5672-4A32-902A-5A98DB1C58DC}@@0@@PDF@@CLSID\{7CD069A1 -50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@CLSID\{98D9A6F1-4696-4B5E-A2E8-36B3F9C1E12C}@@0@@PD F@@CLSID\{B801CA65-A1FC-11D0-85AD-444553540000}@@0@@PDF@@CLSID\{BD57A9B2-4E7D-4892-9107-9F 4106472DA4}@@0@@PDF@@CLSID\{C523F39F-9C83-11D3-9094-00104BD0D535}@@0@@PDF@@CLSID\{CA8A9780 -280D-11CF-A24D-444553540000}@@0@@PDF@@CLSID\{D38406DA-E8AA-484b-B80D-3D3DBDCC2FB2}@@0@@PD F@@CLSID\{DC6EFB56-9CFA-464D-8880-44885D7DC193}@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FD FDFDFDFDFD}\AutoTreatAs@@0@@PDF@@CLSID\{DF9A1DA0-23C0-101B-B02E-FDFDFDFDFDFD}\TreatAs@@0@@ PDF@@CLSID\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PDF@@Interface\{17F2E344-8227-4AA7-A 25A-E89424566BBA}@@0@@PDF@@Interface\{36DE898D-AD48-40A5-B4B2-123F916BFBAB}@@0@@PDF@@Inter face\{3B813CE7-7C10-4F84-AD06-9DF76D97A9AA}@@0@@PDF@@Interface\{4A894040-247E-4AFF-BB08-34 89E9905235}@@0@@PDF@@Interface\{5007373A-20D7-458F-9FFB-ABC900E3A831}@@0@@PDF@@Interface\{ 618736E0-3C3D-11CF-810C-00AA00389B71}@@0@@PDF@@Interface\{673E8452-7646-11D1-B90B-00A0C925 9304}@@0@@PDF@@Interface\{7CD069A0-50AA-11D1-B8F0-00A0C9259304}@@0@@PDF@@Interface\{81F9B4 4F-BA3A-4F5D-9B51-090C74A9B3A4}@@0@@PDF@@Interface\{8D46C1B6-BBAB-450D-A61F-4DDC898B21D4}@ @0@@PDF@@Interface\{9B4CD3E6-4981-101B-9CA8-9240CE2738AE}@@0@@PDF@@Interface\{E790E1D1-9DE 8-4853-8AC6-933D4FD9C927}@@0@@PDF@@Interface\{EE5A151A-AD2A-4CEE-AD65-228B59F5B4AD}@@0@@PD F@@Interface\{F9F2FE81-F764-4BD0-AFA5-5DE841DDB625}@@0@@PDF@@MIME\Database\Content Type\application/pdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xdp+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfd+xml@@0@@PDF@@MIME\Database\Content Type\application/vnd.adobe.xfdf@@0@@PDF@@MIME\Database\Content Type\application/vnd.fdf@@0@@PDF@@PDFPrevHndlr.PDFPreviewHandler@@0@@PDF@@PDFPrevHndlr.PD FPreviewHandler.1@@0@@PDF@@SOFTWARE\Classes\AcroBroker.Broker@@2@@PDF@@SOFTWARE\Classes\Ac roBroker.Broker.1\CLSID@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker\CLSID@@2@@PDF@@SOFTWAR E\Classes\AcroBroker.Broker\CurVer@@2@@PDF@@SOFTWARE\Classes\AcroBroker.Broker1@@2@@PDF@@S OFTWARE\Classes\AppID\{F2383816-917A-46CC-AD2A-5013BED3800F}@@2@@PDF@@SOFTWARE\Classes\App ID\AcroBroker.EXE@@2@@PDF@@SOFTWARE\Classes\Interface\{D3F22039-E3CF-4FC4-9A30-426A46056B8 C}@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}@@2@@PDF@@SOFTW ARE\Classes\TypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0@@2@@PDF@@SOFTWARE\Classes\T ypeLib\{41738EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0@@2@@PDF@@SOFTWARE\Classes\TypeLib\{417 38EEA-442F-477F-92CF-2889BD6CD7E7}\1.0\0\win32@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA -442F-477F-92CF-2889BD6CD7E7}\1.0\FLAGS@@2@@PDF@@SOFTWARE\Classes\TypeLib\{41738EEA-442F-4 77F-92CF-2889BD6CD7E7}\1.0\HELPDIR@@2@@PDF@@TypeLib\{0F6D3808-7974-4B1A-94C2-3200767EACE8} @@0@@PDF@@TypeLib\{41C5FFFE-36DD-415D-9ED0-2976A342A1C8}@@0@@PDF@@TypeLib\{E64169B3-3592-4 7d2-816E-602C5C13F328}@@0@@PDF
    Property(S): LockFilePermissions = C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@1@@1179817@@C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@22@@2032127@@C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\@@26@@1179817@@C:\Programme\Adobe\Reader 10.0\Resource\CMap\@@1@@1179817@@C:\Programme\Adobe\Reader 10.0\Resource\CMap\@@22@@2032127@@C:\Programme\Adobe\Reader 10.0\Resource\CMap\@@26@@1179817@@C:\Programme\Adobe\Reader 10.0\Reader\Adobe.Reader.Dependencies.manifest@@1@@1179817@@C:\Programme\Adobe\Reader 10.0\Reader\Adobe.Reader.Dependencies.manifest@@22@@2032127@@C:\Programme\Adobe\Reader 10.0\Reader\Adobe.Reader.Dependencies.manifest@@26@@2032127
    Property(S): ADOBE_COMMON_ACROBAT = C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\
    Property(S): ACTIVE_X = C:\Programme\Gemeinsame Dateien\Adobe\Acrobat\ActiveX\
    Property(S): ProgramFilesFolder = C:\Programme\
    Property(S): ADOBE = C:\Programme\Adobe\
    Property(S): CommonFilesFolder = C:\Programme\Gemeinsame Dateien\
    Property(S): ADOBE_COMMON = C:\Programme\Gemeinsame Dateien\Adobe\
    Property(S): AIR = C:\Programme\Adobe\Reader 10.0\Reader\AIR\
    Property(S): READER = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): TARGETDIR = D:\
    Property(S): ALLUSERSPROFILE = C:\Dokumente und Einstellungen\All Users\
    Property(S): CommonAppDataFolder = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\
    Property(S): ALLUSERS_APPDATA_ADOBE = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT_9 = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\10.0\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT_9_REPLICATE = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\10.0\Replicate\
    Property(S): ALLUSERS_APPDATA_ADOBE_ACROBAT_9_REPLICATE_SECURITY = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\Acrobat\10.0\Replicate\Security\
    Property(S): PLUG_INS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\
    Property(S): ANNOTATIONS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\
    Property(S): ARM = C:\Programme\Gemeinsame Dateien\Adobe\ARM\
    Property(S): ARM_1.0 = C:\Programme\Gemeinsame Dateien\Adobe\ARM\1.0\
    Property(S): AdminToolsFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\Programme\Verwaltung\
    Property(S): AppDataFolder = C:\Dokumente und Einstellungen\Administrator\Anwendungsdaten\
    Property(S): BROWSER = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): BROWSER_IE = C:\Programme\Internet Explorer\Plugins\
    Property(S): CACHE_SETUP_FILES = C:\Programme\Adobe\Reader 10.0\Setup Files\
    Property(S): CACHE_DIR = C:\Programme\Adobe\Reader 10.0\Setup Files\{AC76BA86-7AD7-1031-7B44-AA0000000001}\
    Property(S): INSTALLDIR = C:\Programme\Adobe\Reader 10.0\
    Property(S): RESOURCE = C:\Programme\Adobe\Reader 10.0\Resource\
    Property(S): CIDFONT = C:\Programme\Adobe\Reader 10.0\Resource\CIDFont\
    Property(S): CMAP = C:\Programme\Adobe\Reader 10.0\Resource\CMap\
    Property(S): COMMON_ADOBE_HELP = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\
    Property(S): COMMON_ADOBE_HELP_CAT = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ca_ES\
    Property(S): COMMON_ADOBE_HELP_CHS = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\zh_CN\
    Property(S): COMMON_ADOBE_HELP_CHT = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\zh_TW\
    Property(S): COMMON_ADOBE_HELP_CZE = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\cs_CZ\
    Property(S): COMMON_ADOBE_HELP_DAN = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\da_DK\
    Property(S): COMMON_ADOBE_HELP_DEU = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\de_DE\
    Property(S): COMMON_ADOBE_HELP_ENU = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\en_US\
    Property(S): COMMON_ADOBE_HELP_ESP = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\es_ES\
    Property(S): COMMON_ADOBE_HELP_EUQ = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\eu_ES\
    Property(S): COMMON_ADOBE_HELP_FRA = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\fr_FR\
    Property(S): COMMON_ADOBE_HELP_HRV = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\hr_HR\
    Property(S): COMMON_ADOBE_HELP_HUN = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\hu_HU\
    Property(S): COMMON_ADOBE_HELP_ITA = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\it_IT\
    Property(S): COMMON_ADOBE_HELP_JPN = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ja_JP\
    Property(S): COMMON_ADOBE_HELP_KOR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ko_KR\
    Property(S): COMMON_ADOBE_HELP_NLD = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\nl_NL\
    Property(S): COMMON_ADOBE_HELP_NOR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\nb_NO\
    Property(S): COMMON_ADOBE_HELP_POL = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\pl_PL\
    Property(S): COMMON_ADOBE_HELP_PTB = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\pt_BR\
    Property(S): COMMON_ADOBE_HELP_RUM = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ro_RO\
    Property(S): COMMON_ADOBE_HELP_RUS = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\ru_RU\
    Property(S): COMMON_ADOBE_HELP_SKY = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\sk_SK\
    Property(S): COMMON_ADOBE_HELP_SLV = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\sl_SI\
    Property(S): COMMON_ADOBE_HELP_SUO = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\fi_FI\
    Property(S): COMMON_ADOBE_HELP_SVE = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\sv_SE\
    Property(S): COMMON_ADOBE_HELP_TUR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\tr_TR\
    Property(S): COMMON_ADOBE_HELP_UKR = C:\Programme\Gemeinsame Dateien\Adobe\HelpCfg\uk_UA\
    Property(S): COMMON_LINGUISTIC = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\
    Property(S): COMMON_ADOBE_PROVIDERS = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\
    Property(S): COMMON_ADOBE_PROVIDERS_PROXIMITY = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\Proximity\
    Property(S): COMMON_ADOBE_PROVIDERS_PROXIMITY_1100 = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\Proximity\11.00\
    Property(S): COMMON_ADOBE_PROVIDERS_PROXIMITY_1100_NCL3S4PNTX = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\Providers\Proximity\11.00\NC-L3S4PNTX\
    Property(S): COMMON_LINGUISTIC_LANGUAGENAMES = C:\Programme\Adobe\Reader 10.0\Resource\Linguistics\LanguageNames2\
    Property(S): CommonFiles64Folder = D:\
    Property(S): DOCSETTINGS = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\
    Property(S): DOCSETTINGS_PORTFOLIO = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\
    Property(S): DOCSETTINGS_PORTFOLIO_CHS = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\CHS\
    Property(S): DOCSETTINGS_PORTFOLIO_CHT = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\CHT\
    Property(S): DOCSETTINGS_PORTFOLIO_CZE = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\CZE\
    Property(S): DOCSETTINGS_PORTFOLIO_DAN = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\DAN\
    Property(S): DOCSETTINGS_PORTFOLIO_DEU = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\DEU\
    Property(S): DOCSETTINGS_PORTFOLIO_ENU = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\ENU\
    Property(S): DOCSETTINGS_PORTFOLIO_ESP = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\ESP\
    Property(S): DOCSETTINGS_PORTFOLIO_FRA = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\FRA\
    Property(S): DOCSETTINGS_PORTFOLIO_HRV = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\HRV\
    Property(S): DOCSETTINGS_PORTFOLIO_HUN = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\HUN\
    Property(S): DOCSETTINGS_PORTFOLIO_ITA = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\ITA\
    Property(S): DOCSETTINGS_PORTFOLIO_JPN = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\JPN\
    Property(S): DOCSETTINGS_PORTFOLIO_KOR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\KOR\
    Property(S): DOCSETTINGS_PORTFOLIO_NLD = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\NLD\
    Property(S): DOCSETTINGS_PORTFOLIO_NOR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\NOR\
    Property(S): DOCSETTINGS_PORTFOLIO_POL = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\POL\
    Property(S): DOCSETTINGS_PORTFOLIO_PTB = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\PTB\
    Property(S): DOCSETTINGS_PORTFOLIO_RUM = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\RUM\
    Property(S): DOCSETTINGS_PORTFOLIO_RUS = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\RUS\
    Property(S): DOCSETTINGS_PORTFOLIO_SKY = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SKY\
    Property(S): DOCSETTINGS_PORTFOLIO_SLV = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SLV\
    Property(S): DOCSETTINGS_PORTFOLIO_SUO = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SUO\
    Property(S): DOCSETTINGS_PORTFOLIO_SVE = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\SVE\
    Property(S): DOCSETTINGS_PORTFOLIO_TUR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\TUR\
    Property(S): DOCSETTINGS_PORTFOLIO_UKR = C:\Programme\Adobe\Reader 10.0\Reader\DocSettings\Portfolio\UKR\
    Property(S): DesktopFolder = C:\Dokumente und Einstellungen\All Users\Desktop\
    Property(S): ESL_DIR = C:\Programme\Adobe\Reader 10.0\Esl\
    Property(S): FONT = C:\Programme\Adobe\Reader 10.0\Resource\Font\
    Property(S): FavoritesFolder = C:\Dokumente und Einstellungen\Administrator\Favoriten\
    Property(S): FontsFolder = C:\WINDOWS\Fonts\
    Property(S): GlobalAssemblyCache = D:\
    Property(S): IDTEMPLATES = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\
    Property(S): IDTEMPLATES_CAT = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CAT\
    Property(S): IDTEMPLATES_CHS = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CHS\
    Property(S): IDTEMPLATES_CHT = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CHT\
    Property(S): IDTEMPLATES_CZE = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\CZE\
    Property(S): IDTEMPLATES_DAN = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\DAN\
    Property(S): IDTEMPLATES_DEU = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\DEU\
    Property(S): IDTEMPLATES_ENU = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\ENU\
    Property(S): IDTEMPLATES_ESP = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\ESP\
    Property(S): IDTEMPLATES_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\EUQ\
    Property(S): IDTEMPLATES_FRA = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\FRA\
    Property(S): IDTEMPLATES_HRV = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\HRV\
    Property(S): IDTEMPLATES_HUN = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\HUN\
    Property(S): IDTEMPLATES_ITA = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\ITA\
    Property(S): IDTEMPLATES_JPN = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\JPN\
    Property(S): IDTEMPLATES_KOR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\KOR\
    Property(S): IDTEMPLATES_NLD = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\NLD\
    Property(S): IDTEMPLATES_NOR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\NOR\
    Property(S): IDTEMPLATES_POL = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\POL\
    Property(S): IDTEMPLATES_PTB = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\PTB\
    Property(S): IDTEMPLATES_RUM = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\RUM\
    Property(S): IDTEMPLATES_RUS = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\RUS\
    Property(S): IDTEMPLATES_SKY = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SKY\
    Property(S): IDTEMPLATES_SLV = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SLV\
    Property(S): IDTEMPLATES_SUO = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SUO\
    Property(S): IDTEMPLATES_SVE = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\SVE\
    Property(S): IDTEMPLATES_TUR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\TUR\
    Property(S): IDTEMPLATES_UKR = C:\Programme\Adobe\Reader 10.0\Reader\IDTemplates\UKR\
    Property(S): READER_9.0 = C:\Programme\Adobe\Reader 10.0\
    Property(S): JAVASCRIPTS = C:\Programme\Adobe\Reader 10.0\Reader\Javascripts\
    Property(S): LEGAL = C:\Programme\Adobe\Reader 10.0\Reader\Legal\
    Property(S): LEGAL_CAT = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CAT\
    Property(S): LEGAL_CHS = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CHS\
    Property(S): LEGAL_CHT = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CHT\
    Property(S): LEGAL_CZE = C:\Programme\Adobe\Reader 10.0\Reader\Legal\CZE\
    Property(S): LEGAL_DAN = C:\Programme\Adobe\Reader 10.0\Reader\Legal\DAN\
    Property(S): LEGAL_DEU = C:\Programme\Adobe\Reader 10.0\Reader\Legal\DEU\
    Property(S): LEGAL_ENU = C:\Programme\Adobe\Reader 10.0\Reader\Legal\ENU\
    Property(S): LEGAL_ESP = C:\Programme\Adobe\Reader 10.0\Reader\Legal\ESP\
    Property(S): LEGAL_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\Legal\EUQ\
    Property(S): LEGAL_FRA = C:\Programme\Adobe\Reader 10.0\Reader\Legal\FRA\
    Property(S): LEGAL_HRV = C:\Programme\Adobe\Reader 10.0\Reader\Legal\HRV\
    Property(S): LEGAL_HUN = C:\Programme\Adobe\Reader 10.0\Reader\Legal\HUN\
    Property(S): LEGAL_ITA = C:\Programme\Adobe\Reader 10.0\Reader\Legal\ITA\
    Property(S): LEGAL_JPN = C:\Programme\Adobe\Reader 10.0\Reader\Legal\JPN\
    Property(S): LEGAL_KOR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\KOR\
    Property(S): LEGAL_NLD = C:\Programme\Adobe\Reader 10.0\Reader\Legal\NLD\
    Property(S): LEGAL_NOR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\NOR\
    Property(S): LEGAL_POL = C:\Programme\Adobe\Reader 10.0\Reader\Legal\POL\
    Property(S): LEGAL_PTB = C:\Programme\Adobe\Reader 10.0\Reader\Legal\PTB\
    Property(S): LEGAL_RUM = C:\Programme\Adobe\Reader 10.0\Reader\Legal\RUM\
    Property(S): LEGAL_RUS = C:\Programme\Adobe\Reader 10.0\Reader\Legal\RUS\
    Property(S): LEGAL_SKY = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SKY\
    Property(S): LEGAL_SLV = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SLV\
    Property(S): LEGAL_SUO = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SUO\
    Property(S): LEGAL_SVE = C:\Programme\Adobe\Reader 10.0\Reader\Legal\SVE\
    Property(S): LEGAL_TUR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\TUR\
    Property(S): LEGAL_UKR = C:\Programme\Adobe\Reader 10.0\Reader\Legal\UKR\
    Property(S): LOCALE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\
    Property(S): LOCALE_CA_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ca_ES\
    Property(S): LOCALE_CS_CZ = C:\Programme\Adobe\Reader 10.0\Reader\Locale\cs_CZ\
    Property(S): LOCALE_DA_DK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\da_DK\
    Property(S): LOCALE_DE_DE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\de_DE\
    Property(S): LOCALE_ES_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\es_ES\
    Property(S): LOCALE_EU_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\eu_ES\
    Property(S): LOCALE_FI_FI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fi_FI\
    Property(S): LOCALE_FR_FR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fr_FR\
    Property(S): LOCALE_HR_HR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hr_HR\
    Property(S): LOCALE_HU_HU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hu_HU\
    Property(S): LOCALE_IT_IT = C:\Programme\Adobe\Reader 10.0\Reader\Locale\it_IT\
    Property(S): LOCALE_JA_JP = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ja_JP\
    Property(S): LOCALE_KO_KR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ko_KR\
    Property(S): LOCALE_NB_NO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nb_NO\
    Property(S): LOCALE_NL_NL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nl_NL\
    Property(S): LOCALE_PL_PL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pl_PL\
    Property(S): LOCALE_PT_BR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pt_BR\
    Property(S): LOCALE_RO_RO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ro_RO\
    Property(S): LOCALE_RU_RU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ru_RU\
    Property(S): LOCALE_SK_SK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sk_SK\
    Property(S): LOCALE_SL_SI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sl_SI\
    Property(S): LOCALE_SV_SE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sv_SE\
    Property(S): LOCALE_TR_TR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\tr_TR\
    Property(S): LOCALE_UK_UA = C:\Programme\Adobe\Reader 10.0\Reader\Locale\uk_UA\
    Property(S): LOCALE_ZH_CN = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_CN\
    Property(S): LOCALE_ZH_TW = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_TW\
    Property(S): LocalAppDataFolder = C:\Dokumente und Einstellungen\Administrator\Lokale Einstellungen\Anwendungsdaten\
    Property(S): MOZILLA_1 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_2 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_3 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_4 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_5 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_6 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_7 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MOZILLA_8 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): MPP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\
    Property(S): MPP_CZE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_CZE\
    Property(S): MPP_HRV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_HRV\
    Property(S): MPP_HUN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_HUN\
    Property(S): MPP_POL = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_POL\
    Property(S): MPP_RUM = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_RUM\
    Property(S): MPP_RUS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_RUS\
    Property(S): MPP_SKY = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_SKY\
    Property(S): MPP_SLV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_SLV\
    Property(S): MPP_TUR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_TUR\
    Property(S): MPP_UKR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP_UKR\
    Property(S): MULTIMEDIA_MPP_CAT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_CHS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_CHT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_DAN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_DEU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_ESP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_FRA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_ITA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_JAPN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_KOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_NLD = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_NOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_PTB = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_SUO = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MULTIMEDIA_MPP_SVE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Multimedia\MPP\
    Property(S): MyPicturesFolder = C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\Eigene Bilder\
    Property(S): NETSCAPE_3 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): NETSCAPE_4 = C:\Programme\Adobe\Reader 10.0\Reader\Browser\
    Property(S): PFM = C:\Programme\Adobe\Reader 10.0\Resource\Font\PFM\
    Property(S): PLUGINS_3D = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins3d\
    Property(S): PLUGINS_3D_PRC = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins3d\prc\
    Property(S): PLUG_INS_ACROFORM = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\AcroForm\
    Property(S): PLUG_INS_ACROFORM_PMP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\AcroForm\PMP\
    Property(S): PersonalFolder = C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\
    Property(S): PrimaryVolumePath = D:\
    Property(S): ProgramFiles64Folder = D:\
    Property(S): ProgramMenuFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\Programme\
    Property(S): SASIPREP = C:\Programme\Adobe\Reader 10.0\Resource\SaslPrep\
    Property(S): SERVICES = C:\Programme\Adobe\Reader 10.0\Reader\Services\
    Property(S): SERVICES_CA_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ca_ES\Services\
    Property(S): SERVICES_CS_CZ = C:\Programme\Adobe\Reader 10.0\Reader\Locale\cs_CZ\Services\
    Property(S): SERVICES_DA_DK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\da_DK\Services\
    Property(S): SERVICES_DE_DE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\de_DE\Services\
    Property(S): SERVICES_ES_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\es_ES\Services\
    Property(S): SERVICES_EU_ES = C:\Programme\Adobe\Reader 10.0\Reader\Locale\eu_ES\Services\
    Property(S): SERVICES_FI_FI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fi_FI\Services\
    Property(S): SERVICES_FR_FR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\fr_FR\Services\
    Property(S): SERVICES_HR_HR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hr_HR\Services\
    Property(S): SERVICES_HU_HU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\hu_HU\Services\
    Property(S): SERVICES_IT_IT = C:\Programme\Adobe\Reader 10.0\Reader\Locale\it_IT\Services\
    Property(S): SERVICES_JA_JP = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ja_JP\Services\
    Property(S): SERVICES_KO_KR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ko_KR\Services\
    Property(S): SERVICES_NB_NO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nb_NO\Services\
    Property(S): SERVICES_NL_NL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\nl_NL\Services\
    Property(S): SERVICES_PL_PL = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pl_PL\Services\
    Property(S): SERVICES_PT_BR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\pt_BR\Services\
    Property(S): SERVICES_RO_RO = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ro_RO\Services\
    Property(S): SERVICES_RU_RU = C:\Programme\Adobe\Reader 10.0\Reader\Locale\ru_RU\Services\
    Property(S): SERVICES_SK_SK = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sk_SK\Services\
    Property(S): SERVICES_SL_SI = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sl_SI\Services\
    Property(S): SERVICES_SV_SE = C:\Programme\Adobe\Reader 10.0\Reader\Locale\sv_SE\Services\
    Property(S): SERVICES_TR_TR = C:\Programme\Adobe\Reader 10.0\Reader\Locale\tr_TR\Services\
    Property(S): SERVICES_UK_UA = C:\Programme\Adobe\Reader 10.0\Reader\Locale\uk_UA\Services\
    Property(S): SERVICES_ZH_CN = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_CN\Services\
    Property(S): SERVICES_ZH_TW = C:\Programme\Adobe\Reader 10.0\Reader\Locale\zh_TW\Services\
    Property(S): SPPLUGINS = C:\Programme\Adobe\Reader 10.0\Reader\SPPlugins\
    Property(S): STAMP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\
    Property(S): STAMP_CAT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CAT\
    Property(S): STAMP_CHS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CHS\
    Property(S): STAMP_CHT = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CHT\
    Property(S): STAMP_CZE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\CZE\
    Property(S): STAMP_DAN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\DAN\
    Property(S): STAMP_DEU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\DEU\
    Property(S): STAMP_ENU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\ENU\
    Property(S): STAMP_ESP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\ESP\
    Property(S): STAMP_EUQ = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\EUQ\
    Property(S): STAMP_FRA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\FRA\
    Property(S): STAMP_HRV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\HRV\
    Property(S): STAMP_HUN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\HUN\
    Property(S): STAMP_ITA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\ITA\
    Property(S): STAMP_JPN = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\JPN\
    Property(S): STAMP_KOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\KOR\
    Property(S): STAMP_NLD = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\NLD\
    Property(S): STAMP_NOR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\NOR\
    Property(S): STAMP_POL = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\POL\
    Property(S): STAMP_PTB = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\PTB\
    Property(S): STAMP_RUM = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\RUM\
    Property(S): STAMP_RUS = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\RUS\
    Property(S): STAMP_SKY = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SKY\
    Property(S): STAMP_SLV = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SLV\
    Property(S): STAMP_SUO = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SUO\
    Property(S): STAMP_SVE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\SVE\
    Property(S): STAMP_TUR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\TUR\
    Property(S): STAMP_UKR = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\Annotations\Stamps\UKR\
    Property(S): SendToFolder = C:\Dokumente und Einstellungen\Administrator\SendTo\
    Property(S): StartMenuFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\
    Property(S): StartupFolder = C:\Dokumente und Einstellungen\All Users\Startmenü\Programme\Autostart\
    Property(S): System16Folder = C:\WINDOWS\system\
    Property(S): System64Folder = D:\
    Property(S): SystemFolder = C:\WINDOWS\system32\
    Property(S): TRACKER = C:\Programme\Adobe\Reader 10.0\Reader\Tracker\
    Property(S): TYPESPT = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\
    Property(S): TYPESPT_UNICODE = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\
    Property(S): TYPESPT_UNICODE_ICU = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\ICU\
    Property(S): TYPESPT_UNICODE_MAPPINGS = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\
    Property(S): TYPESPT_UNICODE_MAPPINGS_ADOBE = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\Adobe\
    Property(S): TYPESPT_UNICODE_MAPPINGS_MAC = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\Mac\
    Property(S): TYPESPT_UNICODE_MAPPINGS_WIN = C:\Programme\Adobe\Reader 10.0\Resource\TypeSupport\Unicode\Mappings\win\
    Property(S): TempFolder = C:\DOKUME~1\ADMINI~1\LOKALE~1\Temp\
    Property(S): TemplateFolder = C:\Dokumente und Einstellungen\All Users\Vorlagen\
    Property(S): USERPROFILE = C:\Dokumente und Einstellungen\Administrator\
    Property(S): VDKHOME = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\
    Property(S): VDKHOME_DEU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\DEU\
    Property(S): VDKHOME_ENU = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\ENU\
    Property(S): VDKHOME_ESP = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\ESP\
    Property(S): VDKHOME_FRA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\FRA\
    Property(S): VDKHOME_ITA = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\ITA\
    Property(S): VDKHOME_NLD = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\NLD\
    Property(S): VDKHOME_SVE = C:\Programme\Adobe\Reader 10.0\Reader\plug_ins\VDKHome\SVE\
    Property(S): WindowsFolder = C:\WINDOWS\
    Property(S): WindowsVolume = C:\
    Property(S): QFEUpgrade = 2
    Property(S): VersionDatabase = 300
    Property(S): MsiUISourceResOnly = 1
    Property(S): PRODUCTLANGUAGE = 1031
    Property(S): WindowsFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\
    Property(S): SystemFolder.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\system32\
    Property(S): WinSxsDirectory.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\
    Property(S): payload_ul.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_bcb86ed6ac711f 91\
    Property(S): payload.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375\
    Property(S): WinSxsManifests.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\Manifests\
    Property(S): WinSxsPolicies.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\Policies\
    Property(S): policydir.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\Policies\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_1742743b\
    Property(S): policydir_ul.21022.08.Microsoft_VC90_CRT_x86.RTM.0138F525_6C8A_333F_A105_14AE030B9A54 = C:\WINDOWS\winsxs\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_1742743b\
    Property(S): CLIENTPROCESSID = 884
    Property(S): ALLUSERS = 1
    Property(S): Dummy_Microsoft_VC90_CRT_x86.0138F525_6C8A_333F_A105_14AE030B9A54 = 1
    Property(S): WinSxsDirectory.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_94 7B287C203A = C:\WINDOWS\winsxs\
    Property(S): payload_ul.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947B287 C203A = C:\WINDOWS\winsxs\x86_policy.9.0.microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_none_60a 5df56e60dc5df\
    Property(S): WinSxsPolicies.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947 B287C203A = C:\WINDOWS\winsxs\Policies\
    Property(S): policydir.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947B287C 203A = C:\WINDOWS\winsxs\Policies\x86_policy.9.0.Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_x-ww_b7353f 75\
    Property(S): WindowsFolder.21022.08.policy_9_0_Microsoft_VC90_CRT_x86.RTM.52105B6B_A3EF_3A90_882A_947B 287C203A = C:\WINDOWS\
    Property(S): Dummy_policy_9_0_Microsoft_VC90_CRT_x86.52105B6B_A3EF_3A90_882A_947B287C203A = 1
    Property(S): OriginalDatabase = C:\WINDOWS\Installer\4866b7.msi
    Property(S): CLIENTUILEVEL = 3
    Property(S): UILevel = 2
    Property(S): DATABASE = C:\WINDOWS\Installer\4866b7.msi
    Property(S): CURRENTDIRECTORY = C:\Dokumente und Einstellungen\Administrator
    Property(S): PATCH = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\ARM\Reader_10.0.0\AdbeRdrUpd1001_Tier1.msp
    Property(S): ProductToBeRegistered = 1
    Property(S): USERNAME = Landesarchiv Baden-Württemberg
    Property(S): RDR1001 = C:\Dokumente und Einstellungen\All Users\Anwendungsdaten\Adobe\ARM\Reader_10.0.0\AdbeRdrUpd1001_Tier1.msp
    Property(S): PATCHNEWSUMMARYCOMMENTS = Contact:  Your local administrator
    Property(S): MIN_SYSTEM = C:\WINDOWS\system32\Shdocvw.dll
    Property(S): AS_INSTALLDIR = C:\Programme\Adobe\Reader 10.0\
    Property(S): AS_OPTIMIZE_ENABLED = YES
    Property(S): AS_REPAIR_VERSION_LIST = A
    Property(S): AS_OPTIMIZE_STATUS = #1
    Property(S): READER_APP_PATH = C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Property(S): IE_VERSION = 8.0.6001.18702
    Property(S): READER_PATH = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): ProductCode = {AC76BA86-7AD7-1031-7B44-AA0000000001}
    Property(S): ApplicationUsers = AllUsers
    Property(S): AgreeToLicense = No
    Property(S): _IsMaintenance = Reinstall
    Property(S): SetupType = Typical
    Property(S): _IsSetupTypeMin = Typical
    Property(S): ARPCONTACT = Kundendienst
    Property(S): PATCHNEWSUMMARYSUBJECT = ADOBER~1.0|Adobe Reader X (10.0.1)
    Property(S): ARPHELPLINK = http://www.adobe.de/support/main.html
    Property(S): ARPREADME = C:\Programme\Adobe\Reader 10.0\Liesmich.htm
    Property(S): ARPURLINFOABOUT = http://www.adobe.de/support/main.html
    Property(S): ARPURLUPDATEINFO = http://www.adobe.de/support/main.html
    Property(S): DefaultUIFont = Tahoma8
    Property(S): ErrorDialog = SetupError
    Property(S): INSTALLLEVEL = 100
    Property(S): ISSCRIPT_VERSION_MISSING = Die InstallScript-Engine fehlt auf diesem Computer. Falls verfügbar, führen Sie ISScript.msi aus oder wenden Sie sich an den Technischen Support.
    Property(S): Manufacturer = Adobe Systems Incorporated
    Property(S): PIDTemplate = 12345<###-%%%%%%%>@@@@@
    Property(S): ProductID = none
    Property(S): ProductLanguage = 1031
    Property(S): ProductName = Adobe Reader X (10.0.1) - Deutsch
    Property(S): ProductVersion = 10.0.1
    Property(S): ProgressType0 = install
    Property(S): ProgressType1 = Installing
    Property(S): ProgressType2 = installed
    Property(S): ProgressType3 = installs
    Property(S): RebootYesNo = Yes
    Property(S): ReinstallModeText = omus
    Property(S): TRACKINGKEY = Software\Adobe\Acrobat Reader\7.0
    Property(S): ARPPRODUCTICON = SC_Reader.ico
    Property(S): Cancel = 0
    Property(S): RadioGroup = 0
    Property(S): TypicalText = 0
    Property(S): ARPCOMMENTS =   
    Property(S): ERROR_MIN_OVER_BIG = Setup hat eine funktionsreichere Produktversion auf Ihrem System gefunden. Setup wird jetzt beendet.
    Property(S): SecureCustomProperties = DEFAULT_VERB;ACTIONPROPERTY;ELEMENTS;RDRMIN;RDRBIG;RDRBIG_8X;RDRBIG_9X;UT_FRB;UT_FRS;UT_A T;UT_AP1;UT_AP2;UT_AS1;UT_AS2;UT_A3D;UT_6X;UT_7X;UT_MM61;UT_MM62;UT_MM63;UT_EB61;UT_EB62;U T_EB63;AS_OPTIMIZE_ENABLED;ACROBAT_APP_PATH;AS_HKCR_EXE;PDFSHELL_LOCALSERVER_COMMAND;PDF_D EFAULTICON;PDF_PREVIEW_HANDERLER_DLL;PDF_PREVIEW_HANDERLER_HELPDIR;DISABLE_PDFOWNERSHIP_RE STORE;PDF_INPROCSERVER_VIEWERPS;READER_PATH
    Property(S): BrandName = Adobe Reader X (10.0.1)
    Property(S): ISVROOT_PORT_NO = 0
    Property(S): PATCHNEWPACKAGECODE = {87B556E3-4C96-42CE-90B1-4E0B3D7B0A9B}
    Property(S): IsMinIE_Message = Internet Explorer 6.0 oder höher erforderlich.  Ein Upgrade für Internet Explorer erhalten Sie unter www.microsoft.com.
    Property(S): ISLANGFLAG = DEU
    Property(S): FilesLabel = 0
    Property(S): DisallowRunFromSource = 1
    Property(S): AppsInUseSilentAbort = Es wird ein Vorgang ausgeführt, der nicht vom Installationsprogramm beendet werden kann.  Schließen Sie vor einem erneuten Versuche alle Anwendungen oder starten Sie Ihrem Computer neu.
    Property(S): ENABLE_CACHE_FILES = YES
    Property(S): OLE_VERB_OPEN = Ö&ffnen,0,2
    Property(S): REINSTALLMODE = omus
    Property(S): Elevated = 1
    Property(S): ENABLE_OPTIMIZATION = YES
    Property(S): ERROR_DEFRAG_MSG = Leistung wird optimiert...
    Property(S): ERROR_DEFRAG_ADTEMPLATE = [1]% des Vorgangs abgeschlossen
    Property(S): ERROR_CANNOT_OPTIMIZE_DISK = HINWEIS: Die Installation wurde erfolgreich abgeschlossen. Da Ihre Festplatte jedoch fragmentiert ist, kann das Programm eventuell nicht so schnell wie normalerweise möglich starten. Zur Optimierung der Systemleistung sollten Sie die Festplatte defragmentieren und anschließend das Programm in der Systemsteuerung unter "Software" reparieren.
    Property(S): EULA_ACCEPT = NO
    Property(S): DISABLE_BROWSER_INTEGRATION = NO
    Property(S): AcroIEHelper_Description = Adobe PDF Reader
    Property(S): DEFAULT_VERB = Read
    Property(S): ADMIN_INSTALL = NO
    Property(S): AdminProperties = ADMIN_INSTALL
    Property(S): REMOVE_PREVIOUS = YES
    Property(S): SYNCHRONIZER = YES
    Property(S): OpenWith = Mit Adobe Reader X öffnen
    Property(S): SetupCacheExport = 
    Property(S): LC_UNSUPPORTED_OS = Diese Anwendung kann nicht auf diesem Betriebssystem installiert werden. Die Installation wird beendet. Prüfen Sie die Mindestsystemanforderungen unter http://www.adobe.com/go/reader_system_reqs_de.
    Property(S): ApplicationList = 0
    Property(S): DEFAULT_ATTACHMENT_WHITELIST = version:1|.ade:3|.adp:3|.app:3|.arc:3|.arj:3|.asp:3|.bas:3|.bat:3|.bz:3|.bz2:3|.cab:3|.ch m:3|.class:3|.cmd:3|.com:3|.command:3|.cpl:3|.crt:3|.csh:3|.desktop:3|.dll:3|.exe:3|.fxp:3 |.gz:3|.hex:3|.hlp:3|.hqx:3|.hta:3|.inf:3|.ini:3|.ins:3|.isp:3|.its:3|.job:3|.js:3|.jse:3| .ksh:3|.lnk:3|.lzh:3|.mad:3|.maf:3|.mag:3|.mam:3|.maq:3|.mar:3|.mas:3|.mat:3|.mau:3|.mav:3 |.maw:3|.mda:3|.mdb:3|.mde:3|.mdt:3|.mdw:3|.mdz:3|.msc:3|.msi:3|.msp:3|.mst:3|.ocx:3|.ops: 3|.pcd:3|.pi:3|.pif:3|.prf:3|.prg:3|.pst:3|.rar:3|.reg:3|.scf:3|.scr:3|.sct:3|.sea:3|.shb: 3|.shs:3|.sit:3|.tar:3|.taz:3|.tgz:3|.tmp:3|.url:3|.vb:3|.vbe:3|.vbs:3|.vsmacros:3|.vss:3| .vst:3|.vsw:3|.webloc:3|.ws:3|.wsc:3|.wsf:3|.wsh:3|.z:3|.zip:3|.zlo:3|.zoo:3|.pdf:2|.fdf:2 |.jar:3|.pkg:3|.tool:3|.term:3
    Property(S): EXEC_MENU_WHITELIST = Close|GeneralInfo|Quit|FirstPage|PrevPage|NextPage|LastPage|ActualSize|FitPage|FitWidth|F itHeight|SinglePage|OneColumn|TwoPages|TwoColumns|ZoomViewIn|ZoomViewOut|ShowHideBookmarks |ShowHideThumbnails|Print|GoToPage|ZoomTo|GeneralPrefs|SaveAs|FullScreen|OpenOrganizer|Sca n|Web2PDF:OpnURL|AcroSendMail:SendMail|Spelling:Check Spelling|PageSetup|Find|FindSearch|GoBack|GoForward|FitVisible|ShowHideToolbarEditing|Sho wHideToolbarCommenting|ShowHideToolbarEdit|ShowHideToolbarFile|ShowHideToolbarFind|ShowHid eToolbarForms|ShowHideToolbarMeasuring|ShowHideToolbarData|ShowHideToolbarPageDisplay|Show HideToolbarNavigation|ShowHideToolbarPrintProduction|ShowHideToolbarRedaction|ShowHideTool barBasicTools|ShowHideToolbarTasks|ShowHideToolbarTypewriter|PropertyToolbar|ShowHideArtic les|ShowHideFileAttachment|ShowHideAnnotManager|ShowHideFields|ShowHideOptCont|ShowHideMod elTree|ShowHideSignatures|InsertPages|ExtractPages|ReplacePages|DeletePages|CropPages|Rota tePages|AddFileAttachment|FindCurrentBookmark|BookmarkShowLocation|GoBackDoc|GoForward|Doc HelpUserGuide|HelpReader|rolReadPage|HandMenuItem|ZoomDragMenuItem|Annots:Tool:InkMenuItem |CollectionHome|CollectionDetails|CollectionPreview|CollectionShowRoot
    Property(S): PDF_Integration = 1
    Property(S): Browser_Integration = 2
    Property(S): ARPNOREPAIR = 1
    Property(S): ActionTextLabel = 0
    Property(S): CurrentPdfOwner = 0
    Property(S): ReadmeHtml = Liesmich.htm
    Property(S): OprimizeError2 = 0
    Property(S): ReaderProcessPopup = 0
    Property(S): BrandNameMajorVer = Adobe Reader X
    Property(S): DefragResetProgress = No
    Property(S): PROGMSG_IIS_REMOVESITE = Website auf Port %d wird entfernt
    Property(S): PROGMSG_IIS_CREATEVROOT = Virtuelles IIS-Verzeichnis %s wird erstellt
    Property(S): PROGMSG_IIS_CREATEVROOTS = Virtuelle IIS-Verzeichnisse werden erstellt...
    Property(S): PROGMSG_IIS_EXTRACTDONE = Extrahierte Informationen für virtuelle IIS-Verzeichnisse…
    Property(S): PROGMSG_IIS_REMOVEVROOT = Virtuelles IIS-Verzeichnis %s wird entfernt
    Property(S): PROGMSG_IIS_REMOVEVROOTS = Virtuelle IIS-Verzeichnisse werden entfernt...
    Property(S): PROGMSG_IIS_ROLLBACKVROOTS = Änderungen am virtuellen Verzeichnis und der Website werden rückgängig gemacht…
    Property(S): PROGMSG_IIS_EXTRACT = Informationen für virtuelle IIS-Verzeichnisse werden extrahiert…
    Property(S): IS_COMPLUS_PROGRESSTEXT_COST = Costing der COM+-Anwendung: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_INSTALL = COM+-Anwendung installieren: [1]
    Property(S): IS_COMPLUS_PROGRESSTEXT_UNINSTALL = COM+-Anwendung deinstallieren: [1]
    Property(S): IS_SQLSERVER_AUTHENTICATION = 0
    Property(S): IS_SQLSERVER_USERNAME = sa
    Property(S): _5789b66a5ab8e = {AC76BA80-0010-7AD7-0000-000000000000}
    Property(S): AttentionCloseReader = 0
    Property(S): RunTimeProperties = CACHE_DIR;ProductName;OriginalDatabase;REMOVE;WindowsFolder;SetupCacheExport;ALLUSERS;REI NSTALLMODE;PLUG_INS;DefragResetProgress;ALLUSERS_APPDATA_ADOBE;DEFAULT_VERB;IS_CURRENT_PDF OWNER;ACTIVE_X;Installed;READER;ProductCode
    Property(S): DV = 10.0
    Property(S): MSIRESTARTMANAGERCONTROL = Disable
    Property(S): IS_PROGMSG_XML_COSTING = Speicherplatzanalyse für XML-Dateien...
    Property(S): IS_PROGMSG_XML_CREATE_FILE = XML-Datei %s wird erstellt…
    Property(S): IS_PROGMSG_XML_FILES = Änderungen an XML-Datei werden durchgeführt...
    Property(S): IS_PROGMSG_XML_REMOVE_FILE = XML-Datei %s wird entfernt…
    Property(S): IS_PROGMSG_XML_ROLLBACK_FILES = Änderungen an der XML-Datei werden rückgängig gemacht…
    Property(S): IS_PROGMSG_XML_UPDATE_FILE = XML-Datei %s wird aktualisiert…
    Property(S): PROGMSG_IIS_CREATEAPPPOOLS = Anwendungspools werden erstellt...
    Property(S): PROGMSG_IIS_CREATEAPPPOOL = Anwendungspool %s wird erstellt
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSION = Webdiensterweiterung wird erstellt
    Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSIONS = Webdiensterweiterungen werden erstellt...
    Property(S): PROGMSG_IIS_REMOVEAPPPOOL = Anwendungspool wird entfernt
    Property(S): PROGMSG_IIS_REMOVEAPPPOOLS = Anwendungspools werden entfernt...
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSION = Webdiensterweiterung wird entfernt
    Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSIONS = Webdiensterweiterungen werden entfernt...
    Property(S): PROGMSG_IIS_ROLLBACKAPPPOOLS = Rollback der Anwendungspools wird durchgeführt...
    Property(S): PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS = Rollback der Webdiensterweiterungen wird durchgeführt...
    Property(S): RestartManagerOption = CloseRestart
    Property(S): AppsInUseUnknownAcrobatApps = Anwendungen, die Adobe Reader oder Adobe Acrobat verwenden
    Property(S): EmbdUI = 1
    Property(S): ADOBE_LINK = http://www.adobe.com
    Property(S): _WebLinkChecked = 0
    Property(S): CurrentProduct = 0
    Property(S): DWUSLINK = CEFB870FBECC80BF79AC97C8298C978FD9DCB78FCEDC5098CE8B974F99DBF0F8CEEC50A809AC
    Property(S): PROCESSPATHWITHID = %s mit Prozess-ID: %d
    Property(S): LANG_LIST = ENU,FRA,DEU,JPN,ITA,ESP,NLD,PTB,SVE,DAN,SUO,NOR,CHS,CHT,KOR,BGR,CZE,ETI,HRV,HUN,LTH,LVI,P OL,RUM,RUS,SKY,SLV,TUR,UKR,EUQ,CAT
    Property(S): PROGMSG_IIS_EXTRACTDONEz = Extrahierte Informationen für virtuelle IIS-Verzeichnisse…
    Property(S): PROGMSG_IIS_EXTRACTzDONE = Extrahierte Informationen für virtuelle IIS-Verzeichnisse…
    Property(S): UNKNOWNPROCESSWITHID = Unbekannter Prozess, Prozess-ID: %d
    Property(S): Square = 1
    Property(S): ISReleaseFlags = DEU,READERBIG
    Property(S): ARPINSTALLLOCATION = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): REBOOT = ReallySuppress
    Property(S): PROGID7_ALTERNATE_COMMAND = C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Property(S): Privileged = 1
    Property(S): ProductState = 5
    Property(S): PackageCode = {BD57EC66-1056-4364-B04A-9E07AA7034E9}
    Property(S): MSPSRC45466C95489046819B84B790C8373C71 = C:\WINDOWS\Installer\14946e.msp
    Property(S): CostingComplete = 1
    Property(S): OutOfDiskSpace = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): REINSTALL = SearchAndIndex,MultimediaPlugin,ReaderProgramFiles,ReaderBrowserIntegration,Accessibility _Plugins,Atmosphere_3D,AdobeCommonLinguistics_Big,Updater,Plugins
    Property(S): AS_HKCR_EXE = "C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32.exe"
    Property(S): PDFSHELL_LOCALSERVER_COMMAND = "C:\Programme\Adobe\Reader 10.0\Reader\AcroRd32Info.exe" /PDFShell
    Property(S): PDF_DEFAULTICON = C:\WINDOWS\Installer\{AC76BA86-7AD7-1031-7B44-AA0000000001}\PDFFile_8.ico,0
    Property(S): PDF_PREVIEW_HANDERLER_DLL = C:\Programme\Adobe\Reader 10.0\Reader\pdfprevhndlr.dll
    Property(S): PDF_PREVIEW_HANDERLER_HELPDIR = C:\Programme\Adobe\Reader 10.0\Reader\
    Property(S): PDF_INPROCSERVER_VIEWERPS = C:\Programme\Adobe\Reader 10.0\Reader\ViewerPS.dll
    === Protokollierung beendet: 15.02.2011  09:54:43 ===

Maybe you are looking for

  • My screen is black

    We came home last night to find our iitchen mac mini, which runs our home stereo Nuvo system, would turn o, play chime and spool up but the screen is black.  Checked connections, put it into sleep and rewoke it, shut it down again, reset PMC (i think

  • Ipod mini questions urgent pls answer

    wen ur ipod mini is low in battery does that affect your click wheel? cuz wen my battery was nearly flat i could bearly move the click wheel... and also wen its nearly flat and you play a song and a game can that cause it to freeze? pls reply

  • Restriction for PO release procedure

    Dear All, I have to restrict the PO release procedure. Suppose there are only 3 person can release the PO but i have to restrict that 3 person for that PO quantity. suppose, PO quantity 1000. Person 1 --> Can release up to 1000. Person 2 --> Can rele

  • How to email photoshop files with high resolution

    I need to send a photoshop file that is resolution 300 but it keeps converting to 72 when I email it. How do I email it and keep the 300 resolution?

  • Time Machine Backup only one-fifth the size of my disk. Where's the rest?

    I have a startup disk with about 250 gigs in my G5 dual. I have a 500 GB disk for Time Machine. It runs when it's supposed to and I've used it to recover a few lost files successfully. I felt safe until I noticed that the Time Machine disk has only a