Where output to log file stored physicaly?

hello,
I want to setup JAVA WebStarts "Output Options" & "Log to file" by some application, but question is where this information stored physicaly? (registry or some file)
thanks
Nerius

I found i by myself
the problem was WINDOWS NT !
so it stores configuration on
%SystemRoot%\Profiles\<CurrentUser>\.javaw\javaw.cfg
Nerius

Similar Messages

  • Where are the MMB files stored in unix box

    Hi all,
    Can anyone tell where are the MMB files stored in unix box. Thanks in advance.
    Regards,
    Sandeep V

    Hi Thomas,
    Thanks for the reply, I got the FNDMENU.mmb file , but Iam not able to find the menu item which Iam searching for. There are some special menu items like SPECIAL , SPECIALB and SPECIALC. So, when I select release from plan menu item special27 is called , but Iam not able to find release in this menu. Can you please help me in this regard.
    Regards,
    Sandeep V

  • Oracle script:How to avoid output in log file?

    Hi,
    I am try to create the xml file using some sql statements in a script.
    I dont want to display the output from these sql statements in log file.
    I tried with SET TERMOUT OFF, even then i am getting the output.

    I am getting the output even after using the SET echo off.
    I have given the following SET options,
         SET heading off
         SET feedback off
         SET verify off
         SET wrap off
         SET pagesize 0
         SET linesize 3000
    SET server off
         SET echo off
    I do not want to display the output in log file when i run the concurrent request.

  • Where do archived log files go?

    Hi Guys,
    This should be a simple one but is turning out to be a real
    pain. Where do the log files go when they are archived? I am
    looking in the logs directory but cannot find them anywhere ...
    even after searching the entire hard drive. I have maximum number
    of log files set to 10 and the maximum log file size set to 5000kb.
    Thanks, Carl.

    I'm having the same frustration as the original poster. I
    have CF8 installed under Apache HTTP Servers (windows) using the
    defaults mostly.
    In CF7, if I archived a log file, the old file would be
    renamed with a numeric suffix (application.log.1,
    application.log.2, etc.) in the cf_root/logs subdirectory, and a
    new log file would be created. However, in CF8, the archive
    function seems to just delete the old file and create a new one.
    I've tried searching fot the archived file with no results. I've
    also restarted CF; still no archived logs found.
    Is there something in the CF8 Administrator that must be
    explicitly set to active archiving? The only setting I see is
    "Maximum number of archives: 10" which is the default.

  • Where Are The Master Files Stored For iWeb?

    I can't seem to figure out where the master files are stored in iWeb. For example I was trying to help of friend with his iWeb website, so I told him to send the files - and then I was planning to load them into iWeb on my computer... but I couldn't figure out where to put them... and he did not know where they were either!
    Question: Where are the master files stored for iWeb?

    http://docs.info.apple.com/article.html?artnum=303670
    http://iWebFAQ.com/1Site2Computers
    http://iWebFAQ.com/#Backup

  • Where is Catalog Manager log file stored

    Hi,
    I'm getting error "An internal error occured during: " when trying to create report or use XML search or replace uitility. Since there is no error code or anything that would help to understand the reason, I'm now looking for log file where such events would be logged in more detail.
    Is there such log file at all, and if yes - what is the path or at least log file name?
    Thanks in advance

    The Catalog Manager uses Web Services to connect to the Presentation Services Plug-in so I would think you should any errors on the Presentation Services Plug-in web application log or in the Presentation Services log in the BI directories.

  • Amending script to read list of computers, run script and output to log file

    Hello all,
    I have cobbled together a script that runs and does what I want, now I would like to amend the script to read a list of computers rather than use the msg box that it is currently using for the strcomputer, if the computers doesn't respond to a ping, then
    log that, if it does continue with the script and when it is complete, log a success or failure. I have just started scripting and would really appreciate some help on this one,thanks. I created the script to fix an SCCM updates issue and failing task sequences,
    so it may prove useful to others.
    There are msg box entries that can be removed that were originally in there for the user running the script.
    'setting objects
    Dim net, objFSO, shell
    Dim objFile, strLine, intResult
    Set objnet = CreateObject("wscript.network")
    Set objFSO = CreateObject("scripting.filesystemobject")
    Set objshell = CreateObject("wscript.shell")
    strfile = "c:\wuafix\wuafix.vbs"
    strUser = "domain\user"
    strPassword = "password"
    'getting server name or IP address
    strComputer=InputBox("Enter the IP or computer name of the remote machine on which to repair the WUA agent:", "Starting WUA Fix")
    'check to see if the server can be reached
    Dim strPingResults
    Set pingExec = objshell.Exec("ping -n 3 -w 2000 " & strComputer) 'send 3 echo requests, waiting 2secs each
    strPingResults = LCase(pingExec.StdOut.ReadAll)
    If Not InStr(strPingResults, "reply from")>0 Then
    WScript.Echo strComputer & " did not respond to ping."
    WScript.Quit
    End If
    'Check if source file exists
    If Not objFSO.FileExists(strFile) Then
    WScript.Echo "The source file does not exist"
    WScript.Quit
    End If
    MsgBox "The WUA Fix is in process. Please wait.", 64, "Script Message"
    'mapping drive to remote machine
    If objFSO.DriveExists("Z:") Then
    objnet.RemoveNetworkDrive "Z:","True","True"
    End If
    objnet.MapNetworkDrive "Z:", "\\" & strComputer & "\c$", True
    'creating folder for install exe on remote machine
    If (objFSO.FolderExists("Z:\wuafix\") = False) Then
    objFSO.CreateFolder "Z:\wuafix"
    End If
    'copying vbs to remote machine
    objFSO.CopyFile strFile, "Z:\wuafix\wuafix.vbs"
    'set command line executable to run a silent install remotely
    strInstaller1 = "cscript.exe c:\wuafix\wuafix.vbs"
    'strInstaller2 = "c:\wuafix\wuafix.vbs"
    strExec = "c:\pstools\PsExec.exe "
    'objshell.Run strExec & " \\" & strComputer & strInstaller1
    On Error Resume Next
    result = objshell.Run(strExec & " \\" & strComputer & " " & strInstaller1)
    If Err.Number = 0 Then
    WScript.Echo "PSXEC Runing WUA fix remotely"
    Else MsgBox Err.Number
    MsgBox result
    End If
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set colLoggedEvents = objWMIService.ExecQuery _
    ("SELECT * FROM Win32_NTLogEvent WHERE Logfile = 'Application' AND " _
    & "EventCode = '4'")
    Wscript.Echo "Event Viewer checked and Fix Applied:" & colLoggedEvents.Count
    MsgBox "Removing mapped drive Please wait.", 64, "Script Message"
    If objFSO.DriveExists("Z:") Then
    objnet.RemoveNetworkDrive "Z:","True","True"
    End If
    MsgBox "The WUA Fix has been applied.", 64, "Script Message"
    quit
    wscript.quit
    Any help appreciated and explanations on the process would be great as I would like to learn the process involved, which is difficult when working during the day.
    many thanks

    Hi Bill,
    long story short, I have approx. 2800 clients with an old entry in WMI for updates that the sccm client cannot clear or run because they do not exist anymore, so the client will not run updates or use a task sequence because of this, so my script fixes this
    and does a couple of other things, I have found another way to do this by running  a different script that uses WMI to call a cscript function that uses the wuafix.vbs that is coped to the machine, I am also changing the echo entries to output to a log
    file instead so that I can track what client has run the fix andn which ones haven't.
    If you have any suggestions then please let me know, nothing nefarious :)
    many thanks

  • Procedure output as Log files

    Hi all,
    Can any one of you can explain me how to generate the stored procedure output as a ".log" file in oracle ??????
    Thanks in advance,
    Vinay A

    It depends on what you mean by stored procedure output, and on what tool you are using.

  • Where did my log files go?

    I just installed OAS, and deployed a small web application (JSP and Servlets). The app is working fine with a couple of exceptions. I went to check the log files to see what went wrong, and couldn't find them.
    I realize there are several components of the server, each of which having their own log files. After searching for a few minutes, I did a search through the entire ORACLE_HOME directory looking for files containing text which should have appeared in the log files. I was unable to find any such log files.
    Do I have to enable logging? Point it to a certain file? Am I just not looking in the right place? Any help would be appreciated; I'm a bit lost.
    When deploying and running the application in Tomcat, the logging is stored in the 'logs' directory, just as you would expect. So I know that the logging is working; I just can't seem to find it when the app is running in OAS.
    Thanks,
    -Dave

    You may be looking for the stdout/stderr process output.
    Almost all components in Oracle Application Server 10g
    (9.0.4) are managed (at the process level) by OPMN. To
    preserve the stdout and stderr of every process, all
    processes started by OPMN have their stdout/stderr
    redirected to a file (one file for each running process).
    This file is sometimes referred to as the "console log".
    Console logs are located in $OH/opmn/logs and have a
    filenames containing '~' chars. Identifying which
    console log file is associated with which process
    should be intuitive.
    When a process terminates and is replaced by a new
    process, console log output from the previous process is
    preserved and the replacement process appends to the
    end of the console log file.
    I just installed OAS, and deployed a small web
    application (JSP and Servlets). The app is working
    fine with a couple of exceptions. I went to check
    the log files to see what went wrong, and couldn't
    find them.

  • Where are iPoto modified files stored on my computer?

    When I go to Music/iTunes/, I can find a subfolder that includes many subfolders of Albums, Artist names, and the songs I put into iTunes. Same thing with email files. When I go to Pictures/: I can see an iPhoto Library icon (but no /subfolders) which I assume contains all the files in some kind of compressed archive.
    My backup harddrive crashed (where I stored my iPhoto subfolders) and I found two iPhoto Library icons, one sized 2.2 MB and one sized 5.7 MB? The bigger one would not import pictures, only the smaller.
    I would like to know where my modified photo files are stored in the my main harddrive,

    Thanks Terrence, that solved my question.
    Before the two replies I received, I had double clicked on the smaller file and it started importing. I immediately stopped that import and started importing (from where, I could not tell) using the larger Library, and it took all night to do so. Thankfully: the files were GB, not MB. However the import created thousands of Faces (which I had never tried to do), so now it is 8.75 GB in size.
    Then I checked my post and found your solution. I control-clicked on both Libraries, and followed your helpful instruction to not change anything, but looked around to see what was there. The smaller Library had separate folders for each year from 1999 to 2006. So, I assumed it was an older Library containing noting past 2007. Looking in those yearly folders only resulted in what appeared to be subfolders of data files. When I looked into the larger library, it had the same folders (1999-2006 only), but it had imported photos from 2007 thru 2010 also?? Looking around for those years, I found a folder called "Originals" which contained subfolders for 2000,3,4,& 6-2010 only. In those folders were jpegs of a lot of my later photos.
    Therefore, I assume that the "Original" folder contained photos that had been modified and were now "enhanced originals", but it still seems funny that the Library did not contain folders separately named "2007" - "2010" to keep track (data files) of those photos.
    Looks like I have all my thousands of photos, but since I am an inquisitive engineer, are my assumptions correct, and is that archival folder methodology I just described (previous paragraph) something that is going to create a problem?

  • When i send a file over iChat to another mac it compresses the file, where is this compressed file stored?

    Today i was transfering a few folders with pictures and videos over to another mac and I noticed that before i sent the file iChat would compress it.  Now this is understandable because they were fairly large files, over 2GB, and this would make them transfer faster.  The problem is that I was transfering the files because my mac is low on hard drive space and I was trying to free some up.  By compressing the files first it was using up more space on my hard drive and I quickly cancelled the compression.  I soon realized though that my hard drive space was still disappearing into thin air. I only had 6GB left and was running out fast.  As it reached 2GB I began to quickly delete large files I no longer needed hoping that I wouldn't run out of space. It dropped all the way down to 12.4MB before it finally stopped, even with me deleting files.  I'm not quite sure what was happening to all of my hard drive space, but was wondering if maybe iChat continued to compress the files even after I cancelled the compression.  Anyways if anyone knows why this happened or where iChat stores the files it compresses that would be greatly appreciated.

    Hi,
    I have heard of this before.
    One report suggested it was only PDF files their case.
    I cannot replicate it with any pic files (Over 2Gb) PDF or otherwise or files and folders combos.
    My tests were from Lion/iChat 6.0.3 to Snow Leopard (iChat 5.0.3)
    I would have thought iChat would have created the Zippped/Stuffed files in the same folder as the original items
    (i.e pic in the pictures folder (or relevant subfolder) and other files and documents in the Documents folder.
    With any application that does Stuffing/Zipping it will create temporary space for doing so.
    Much like the way a graphics app creates a Scratch file to keep the 20 or so Undos it works with.  (with graphic Apps you can make the Scratch file on another Drive if you have one which can help)
    Do this:-
    with iChat Open go to the Window Menu.
    Select the File transfers item
    In this Window (that pops up) select the File that was going to be Transferred.
    When it is highlighted then do a Right-Click or Control Click and select the option to Show in Finder
    Does it list the zipped file ?
    10:21 PM      Friday; February 10, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • In Mountain Lion - where are the calendar files stored?

    My wife synced her calendars with icloud and google calendar and wiped out her events. I have backups on a HD and Time Machine but I do not know where the calendar files are stored in ML.
    I previous OS's I would look in Application Support but that does not seem to work in ML.
    Where can I find these calendar files stored.
    Thank you

    They are in ~/Library/Calendars, where the '~' represents the user's home folder. The problem is that that Library folder is invisible now. You can easily access it by holding down the option key and choosing Library from the Finder's Go menu.

  • Where is this log File

    Hi ,
    If anybody could guide where can I check this log file "EAIObjMgr_enu_0016_16777244.log" ?
    Thanks :-)

    If you are asking where to find the log file, it will be on the Siebel server running that EAI process (so you may have to look at multiple servers to find it).
    The exact location varies depending on operating system.
    Windows -- \siebsrvr\log
    Non-Windows -- /siebsrvr/enterprises/[enterprise]/[server]/log
    Hope that helps.
    Stevan

  • Robocopy unicode output jibberish log file

    When I use the unicode option for a log file or even redirect unicode output from robocopy then try to open the resuting file in notepad.exe or whatever, it just looks like jibberish. How can I make this work or when will Microsoft fix it? Since Microsoft put that option in there, one supposes that it works with something. What is the expected usage for this option?
    Yes, I have file names with non-ASCII characters and I want to be able to view them correctly. Without unicode support robocopy just converts such characters into a '?'. It does, however, actually copy the file over correctly, thankfully. I have tried running robocopy from PowerShell and from cmd /u. Neither makes any difference. Also, one odd thing is that if I use the /unicode switch, the output to screen does properly show the non-ASCII characters, except that it doesn't show all of them, such as the oe ligature used in French 'œ'. That was just converted into an 'o' (not even an oe as is usually the case). Again, it does properly make a copy of the file. This just makes it not quite possible to search log results.
    Let's see if this post has those non-ASCII characters transmuted when this gets posted even though everything looks fine as I type it. âéèïöùœ☺♥♪

    When I use the unicode option for a log file or even redirect unicode output from robocopy then try to open the resuting file in notepad.exe or whatever, it just looks like jibberish. How can I make this work or when will Microsoft fix it? Since Microsoft put that option in there, one supposes that it works with something. What is the expected usage for this option?
    Yes, I have file names with non-ASCII characters and I want to be able to view them correctly. Without unicode support robocopy just converts such characters into a '?'. It does, however, actually copy the file over correctly, thankfully. I have tried running robocopy from PowerShell and from cmd /u. Neither makes any difference. Also, one odd thing is that if I use the /unicode switch, the output to screen does properly show the non-ASCII characters, except that it doesn't show all of them, such as the oe ligature used in French 'œ'. That was just converted into an 'o' (not even an oe as is usually the case). Again, it does properly make a copy of the file. This just makes it not quite possible to search log results.
    Let's see if this post has those non-ASCII characters transmuted when this gets posted even though everything looks fine as I type it. âéèïöùœ☺♥♪
    Uses /UNILOG:logfile   instead of /LOG:logfile

  • Where is the log file in 10.1.3 AS?

    Hi
    I am writing System.out.println statements and want to check those messages in the log file. But not sure where the log file is. Appreciate if you can respond.

    By default all OC4J stderr and stdout messages go in following file:
    $ORACLE_HOME/opmn/logs/OC4J~home~default_group~1
    If you want you can change it, refer following for that:
    http://download.oracle.com/docs/cd/B32110_01/web.1013/b28950/sysprops.htm#CHDDCCJI
    Thanks
    Shail

Maybe you are looking for