-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
What steps will reproduce the problem?
1. Run officedocs.pl on a hive from a computer with Office (you should never
had use Excel)
2. Read the result.
What is the expected output? What do you see instead?
The expected outuput, where XX is the Office Version:
Software\Microsoft\Office\XX\Excel\Recent Files has not value
or
Software\Microsoft\Office\XX\Excel\Recent Files not found
But we see:
Software\Microsoft\Office\XXExcel\Recent Files has not value
or
Software\Microsoft\Office\XXExcel\Recent Files not found
What version of the product are you using? On what operating system?
rr 2.8 - 20140414
officedocs.pl v. 20080324
Windows 7 - 64 bits
Please provide any additional information below.
A "\" is missing between version and "Excel", it cames from lines 100 & 104.
100: ::rptMsg($key_path.$excel." has no values.");
104: ::rptMsg($key_path.$excel." not found.");
Correction:
100: ::rptMsg($key_path."\\".$excel." has no values.");
104: ::rptMsg($key_path."\\".$excel." not found.");
Original issue reported on code.google.com by antoine....@gmail.com on 9 Jun 2014 at 5:51
Reactions are currently unavailable