Read/Write App Files Under Limited User Account

Hi All,
My desktop app is intended for Windows only. I'm writing files to the hard disk to store app specific configuration.
The applications main data source is a ZIp file that consists several XML files. The user can store this ZIP anywehre they like and the application will extract the necessary files to a temp dir so that it can read in data.
When logged into a PC as either an Administrator or Power User, I am able to read write my config files and extract XML files from the ZIP with no problem.
When logged in as a user with "limited" access, I can only read and write the config files. But when I go to extract any XML files from the ZIP, it seem to get denied due to insufficient permissions.
The working directory for storeing all these files is: C:\Documents and Settings\<USER NAME>\Application Data\<MY APP>\
Don't users with limited access have full read/write permissions to their own home directory?
If not, what can be done to give them full read write access? Is there perhaps some other location I should be using?
Also, would code signing from some place like Verisign do any good?
I'm targeting Windows 2000/XP.
Thanks in advance.
Regards,
Jim

You can also access the user folder through the registry:
     public static final String APP_DATA_FOLDER_CMD = REG_QUERY_UTIL
          + "\"HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\"
          + "Explorer\\Shell Folders\" /v AppData";
      * Gets the current user Application Data folder path defined in the
      * registry.
      * @return The current user Application Data folder path.
     public static String getCurrentUserAppDataFolderPath()
          return queryREG_SZ(APP_DATA_FOLDER_CMD);
      * Performs the query in the registry for the specified value type.
      * @param queryString The query to be performed.
      * @param valueType The value type.
      * @return The value data for the specified value name in the registry.
     public static String queryREG_SZ(String queryString, String valueType)
          try
               Process process = Runtime.getRuntime().exec(queryString);
               StreamReader reader = new StreamReader(process.getInputStream());
               reader.start();
               process.waitFor();
               reader.join();
               String result = reader.getResult();
               int p = result.indexOf("REG_SZ");
               if (p == -1)
                    return null;
               return result.substring(p + valueType.length()).trim();
          catch (Exception e)
               return null;
     }This will get you the user directory from the registry. However, my issue is
that the value returned was:
C:\Documents and Settings\<USER NAME>\Application Data
Which is great, but that folder didn't exists on my computer. I cannot find
any documentation to say why it would be there. Except I had no Application
Data folders under any user. I have XP.
So when running the program on one computer, I had no valid folder to write
to and it wouldn't let me create it. Said the <USER NAME> folder could not
be written to. canWrite() returned false and the directory could not be
created.
On another computer, I had the Application Data folder, the canWrite()
returned false, yet I was able to create a folder and file inside.
I checked the default <ALL USERS> directory and the Application Data folder
did not exist there.
I don't understand how I am supposed to work around it...
If the folder doesn't exist, I need to be able to create it, whether it's in the
<ALL USER> or <USER NAME> folder.
I guess I am counting on the canWrite() to be accurate. Yet it appears that
I cannot rely on the canWrite() since a false was returned. I wrote!!
So confused ... need to be able to write to this folder on any computer...
Help!!

Similar Messages

  • DVD Writer not available under Limited User account

    Hi
    In one of our computers, with Encore CS3 installed and a Pioneer DVD Writer (with functional ASPI layer), I have the following problem :
    If I try to export a project to DVD burning, the writer is not available, but if I modify the account of the user to set it as an administrator, the writer appears on the DVD Export window.
    Can you help me ?

    I installed Nero Burning Rights to give rights to Everyone and changed writer drive letter to first available letter (writer + reader on the same computer) and it works !

  • DSC powershell xwindowsprocess to execute batch file under different user account

    DSC powershell run under "NT AUTHORITY\SYSTEM".
    I am trying to execute a batch file under different user account using xwindowsprocess in DSC resource kit.
    I created a custom dsc resource with 3 parameters namely Exepath, Arguments, Credential.
    I received those parameter values in settargetresource method.
    CallPInvoke
    [Source.NativeMethods]::CreateProcessAsUser(("$ExePath "+$Arguments), $Credential.GetNetworkCredential().Domain, $Credential.GetNetworkCredential().UserName, $Credential.GetNetworkCredential().Password)
    I tested it by invoking a batch file and writing username under which it executes to a text file.
    After executing, the output text file still contains the "Systemname$".

    Configuration Sample_xService_ServiceWithCredential
    param
    [string[]]
    $nodeName = 'localhost',
    [System.String]
    $Name,
    [System.String]
    [ValidateSet("Automatic", "Manual", "Disabled")]
    $StartupType="Automatic",
    [System.String]
    [ValidateSet("LocalSystem", "LocalService", "NetworkService")]
    $BuiltInAccount="LocalSystem",
    [System.Management.Automation.PSCredential]
    $Credential,
    [System.String]
    [ValidateSet("Running", "Stopped")]
    $State="Running",
    [System.String]
    [ValidateSet("Present", "Absent")]
    $Ensure="Present",
    [System.String]
    $Path,
    [System.String]
    $DisplayName,
    [System.String]
    $Description,
    [System.String[]]
    $Dependencies
    Import-DscResource -Name MSFT_xServiceResource -ModuleName xPSDesiredStateConfiguration
    Node $nodeName
    xService service
    Name = $Name
    DisplayName = $DisplayName
    Ensure = $Ensure
    Path = $Path
    StartupType = $StartupType
    Credential = $credential
    $Config = @{
    Allnodes = @(
    Nodename = "localhost"
    PSDSCAllowPlainTextPassword = $true
    #Sample Scenarios
    $credential = Get-Credential
    Sample_xService_ServiceWithCredential -ConfigurationData $Config -Name "Sample Service" -DisplayName "Sample Display Name" -Ensure "Present" -Path "C:\DSC\TestService.exe" -StartupType Automatic -Credential $credential
    ¯\_(ツ)_/¯

  • I downloaded itunes 10.5.  During  install I get a message that states the file cannot be located because it is on a network resource that is unavailable.  I tried to locate the file,but cannot find the apps file under my user name or any other place

    I downloaded itunes 10.5 on my laptop.  upgrade from 10.4.1.  Install was terminated because "the feature you are using is on a network resurce that is unavailable.
    I tried to locate the file under my user name sub file apps, but could not

    you need to specify the database when you exec. the commands.
    ALTER DATABASE database_name SET ENCRYPTION OFF --> user database.
    DROP DATABASE ENCRYPTION KEY --> user database.
    DROP CERTIFICATE certificate_name --> master database
    DROP MASTER KEY --> master database.
    Best Regards,
    Ahmad Elayyan.
    Regards, Ahmad Elayyan Database Team Leader

  • Adobe Reader will not run with limited user account.

    I am trying to upgrade our Citrix Server Farm, from Reader 8.0 to 9.1, and am running into some issues.  First I uninstalled Adobe Reader 8.0 and then installed 9.1 from Adobe's site. Aftter the install completed I was able to run 9.1 without any problems.  However today, when some limited users started working, they started getting runtime errors.  This only happens with non-administrator user accounts.
    the error messages are attached.
    After clicking OK, Adobe Reader terminates.
    Any insight would be greatly appreciated.

    I do believe that I solved my own problem... almost.
    http://kb2.adobe.com/cps/404/kb404597.html
    "The affected user has a redirected Application Data folder and as a result the network path containing the Application Data uses a UNC path that begins with \\. This UNC path causes Acrobat 9.0 or Adobe Reader 9.0 to incorrectly parse the Application Data path and give the error message."
    The article tells me to upgrade to Adobe Reader 9.1...   WTF!!!  9.1 is when this problem started, 8.0 worked great!  I would stay with 8.0 if I could, but some of our programs require 9.1.

  • PowerPoint file won't open under one user account, but does under another account

    Hello,
    I have a 10.9.5 macbook pro here that will not open a Powerpoint file under one user account. It is up-to-date with Software updates and Office 2008 is up-to-date as well. When I try to open the PowerPoint file, I get the message, "PowerPoint closed unexpectedly" and I can choose to Reopen (which opens a blank presentation) or OK (which closes PowrPoint). I have tried double-clicking the file from the Desktop where is resides, File --> Open from within PowerPoint and also saved it to a flash drive and tried opening from there. It does open under the admin account on the same machine and it will also open on other machines. Other PowerPoint files are opening fine...it's just a problem with the one file. The user has Read & Write privilege to the file. I tried Repairing Disk Permissions, I have tried deleting microsoft plist files, and lastly, have re-installed Office 2008. At this point, I can only think to try deleting the user account and re-adding it, but wanted to see if anyone had any ideas before I go that route.
    Thanks in advance for any suggestions!

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • "Write Error - Limited User Account"

    I get the following message after having worked on a flash
    file for a couple of hours:
    "An error occured while attempting to write to a file. If you
    are logged in with a limited user account, then you may be
    attempting to write into another user's folder which is not
    supported."
    I have a perfectly legit copy of MX Studio 2004 and is
    registered and in good standings at Adobe. I saved my file every 15
    minutes or so. Now, I can't save it, or do a save as either, plus
    the file has vanished. I still actually have it because I have not
    closed Flash, but it will be lost once I shut down. The SWF file is
    still in my file system, but the FLA file has disappeared.
    This has happened to me once before - any idea what's going
    on?
    Thanks!

    sounds like a hard disk error or fragmentation, try saving
    the file under a different name (save as...) in a different
    directory folder.

  • 9.3.0 File association "icon" in XP Pro limited user account problem?

    XP Pro SP3 all MS Updates.
    Problem occurred after updating Adobe PDF reader to 9.3.0 via the program update feature
    File association ok but weird thing is on Limited user account.  The icons for a PDF file are not Adobe ones it is a generic one.  If I try to open the file it opens with the correct program.
    Problem evident on desktop icons and in looking in windows explorer.
    If I attach a file in my email program (Outlook Express) it shows the correct icon.
    These files were created from various pdf creators.  Ofice 2007 Mac SO X 10.4.11 Quartz, Adobe InDesign CS4 (6.0) and InDesigdn CS4 (5.0) so it doesn't seem matter what program created the files.
    I am at a loss to figure out how to get the correct icon in the Limited User Account.  The correct icons show up in the Admin account.  Note the files do open with the adobe reader.
    Thanks
    Celeste

    Gosh anyone out there have any idea how to resolve this?  The generic MS icon for the files in the limited user account is annoying as all get out.  Anyone out there from Adobe or is this not a monitored forum.  Not sure.  Thanks
    Note: Correct program is accessed just the icons for the PDF files in the limited user account are the generic MS ones.
    Celeste

  • Why don't java applets run when using Firefox 4.0 in a windows limited user account?

    Java applications will not run in Firefox 4.0 when the windows user/process only has limited user access rights. The systems, I see this behaviour on have Windows XP Pro SP3, Firefox 4.0 and JRE 1.6.0_24 installed. The java application will run when when full administrative rights are present. This issue did not occur with the 3.6 firefox version that was previously installed.

    The problem also exists with the newer Firefox 4.0.1 and Java 1.6.0_25 versions.
    Enabling administrative rights resolves the issue ... though this defeats the purpose of using a limited user.
    The underlying bug appears to be in the Firefox java plugin detection code. The issue is related to the detection code requiring write access to the HKLM\SOFTWARE\mozilla.org windows registry key. The limited user only has read access for this registry key. The behaviour was identified using the Sysinternals ProcessMonitor utility ... showed firefox calling an interface to create the registry key and getting an access denied response in the limited user case.
    A more targeted workaround for the issue is to grant the limited user write access on the HKLM\SOFTWARE\mozilla.org windows registry key. This avoids the need to grant administrative rights to the user and enables the java plugin to be detected. That is, it works on the 2 XP systems where the java plugin wasn't being detected in limited user accounts.

  • Files in other user account are restricted to admin account...

    Hi everyone.
    2 weeks ago, I've created a user account for my wife on my Mac Mini for iphone syncing purposes. My account is admin and hers is standard. Everything works great except restricted access to files.
    Besides regular Time Machine backups, I manually back up the iTunes, Address Book and iCal files on an external drive.
    Files on my user "side" are no problem, but when I try to access the files from Macintosh HD/Users/Wife path, I get all these folders with a small red "No Entry" sign just like the traffic one.
    I click "Get Info" and see that only my wife's user acc has "Read and Write", everyone is marked as "No access" and I'm not even there.
    Funny thing is, system asks for my permission to do the changes, but I'm not listed.
    What I do so far is to click "Get Info", go to permissions, unlock (a window pops up with my name as admin and I have to enter my main pass), add my name to the permitted users list, change it from "Read Only" to "Read & Write".
    Repeating these steps for each folder is becoming a bore. Can anyone give me a shortcut where I can have access to all files on any user account?

    Kappy,
    I think you've misunderstood my point. My wife has her own netbook and uses my PC at home just for syncing her phone. Reason is I'm the able one with computing related issues and she is distant to Mac.
    I created the user account for her, but she is the one who insisted on not having admin privileges as she wanted to avoid changing sth irreversibly by mistake.
    I log into her account for backup, but spend a lot of time moving media files from my locations to her itunes folders. That's when I need access to those restricted folders.
    Security in our household is not an issue as my trustworthiness is a BIG yes-yes.
    Now, apart from your guidance on moral issues and appropriate log-in 101, thank you for your clarification.
    Regards

  • I am not able to access Firefox under one user account on my computer so I created another account. How can I transfer the bookmarks from the old account?

    I use windows Vista and I cannot open Firefox under one user account (I keep receiving the "firefox profile cannot be loaded . . ." error message) on my computer so I created another account. How can I transfer the bookmarks from the old account?

    NOTE: you can skip this 1st step.
    Step 1
    I'm on Win7 so the paths might be slightly different... C:\Users\(YOUR PC ACCOUNT)\AppData\Roaming\Mozilla\Firefox\Profiles\bnelgkol.default\bookmarkbackups ... Find the "bookmarks-[DATE].json" you want and copy it to the profile you want. You may want to change the date to a name you will recognize.
    Step 2
    Then on your browser "Bookmarks>Show All Bookmarks or Ctrl+Shift+B ". This will bring up the Bookmark Organizer, I think they call it Library now. From there click "Import & Back up>Restore" this will bring up a drop down with your back ups. If you followed step 1, find the json you added and select it. If you skipped step 1, from "Import & Back up>Restore" select "Choose File..." Then browser for the json you want to import. Which should be in a similar location as mentioned in step 1.
    NOTE: "AppData" is a hidden folder, will have to set show hidden folders to be able to see it.

  • Can I downlaid Firefox on my Administrator account but have it not be accessible to the Limited User Account?

    I have Windows XP and want to know if I can download and use Firefox on the Administrator account only and it not be accessible to the limited user account. The reason is is we don't want our kids having access to to more than one tab at a time. any suggestions?

    Yes you can,
    # locate firefox.exe file in a directory similar to C:/program files/mozilla firefox/firefox.exe
    # right click it, select '''properties'''
    # add access to your account and remove any entries for other accounts you don't need.
    Please let us know whether that works for you.

  • Why won't Fire Fox 34.0.5 restart in limited user account ?

    FF 34.0.5 crashed while in the limited user account and won't load when I try and restart it. FF will load and start when I use the admin account with no problem(s). I've uninstalled and re-installed FF 34.0.5 twice but the limited user account still will not restart/load. FF will start in admin account after the re-installs.
    When I try and restart/load FF in the limited user account and use Windows task manager to see if FF is loaded, task manager does show FF is loading into memory however the usual FF user interface/display screen does not appear and while the system tries to load FF, FF consumes major portion of memory (up to %99 sporadically). After several minutes FF will display the "error sending screen" but after FF closes, final/exit error message displays that FF was unable to send error details to Mozilla Support.
    I'd prefer to try and resolve this problem w/out having to re-install FF from scratch (deleting FF folders, memory registry entries etc. etc. ) because I don't want to lose the current FF configuration (addons, extentions, synch info etc. etc.) I've set up using the limited user account.
    I've switched to the Chrome browser temporarily but prefer FF.
    Here's the crash report I copied from the "detail" crash report section (please redact email info if possible before posting question) . Thanks :
    AdapterDeviceID: 0x2a42
    AdapterDriverVersion: 7.15.10.1518
    AdapterSubsysID: 145010cf
    AdapterVendorID: 0x8086
    Add-ons: jid1-ASMu9YBkP688TA%40jetpack:0.2.1,jid0-bbA9VAawX3LMWDu668aUDrpQVXU%40jetpack:1.0.0,%7B6140bbfd-aa20-11e1-aba7-109add603214%7D:1.6.9,%7Bd10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d%7D:2.6.6,jid1-BJLRspk01OAAzg%40jetpack:0.5,jid1-YvCVXxA75Ob1eQ%40jetpack:1.0,jid1-MnnxcxisBPnSXQ%40jetpack:0.2.5,fastestsearch%40mingyi.org:3.31
    AvailablePageFile: 2471198720
    AvailablePhysicalMemory: 168935424
    AvailableVirtualMemory: 140570624
    BIOS_Manufacturer: FUJITSU // Phoenix Technologies Ltd.
    BlockedDllList:
    BreakpadReserveAddress: 48693248
    BreakpadReserveSize: 41943040
    BuildID: 20141126041045
    CrashTime: 1420502879
    EMCheckCompatibility: true
    Email: p&&&&&j&&&&@gmail.com
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1418173648
    JSOutOfMemory: Reported
    Notes: AdapterVendorID: 0x8086, AdapterDeviceID: 0x2a42, AdapterSubsysID: 145010cf, AdapterDriverVersion: 7.15.10.1518
    OOMAllocationSize: 1
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 33503
    StartupTime: 1420502497
    SystemMemoryUsePercentage: 94
    Theme: classic/1.0
    Throttleable: 1
    TotalPageFile: 6565580800
    TotalPhysicalMemory: 3172098048
    TotalVirtualMemory: 2147352576
    URL:
    Vendor: Mozilla
    Version: 34.0.5
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{D704FED5-D1F5-4859-8B7B-C3DEF3712C72}] SEQPACKET 0 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{D704FED5-D1F5-4859-8B7B-C3DEF3712C72}] DATAGRAM 0 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{849F5044-0498-477B-8D72-28EE4D2B3729}] SEQPACKET 3 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{849F5044-0498-477B-8D72-28EE4D2B3729}] DATAGRAM 3 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{773EB279-D9E7-4A45-BB64-2F99268E9A53}] SEQPACKET 6 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{773EB279-D9E7-4A45-BB64-2F99268E9A53}] DATAGRAM 6 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{2B5D0F9B-5F42-4471-8299-3D8E5AB93687}] SEQPACKET 5 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{2B5D0F9B-5F42-4471-8299-3D8E5AB93687}] DATAGRAM 5 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{9AA1DCBA-B641-46CA-942D-B1E6F112D0AC}] SEQPACKET 4 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{9AA1DCBA-B641-46CA-942D-B1E6F112D0AC}] DATAGRAM 4 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{A7317EE0-B0B1-4815-861F-E7D47D2038B8}] SEQPACKET 9 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{A7317EE0-B0B1-4815-861F-E7D47D2038B8}] DATAGRAM 9 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D704FED5-D1F5-4859-8B7B-C3DEF3712C72}] SEQPACKET 1 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{D704FED5-D1F5-4859-8B7B-C3DEF3712C72}] DATAGRAM 1 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{849F5044-0498-477B-8D72-28EE4D2B3729}] SEQPACKET 8 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{849F5044-0498-477B-8D72-28EE4D2B3729}] DATAGRAM 8 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{6D1D7109-DDCC-43CE-AF62-42E679D9253C}] SEQPACKET 2 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{6D1D7109-DDCC-43CE-AF62-42E679D9253C}] DATAGRAM 2 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{773EB279-D9E7-4A45-BB64-2F99268E9A53}] SEQPACKET 7 : 2 : 5 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{773EB279-D9E7-4A45-BB64-2F99268E9A53}] DATAGRAM 7 : 2 : 2 :
    useragent_locale: en-US
    This report also contains technical information about the state of the application when it crashed.

    Looks like you cleaned up the email before posting, which is good.
    Before experimenting further, if you want to eventually restore the last set of windows and tabs you had open before the crash, could you back up your session history files?
    Since Firefox is closed, you can access your current Windows user Firefox profile folder by pasting the following into the search box on the Start menu (or the address bar of a Windows Explorer window) and pressing Enter:
    %APPDATA%\Mozilla\Firefox\Profiles
    From that point, double-click into the most recently updated folder.
    ''(Note to other readers: if Firefox is currently running, do not exit out, but instead open your current Firefox settings (AKA Firefox profile) folder using either
    * ''"3-bar" menu button > "?" button > Troubleshooting Information
    * ''(menu bar) Help > Troubleshooting Information
    * ''type or paste about:support in the address bar and press Enter
    ''In the first table on the page, click the "Show Folder" button. This should launch a new window listing your current settings files.)''
    (1) Scroll down and double-click into the '''sessionstore-backups''' folder. Copy all files here to a safe location such as your Documents folder.
    (2) Go back up to the main level and scroll down to the sessionstore file(s). sessionstore.js usually contains your session data as of the last time Firefox exited normally. In this case, it might not be there. Go ahead and copy any other files whose names start with sessionstore and which have dates in a relevant range to a safe location such as your Documents folder.
    By default, Windows hides the .js extension. To work with files most accurately, you may want to turn off that feature. This article has the steps: http://windows.microsoft.com/en-us/windows/show-hide-file-name-extensions
    The kinds of files you may find among your sessionstore files are:
    * sessionstore.js: the windows and tabs from your previous Firefox session (created when Firefox closes)
    * recovery.js: the windows and tabs in your currently live Firefox session
    * recovery.bak: a backup copy of recovery.js
    * previous.js: the windows and tabs in your last Firefox session, after Firefox starts; sessionstore.bak for pre-33 versions of Firefox
    * upgrade.js-''build_id'': the windows and tabs in the Firefox session that was live at the time of your last update; sessionstore.bak-''datetime'' for pre-33 versions of Firefox
    Okay, next steps in the next post.

  • Multiple Schemas under one user account with XE 10g

    Hi,
    I am using (learning) XE 10g. I would like to know if it is possible to have multiple schemas under one user account and have the schemas logically separated. As of right now, I have three schemas that I am working with, each one under a different user account. This is inconvenient, because I have to logout of one user account and login to another user account simply to be able to work with another schema.
    Thanks

    It isn't possible to have multiple schemas under one database user account. It is of course possible to grant rights to other database users, and or roles, in order to allow access to the tables/data from other accounts. In Oracle there is a one-one mapping between schema and user.
    Niall Litchfield
    http://www.orawin.info/

  • Can you transfer files between two user accounts on the same macbook pro?

    Can you transfer files between two user accounts on the same MacBook Pro?
    Specifically, I used the Migration Assistant to move music and photos from my old PC to my new MacBook. 
    Somehow, I missed the fact that it was creating a new user account when it was doing this.  So none of music and photos are in the user account I originally set-up.  Instead, all these files are now in a different account.
    I'd like to consolidate all my files on the one user account and delete the other one.
    Is this possible and, if so, how do I do it?
    Thank you.

    you can crop files from one account to another using the Public Dropbox which every user account has.  Log into the user that has the files you want to move, then drag the folder you want to the new users' dropbox:
    I suggest a small scale test on a few files first before moving gigabytes of files.

Maybe you are looking for

  • [SOLVED]Can't save a file with tex extension using vim

    Hello there people,i decided to learn LATEX but vi won't let me save my files with the tex extension.It says: "test.tex" E212: Can't open file for writing Does anyone know why vim is denying to save it with this extension?Please help! Last edited by

  • How much leeway for blowing up when downconverting HDV to SD?

    Hi. I'm trying to understand how much I can blow up a HD/HDV image when the final format for a project is an SD DVD. How much and why... I'm working on a DVD of a play. The producer thinks our wide shot is too wide. She wants me to blow it up wheneve

  • Space utilization of Oracle XDB

    hi, There is a significant difference in the size of .dbf files for USERS tablespace & size of individual tables. Total size of .dbf files is 30 GB approx. Total Table size = 2853 MB 1. Is there a way to find how has Oracle allocated the remaining sp

  • Cancellation of forward contract

    Hi, Is there possibility of cancellation of a forward contract prior to maturity date. For example I have created a contract for 6 million on 20.03.14 with a tenure of 6 months i.e. end date is 20.09.14 and I want to cancel the contract on 20.06.14.

  • WALKMAN APP CAN'T PLAY DOVETAILED TRACKS PROPERLY, WON'T FIX

    The Walkman music playing app is unable to properly play music that doesn't pause between tracks. It inserts an obligatory hiccup between tracks that were recorded/mastered/released to dovetail together for a continuous musical experience.For those o