XP is not expanding ProgramFiles path and same environment var

such environment variables
ProgramFiles
%COMMONPROGRAMFILES%
not get expanded. Here are the environment variables used by installers to insulate the program from system-specific disks, etc.
XP USED FOR expanding these.
It is one of the reasons why internet Explorer does not turn the content cd more. It's because you can't run just iexplore from the command line for internet explore. If you do so, you get:

15:19:59.53 Tuesday, December 4, 2012 | R:\|>iexplore.exe \\.\cdrom0\\index.htm
"iexplore.exe" is not recognized as an internal or external command
operable program or batch file.

15:20:03.54 Tuesday, December 4, 2012 | R:\|>path
Path = E:\gnuwin32\GetGnuWin32\bin; E:\gnuwin32\GetGnuWin32\gnuwin32\bin;%COMMONPROGRAMFILES%\Microsoft Shared live; E:\Perl\site\bin; E:\Perl\bin;
E:\Windows\System32; E:\WINDOWS; E:\WINDOWS\System32\Wbem;%COMMONPROGRAMFILES%\Roxio Shared\9.0\DLLShared\;%CommonProgramFiles%\Roxio Shared\DLLShared\;
e:\u;e:\tsepro; E:\PHP-5.4.5;%ProgramFiles%\7-zip;%ProgramFiles%\WinMerge;%COMMONPROGRAMFILES%\HP\Digital Imaging\bin;%ProgramFiles%\HP\Digital Imaging
4.3.3 \bin\;%ProgramFiles%\HP\Digital Imaging\bin\Qt\Qt; E:\Windows\system32\WindowsPowerShell\v1.0;%ProgramFiles%\Opera;%ProgramFiles%\QuickTime\QTSys
tem\;%COMMONPROGRAMFILES%\Ulead Systems\MPEG;%ProgramFiles%\internet explorer;%ProgramFiles%\Notepad++; Common E:\Program Files Roxio Shared\9.0\
DLLShared\; Common E:\Program Files Roxio Shared\DLLShared\; e:\Program Mozilla firefox; bin; E:\Program Files\Csound\bin; E:\Program Files\Com
My Files\Microsoft Shared Live

15:36:42.32 Tuesday, December 4, 2012 | R:\|>

the PATH, those who should have been DEVELOPED.

something broken in one of these microsoft updates.

I have a correction to the date of expiry of norton. I had to fix a few bugs in my program. Norton does not give a date deadline for expiration it gives rather a number of days left.
05/11/2013 02:39:00.000 AM
This is my page of calculation time: http://jesusnjim.com/calculators/time-diff.html
This can be calculated from the first form. somehow, my days of norton has increased since the last time I posted...

the ProgramFiles develops now (somehow). It seems to be resolved. I don't know how. possibly an update of norton/symantec liveupdate? because I have my windows updates to download and let me decide whether to install.

I did a repair, it is a new installation on a new partition (E :). I did this because of the corruption of the file system. It turns out that this could have probably attached with RCMP spinrite 6!

I wrote the activex controls, so I know that registry cleaners do - like the bull in the China closet - I don't like them. I own one, but I use that if things are really blocked upward and it's a last ditch effort and even then I followed what he does very closely. Registry Mechanic is not currently installed.

I haven't run the mcafee removal tool. don't know where to find it.

This is a new installation of norton, and I installed it quite recently.

IE8 is installed.

all of these updates are installed.

17.x Firefox is my main browser.

I have flash player 11.5.502.110
I also have adobe CS5 master collection.

a better test for flash is http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html

I had to click on the yellow bar and say that it runs to make the java test work. He said that I have updated java 7 9 and it's OK.

I can't remember what antivirus the machine comes with. I removed it because it was so old (2004 era). I think it's mcafee, but Ican can't say for sure, because we have multiplemachines and the windows installation was several months ago and this kiind of information is not important to me.

Tags: Windows

Similar Questions

  • Work in a tool, but not another one... same environment.

    Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE Production 11.2.0.3.0
    AMT for Solaris: 11.2.0.3.0 - Production Version
    NLSRTL Version 11.2.0.3.0 - Production


    I am trying to build a view. It works in TOAD 11.6. It works with Oracle SQL Developer 1.1.3.
    But when I try to launch it via SQL/PLUS (putty connection)... it goes down.
    alter session set current_schema = fs_nris_fsveg;
    
    CREATE OR REPLACE FORCE VIEW FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM
    (
       STAND_CN,
       STAND_ID,
       PLOT_CN,
       PLOT_ID,
       STANDPLOT_CN,
       STANDPLOT_ID,
       TREE_CN,
       TREE_ID,
       TAG_ID,
       SITE_TREE_FLAG,
       TREE_COUNT,
       HISTORY,
       SPECIES,
       DIAMETER,
       DIAMETER_HT,
       DG,
       HT,
       HTG,
       HTTOPK,
       HT_TO_LIVE_CROWN,
       CRCLASS,
       CRRATIO,
       DAMAGE1,
       SEVERITY1,
       DAMAGE2,
       SEVERITY2,
       DAMAGE3,
       SEVERITY3,
       DEFECT_CUBIC,
       DEFECT_BOARD,
       TREEVALUE,
       PRESCRIPTION,
       AGE,
       SLOPE,
       ASPECT,
       PV_CODE,
       PV_REF_CODE,
       TOPOCODE,
       SITEPREP
    )
    AS
       SELECT DISTINCT
              s.cn stand_cn,
              s.setting_id stand_id,
              p.cn plot_cn,
              NRV_FVS_DB.To_Num (
                 SUBSTR (p.level_2_id, GREATEST (-1 * LENGTH (p.level_2_id), -4)))
                 plot_id,
              s.cn || '_' || LPAD (p.level_2_id, 4, '0') standplot_cn,
              s.setting_id || '_' || LPAD (p.level_2_id, 4, '0') standplot_id,
              t.cn tree_cn,
              NVL (t.unique_no, NRV_FVS_DB.To_Num (t.tag_id)) tree_id,
              t.tag_id tag_id,
              DECODE(t.site_tree_flag,  NULL, 0,  'Y', 1,  NULL) site_tree_flag,
             -- Check for sub-sampling, calculate stand level tpa equiv if sub-sampling, and       
             -- plot-level tpa equiv if no sub-sampling                                            
              DECODE(
                 s.Has_Sub_Sampling,
                 'Y',                                             /*If sub-samp */
                     ROUND (NRV_TREE.Stand_Equiv (t.cn, t.tpa_equiv, s.cn), 5),
                 /*else not    */
                 t.tpa_equiv)
                 tree_count,
              NRV_FVS_DB.To_History (t.live_dead,
                                     t.recent_mortality_flag,
                                     t.tree_status,
                                     t.tree_class)
                 history,
              t.species_symbol species,
              DECODE(t.diameter_method, 'C', NULL, NVL (t.diameter, 0.1))
                 diameter,
              t.diameter_height diameter_ht,
             -- /* For GST trees only: artf21577 radial growth bug                                                         *
              -- *   If the setting has any prev dia measurements and a prev meas date, DG = fia previous diam measurement *
              -- *   Otherwise, DG = radial growth                                                                         */
             -- /* TO_NUMBER(DECODE(t.growth_sample_tree_flag, NULL, NULL
              --                ,DECODE(NRV_FVS_DB.get_dg_trans(p.setmeas_cn_of)
                --              ,0, t.radial_growth/10  -- Division by 10 to convert units from tenths to inches
                --              ,1, t2.diameter_previous
                 --             ,NULL))) dg, */
    
              --TO_NUMBER(DECODE(NRV_FVS_DB.get_dg_trans(p.setmeas_cn_of),0, t.radial_growth/10,  -- Division by 10 to convert units from tenths to inches
              --                 1, t2.diameter_previous,NULL)) dg,  -- art24653
    
              DECODE(
                 t.radial_growth_method,
                 'C', NULL,
                 TO_NUMBER (
                    DECODE(NRV_FVS_DB.get_dg_trans (p.setmeas_cn_of),
                            0, t.radial_growth / 10, -- Division by 10 to convert units from tenths to inches
                            1, t2.diameter_previous,
                            NULL)))
                 dg,                                                   -- art24653
              DECODE(t.height_method, 'C', NULL, t.height) ht,
              --DECODE(t.height_growth_method, 'C', NULL,
              --round(DECODE(t.growth_sample_tree_flag, NULL, NULL, t.height_growth),4)) htg,  -- artf7599 GST tree (dg and htg issue)
              DECODE(t.height_growth_method,
                      'C', NULL,
                      ROUND (t.height_growth, 4))
                 htg,                                                  -- art24653
              DECODE(
                 t.height_to_break_method,
                 'C', NULL,
                 NRV_FVS_DB.To_Height_Top_Kill (t.height_topkill,
                                                t.height_to_break))
                 httopk,
              DECODE(t.crown_base_height_method, 'C', NULL, t.crown_base_height)
                 ht_to_live_crown,
              t.crown_class crclass,
              DECODE(
                 t.crown_ratio_method,
                 'C', NULL,
                 DECODE(
                    NRV_FVS_DB.Only_1_Digit_CRs (s.cn),
                    'Y',                                      /*all 1-digit CRs */
                        t.crown_ratio,
                    /*1- and 2-digit CRs*/
                    DECODE(GREATEST (NVL (t.crown_ratio, -1), 1),
                            LEAST (NVL (t.crown_ratio, -1), 9),      /*CR < 10  */
                                                               10,
                            /*CR >= 10 */
                            t.crown_ratio)))
                 crratio,                            -- artf9733 crown ratio issue
              NRV_FVS_DB.Get_Damage (t.cn, 1) damage1,
              NRV_FVS_DB.Get_Severity (t.cn, 1) severity1,
              NRV_FVS_DB.Get_Damage (t.cn, 2) damage2,
              NRV_FVS_DB.Get_Severity (t.cn, 2) severity2,
              NRV_FVS_DB.Get_Damage (t.cn, 3) damage3,
              NRV_FVS_DB.Get_Severity (t.cn, 3) severity3,
              (  SELECT SUM (td.effect_severity)
                   FROM nrv_tree_disturbances td
                  WHERE t.cn = td.tremeas_cn AND td.effect_code = '014'
               GROUP BY td.tremeas_cn)
                 defect_cubic,
              (  SELECT SUM (td.effect_severity)
                   FROM nrv_tree_disturbances td
                  WHERE t.cn = td.tremeas_cn AND td.effect_code = '013'
               GROUP BY td.tremeas_cn)
                 defect_board,
              /* first check to see if the plot is nonstockable, otherwise assign tree value. */
              DECODE(
                 NRV_FVS_DB.Is_Plot_Nonstockable (p.cn,
                                                  s.region_proc,
                                                  s.loader_version),
                 'Y',                                             /*nonstockable*/
                     8,
                 /* else */
                 NRV_FVS_DB.To_Tree_Value (t.tree_class))
                 treevalue,
              NRV_FVS_DB.To_Num (t.first_treatment_option) prescription,
              --t.age age,
              DECODE(t.age_method,  'DC', NULL,  'TC', NULL,  t.age) age,
              NVL (p.slope, c1.slope) slope,
              NRV_FVS_DB.To_Aspect_Zero (NVL (p.aspect, c1.aspect)) aspect,
              NVL (p.pv_code, c1.pv_code) pv_code,
              NVL (p.pv_ref_code, c1.pv_ref_code) pv_ref_code,
              NRV_FVS_DB.To_Topo_Code (p.slope_position) topocode,
              DECODE(c1.cn,
                      NULL,                                /*no condition record*/
                           NRV_FVS_DB.get_plot_siteprep (p.cn),
                      /*else               */
                      NRV_FVS_DB.get_condition_siteprep (s.cn, c1.cn))
                 siteprep
         FROM nrv_tree_measurements t,
              nrv_fia_tree_measurements t2,
              nrv_setting_measurements p,
              /* sub-select to improve efficiency - to unravel sub-sampling only once per stand-level. */
              (SELECT cn,
                      setting_id,
                      region_proc,
                      loader_version,
                      NRV_FVS_DB.Has_Sub_Sampling (cn) has_sub_sampling
                 FROM nrv_setting_measurements
                WHERE setmeas_cn_of IS NULL) s,
              /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
              nrv_fia_mapped_conditions c1
        WHERE     t.setmeas_cn = p.cn
              AND p.setmeas_cn_of = s.cn
              AND t.cn = t2.tremeas_cn(+)
              AND t.mapcond_cn = c1.cn(+)
              AND t.off_plot_flag IS NULL
              AND (t.tree_status IS NULL OR t.tree_status IN ('D', 'L'))
              AND (   t.tree_class IS NULL
                   OR t.tree_class IN
                         ('AC',
                          'DE',
                          'GS',
                          'RF',
                          'RN',
                          'S',
                          'SV',
                          'UA',
                          'US',
                          'WS',
                          'H',
                          'U',
                          'D'))
              AND t.down_flag IS NULL;
    
    COMMENT ON TABLE FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM IS 'Provides FVS tree-level information from derived from various FSVeg data tables.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.STAND_CN IS 'Database control number for parent setting record.  This provides a foreign key to NRV_FVS_STANDINIT_VM.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.STAND_ID IS 'Stand Identification Code.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PLOT_CN IS 'Database control number for child setting record.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PLOT_ID IS 'Plot Identification number.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREE_CN IS 'Database control number for individual trees.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREE_ID IS 'Tree Identification Code - unique number.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREE_COUNT IS 'Tree Count rounded to 5 decimal places.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HISTORY IS 'History Code. 1=live trees, 6=died during mortality observation, 8=died before mortality observation period';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SPECIES IS 'Tree Species Code.  NRCS plants code.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DIAMETER IS 'Tree Diameter measurement in inches.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DIAMETER_HT IS 'Height in feet above ground where the diameter was measured.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DG IS 'Diameter Growth in inches.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HT IS 'Tree Height measurement in feet.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HTG IS 'Height Growth in feet.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HTTOPK IS 'Height to top kill is the height to the point of the tree of top kill in feet';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.CRRATIO IS 'Percent live crown.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DAMAGE1 IS 'Damage Code #1';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SEVERITY1 IS 'Severity Code corresponding to damage code #1';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DAMAGE2 IS 'Damage Code #2';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SEVERITY2 IS 'Severity Code corresponding to damage code #2';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DAMAGE3 IS 'Damage Code #3';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SEVERITY3 IS 'Severity Code corresponding to damage code #3';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREEVALUE IS 'Tree Value Class Code. 1=desirable, 2=acceptable, 3=cull, 8=non-stock-able plot.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PRESCRIPTION IS 'Prescription Code.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SLOPE IS 'Slope Percentage of level-2 setting (plot) or FIA condition class.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.ASPECT IS 'Aspect in degrees of level-2 setting (plot) or FIA condition class.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PV_CODE IS 'Potential Vegetation Code of level-2 setting (plot) or FIA condition class.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PV_REF_CODE IS 'Potential Vegetation Reference Code -- the document from which the PV_CODE was obtained.';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TOPOCODE IS 'Topography Code of level-2 setting (plot) 1=bottom, 2=lower, 3=mid slope, 4=upper slope, and 5=ridge top';
    
    COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SITEPREP IS 'Site Preparation Code of level-2 setting or FIA condition class. 1=none, 2=mechanical, 3=burn, 4=road';
    
    
    
    DROP PUBLIC SYNONYM NRV_FVS_TREEINIT_VM;
    
    CREATE OR REPLACE PUBLIC SYNONYM NRV_FVS_TREEINIT_VM FOR FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM;
    
    
    GRANT SELECT ON FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM TO PUBLIC WITH GRANT OPTION;
    ERROR:
    SQL> @nrv_fvs_treeinit_vm.sql
    SP2-0042: unknown command "DECODE(" - rest of line ignored.
    SP2-0734: unknown command beginning "t.radial_g..." - rest of line ignored.
    SP2-0042: unknown command "'C', NULL," - rest of line ignored.
    SP2-0734: unknown command beginning "TO_NUMBER ..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0734: unknown command beginning "DECODE(NRV..." - rest of line ignored.
    SP2-0734: unknown command beginning "0, t.radia..." - rest of line ignored.
    SP2-0734: unknown command beginning "1, t2.diam..." - rest of line ignored.
    SP2-0042: unknown command "NULL)))" - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0734: unknown command beginning "dg,             ..." - rest of line ignored.
    SP2-0734: unknown command beginning "DECODE(t.h..." - rest of line ignored.
    SP2-0734: unknown command beginning "DECODE(t.h..." - rest of line ignored.
    SP2-0042: unknown command "'C', NULL," - rest of line ignored.
    SP2-0734: unknown command beginning "ROUND (t.h..." - rest of line ignored.
    SP2-0734: unknown command beginning "htg,      ..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0042: unknown command "DECODE(" - rest of line ignored.
    SP2-0734: unknown command beginning "t.height_t..." - rest of line ignored.
    SP2-0042: unknown command "'C', NULL," - rest of line ignored.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0734: unknown command beginning "t.height_t..." - rest of line ignored.
    SP2-0042: unknown command "httopk," - rest of line ignored.
    SP2-0734: unknown command beginning "DECODE(t.c..." - rest of line ignored.
    SP2-0734: unknown command beginning "ht_to_live..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0734: unknown command beginning "t.crown_cl..." - rest of line ignored.
    SP2-0042: unknown command "DECODE(" - rest of line ignored.
    SP2-0734: unknown command beginning "t.crown_ra..." - rest of line ignored.
    SP2-0042: unknown command "'C', NULL," - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0042: unknown command "DECODE(" - rest of line ignored.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0734: unknown command beginning "'Y',      ..." - rest of line ignored.
    SP2-0734: unknown command beginning "t.crown_ra..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0734: unknown command beginning "DECODE(GRE..." - rest of line ignored.
    SP2-0734: unknown command beginning "LEAST (NVL..." - rest of line ignored.
    SP2-0042: unknown command "10," - rest of line ignored.
    SP2-0734: unknown command beginning "t.crown_ra..." - rest of line ignored.
    SP2-0734: unknown command beginning "crratio,  ..." - rest of line ignored.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
    SP2-0044: For a list of known commands enter HELP
    and to leave enter EXIT.
                 defect_cubic,
                       *
    ERROR at line 5:
    ORA-00933: SQL command not properly ended
    
    
    
    Comment created.
    (all the other reviews and more commands succeed.)

    So what could be causing it to crashin SQL/PLUS via PUTTY? It makes no sense to me.
    I also ran it through code formatter, because this will often show the ugly face of something that is hidden. But no luck.

    But just info... is... contradictory information by the Oracle PL/SQL programming manual that (I've just came across this the other day, is the only reason I remember it) clearly states that he cares for white space.

    It is not on the space characters in PL/SQL, but how SQL * Plus manages blank lines by default.

    Are you sure you have deleted all empty lines? I see at least two.
    Have you tried the suggested option? The error you have is very typical of this situation.

  • The listener and the environment files are not created in new &lt; RDBMS ORACLE_HOME &gt;

    Hello

    I'm upgrading from the EBS 12.1.3 11.1.0.7 Database 11.2.0.2.
    I followed the steps up to the implementation and running AutoConfig on interoperability Notes EBS R12 with Database 11 g 2 [1058763.1 ID]
    I completed successfully AutoConfig on the database layer. But I think not all files on < RDBMS_ORACLE_HOME > earpiece and same environment file.
    These files are already available on OLD < ORACLE_HOME >.

    Please suggest me if I miss any step.

    Thank you
    Katia

    Salvation;

    AC-00435: failed to create the directory: F:\app\mocppd\product\11.2.0\dbhome_1\admin\prod_srv-moc\bdump

    This path is available? You have the permission of w/r on this way?

    Respect of
    HELIOS

  • "the local site folder" field adds------and emits the error that / is not a valid path component

    Attempt to create a new Site, new service Site guest fields for the Site name and Site Local folder.  However, the first time I filled these fields I ended up accidentally a URL with the-character.  Now, whenever I try to fill these fields with the correct URL the DW application adds that-until the end of the field Site Local file and then issues an error message / (Yes, not the same character) is not a valid path component.  I deleted the WinFileCache*.dat file, deleted Internet Explorer saved files and restarted the computer, but the error persists.  Any ideas short of reinstalling DW?

    First of all, I would like to back in Nancy on (almost) all aspects of DreamWeaver! She has the knowledge and experience that I can only aspire to.

    But let me remind you that it is useless to "Set" your sites in order to use DW! DreamWeaver works just plain file with the previous folder/file structure of your machines operating system.

    At one point, I got maybe about 20 active sites running and I use DW to edit and update ALL the. I defined sites... ZERO!

    OK, I'm out of the closet! I am a user of non-traditional DW!

    As I use it, I don't really know the benefits of 'set' a site. Everything that DW can do by defining a site can also be done otherwise.

    So please don't feel that just because you have problems, define a site, that DW can work for you.

    DW can open and edit files on any drive on your computer. DW can bind to any other file on your computer with the "Point to File" function in the properties panel (images, Web pages, etc.).

    And for the FTP, I suggest you a true FTP program, such as Filezilla or SmartFTP... stronger and more versatile than the built in FTP of DW!

    So if for some reason, you feel that you need to "Set" your sites... go!

    But also realize that the 'Definition' of a site is not required to take advantage of the majority of the DW.

    Best wishes

    Adninjastrator

  • My help and support is does not and same time erorr code 0 x 80070424 shows and I didn't do the fix on erroe code no chance

    My help and support is does not and same time erorr code 0 x 80070424 shows and I didn't do the fix on erroe code no chance

    Hello

    (a) don't you make changes to the computer until the problem occurred?

    (b) when was the last time it was working fine?

    (c) what are the troubleshooting steps you tried to solve the problem?

    I suggest you follow the steps in the KB article below and check if it helps:

    http://support.Microsoft.com/kb/968002

    Hope this information is helpful

  • Re: HP Photosmart 6520 printer. Black ink will not print. Other OK. Tried the new cartridge and same problem

    I'm having the same problem. I ran the cleaning steps. I tried to lead the cartridges. I bought 2 black cartridges and both do not work. I've even used up my color ones do all the tests. Help please. I need my printer for school!

    Hi @ginim,

    Welcome to the HP Forums. I understand your printer is not printing black ink, and I would like to help. Please start with the procedure described in the following document; Printer prints a blank Page or do not print black or color ink for the HP Deskjet Ink Advantage year...

    If you have performed all the steps in the document above and the problem persists, not one of HPs, my personal recommendation is to use the solution put forward in the next video.  I suggest you only do this if the printer is out of warranty; How to fix an HP, not for printing black ink and lack of color printer

    In view of the comments, it seems that this will help you

    Even if the printer is maybe more under warranty, if the problem persists, HP may be able to offer something. Perhaps, they may offer you a discount on another model. What you can do, is to use the following link to create yourself a file number, then call and it can help to expedite the appeal process:

    Step 1. Open the link: www.hp.com/contacthp/
    Step 2. Enter the product number or select Auto detection
    Step 3. Scroll up to "still need help? Fill out the form to select your contact options.
    Step 4. Scroll down and click on: contact HP options - click Get phone number

    File number and phone number are displayed.

    Since you just bought the printer you need to know, HP printers usually have a warranty of 1 year from the date of purchase, you can check the warranty using the following if you wish; Guarantee cheque.

    I hope this helps.

    If this resolves the issue, please let me know if we can help others who may be faced with the same problem.

  • Can someone help me because I am student who has recently renewed my membership but when I got to open photoshop it is not have she asked this same software you license I pay for the student kit and I can't redownload photoshop on my mac

    Can someone help me because I am student who has recently renewed my membership but when I got to open photoshop it is not have she asked this same software you license I pay for the student kit and I can't redownload photoshop on my mac because "you run an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms "!"

    When you install the 2015 cloud creative, all or part of the CC apps show 'trial start or buy now' in the creative cloud desktop application, please first try disconnect you creative cloud and folder in: connect and disconnect activate Cloud Creative applications

    If this does not help, see this link:

    https://helpx.Adobe.com/manage-account-membership/CC-reverts-to-trial.html

  • I have an object that follows a path and I want another object is placed in a different position, but follow the same exact path?

    I have an object that follows a path and I want another object is placed in a different position, but follow the same exact path? I NEED HELP!

    Easy: Copy and paste images keys, then select all the keyframes in the layer followed and drag them to the left.

    More complex: use expressions - Motionscript.com trails of the creation

  • Why is it possible of the ripple is not delete an entry and exit section of a track of the timeline, while that in the same area there is one cut on another way?

    Why is it possible of the ripple is not delete an entry and exit section of a track of the timeline, while that in the same area there is one cut on another way?

    I posted a topic on it as well.  Seems like if update the CC has allowed me to finally extract any section marked in and out of any track independently of any other person when sync lock is disabled.  Very powerful (and very basic) tool!

  • Iomega Home Media Network, Cloud edition - sharing "is not a valid path.

    I have an iomega NAS on my home network and I regularly wind up with Iperius. I now hit a question - if Iperius has treated a few files, it gets the access denied message.

    If I can go in the NAS using the storage LenovoEMC Manager, discovers an action, for example one called "Ned backups" and then click "Show content" I get the message "Ned backups is not a valid path,". "

    I can solve this problem to reboot the NAS - but there again after starting a return until you get the same problem again.

    The NAS has been working well for a number of years.

    Hello Ned-100,

    First, back up all critical data.

    What you are describing usually boils down to an intermittent problem (mechanical) road.

    With a disk drive, the drive is not replaceable by the end user.

    To verify the cause of the behavior, you need to contact technical support:
    https://Lenovo-EU-en.custhelp.com/app/answers/detail/A_ID/14722

  • Retrieving error - could not find the path of the image... M:/RecoveryImage/install.wim

    So, I went out and bought the USB on the gateway site to restore this laptop again and when I tried to do, he says recovery failed - could not find the path of the image M:/RecoveryImage/install.wim.

    I contacted support and they issued me a replacement USB drive, I get the same failure.

    I diagnosed the HARD drive and it passes.  I used diskpart to 'clean up' the disk drive HARD all nothing doesn't.

    [Under the direction of privacy] order number

    What gives?

    Acupro1,

    I you sent a PM with respect to research purposes.

  • Applications Windows XP Startup - Bug: the .exe file name only, not the full path

    Using Windows XP, run-msconfig-startup online online, only the name of the Executive file of the Applications that load and boot at startup are shown - this name sometimes not easily indicates he belongs as to which Application.
    Therefore, it becomes difficult to decide to uncheck (stop autoloading at startup) or not - unless the full path to its location is revealed. But this small window no poster not the full path - even if the mouse pointer is hovered over an entry in the list of applications.
    Third-party software (AnVir Task Manager Free) displayed the full path when the mouse pointer is moved to an entry.
    Microsoft should take the queue and improve this Service / installation / functionality, please.

    On my Windows XP, there is a 'Command' column / window for the start of the tab that displays the full path to the file.  If this column is not wide enough to show the entire path, place your cursor on the line that separates the column header in order for the column heading 'Image '.  The cursor turns into a line with arrows pointing to the left and right upright.  Click and hold the mouse button down and drag to the right.  The column will expand and a horizontal lift will open down to scroll all right.

    If this does not satisfy your needs, try the more technical version of msconfig Microsoft-"Autoruns".
    HTH,
    -JW
  • Get a large red cross saying that the system is not operational. Went and checked in services.msc and the setting says Automatic (delayed).

    Original title: necessary emergency aid

    Windows lost completely. After trying a variety of things, I finally got one to start, but my entire system had returned back to the year 2012.

    After updating my anti-virus and other security programs, I tried to check the updates of Windows, but I get a large red cross saying that the system is not operational. Went and checked in services.msc and the setting says Automatic (delayed). You run the Windows Update Troubleshooting Wizard and he said that he had set things so I rebooted to try check update again. However, I get the same message.  There is nothing showing at all when I click "update history", but check "updates installed" shows things are fine until 2012.

    Please, how can I get my system again right?

    Restart your computer and wait 30 minutes for the system to operate before you download information. When the review much, not Event Viewer log files all problems show in the period immediately after the computer has booted.

    Please provide a copy of your system information file. Type the system information in the search box above the Start button and press the ENTER key (alternative is select Start, all programs, accessories, System Tools, system information). Select file, Export and give the file a name noting where it is located. Not to place the cursor in the body of the report before exporting the file. The system creates a new information file system each time system information is available. You must allow a minute or two before the file is completely filled before exporting a copy. Please download the file to your OneDrive, to share with everyone and post a link here. Normal mode preferred report. Please say if the report was obtained in safe mode. If the report is in one language other than English, please indicate the language.

    Please download and share with everybody fresh copies of your System log and journal of the Application (two files) of your event viewer on your disc one and post a link here. You can delete any previous copies of your OneDrive records.

    To access the system, log, select Start, Control Panel, administrative tools, Event Viewer, in the list on the left of the window, expand Windows logs and select System. Place the cursor on the system, select the Action in the Menu and record all events like (the evtx default file type) and give a name to the file. Do the same for the application log. Do not offer not filtered files. Do not place the cursor in the list of reports before selecting the Action from the menu. Do not clear the logs so that you have a persistent problem.

    For assistance OneDrive see paragraph 9.3:
    http://www.gerryscomputertips.co.UK/MicrosoftCommunity1.htm

  • Build request failed with the message: helloWorld/Dokumente / is not a valid path

    Hello

    Unfortunately ripple does not work under Windows 7, so I tried on Mac. On Mac, I have the following parameters in the ripple:
    SDK path: / Developer/SDKs/Research in Motion/BlackBerry WebWorks SDK 2.3.1.5
    The project root: / Dokumente/helloWorld
    Archive name: helloWorld
    Output folder: / Dokumente/BlackBerryOutput

    There is the file config.xml and index.html file in the helloWorld file

    I have for this site:

    https://bdsc.webapps.BlackBerry.com/HTML5/documentation/ww_getting_started/creating_an_app_1885567_1...

    When I try to pack in ripple, I get:
    Build request failed with the message: helloWorld/Dokumente / is not a valid path

    There is a message ' no simulators found "on the bottom of the settings, too." '

    I tried different paths, one of my localhost in Apache, but nothing works. What's wrong??

    Well, the path was not "consistent". I hate the f... Mac: / Users/Valentina/Documents/helloWorld to the project root and/Users/Valentina/Documents/BlackBerryOutput was necessary.

    Just in case somebody stumbles on the same problem.

  • Problem with the Java PATH and HOME.

    Hey, so I tried to run a Java program through the console but I got an error that says:

    ERROR: JAVA_HOME is not set and no "java" command could not be found in your PATH.

    Please set the JAVA_HOME variable in your environment to match the installation location of java.

    So I edited the variable path: C:\Program Files\Java\jdk1.8.0\bin\java.exe and the JAVA_HOME variable to: C:\Program Files\Java\jdk1.8.0\bin\java.exe and I also tried to use jre8 instead of jdk1.8, but the program still did not run. Already, I went on the java Web site and the site Internet said the same thing about what to do so I ask here see if someone knows how to do this. I already know how to change system variables, but I'm doing something wrong with the path and the JAVA_HOME or y at - it a bug or something?

    Hello

    Check with the support of the Java program and the Support of Java - e-mailer or enter
    a message on their site if possible. Possible the program makes a wrong call.

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

Maybe you are looking for

  • An email will not send and I get ' syntax error (#5.5.4).. What does that mean?

    I try a group mailing. I put in the group as a recipient. It gives me the error above. I use Thunderbird with Windows 8.1.

  • Preinstalled software key - how to check what operating system it is?

    How can I know what means this key: H09468SP When I check Toshiba EMEA for my unit details it shows it as the pre-installed software package. The reason why I ask is that my installed software is different from the license key and I want to know what

  • Emular / Simular Compact RIO

    Hay alguna manera trabajar o hacer simulando Québec tengo el RIO Compact the tests? Ocupo hacer unas secuencias, pero aun no tengo el RIO Compact how. Yo as recuerdo con las Renault suckers hacer tus VI y poner una virtual DAQ, is you can hacer algo

  • HP 250 G3: Audio Driver

    HelloI asked the GIS. Paul and reacted very quickly by giving me the addresses on the driver on my problems but I can not communicate on the same post I apologize if they reopen another. The GIS. Paul gave me this address for the audio drivers with t

  • HP Pavilion g7-1260us: CPU Upgrade on my HP Pavillion G7?

    I want a new quadcore processor in my HP Pavilion g7-1260us but I'm not sure what would be not compatible. I have a 2.20 GHz 2nd generation Intel Core i3 - 2330M processor and I was hoping upgrading to a powerful i7 What i7 would be compatible with m