Unable to Save to local drives from Quickbooks RemoteApp

We are using Quickbooks as a remoteApp in server 2012.  Local drives appear to be mapped correctly because I can see them from the app on a client computer.
If I try to save a file to a users local drive from QB the drive will not open to show subfolders nor will a file save to the drive, but if I right click the drive and choose open in new window it will launch an explorer window and populate subfolders correctly
so I know the drives are mapped in a way that the remote desktop session can connect to them, but the app can not "Save As" to these drives.
At this point I think it's likely an issue within Quickbooks but I thought I'd see if anyone had seen this behavior before, or has any ideas.
Thanks =)

Hi,
Have you tried using a drive mapping on the server?  For example, have G: mapped to \\tsclient\c ?  Then when the user tries Save As in QuickBooks they would browse to a subfolder on G:.
To make it quicker/easier for them you could create a subfolder on their local C: like C:\QBooks, and map G: on the server directly to \\tsclient\c\qbooks or perhaps they can simply browse to G:\QBooks as needed. 
Unless the users have low latency and excellent bandwidth between them and the server you want to minimize the need for them to browse their local drive via their RemoteApp.  That is one of the reasons I recommend creating the subfolder right under
C: on their local drive and/or mapping directly to a subfolder.  Another reason I recommend it is to avoid confusion for the user as well as them getting an Access Denied error if they attempt to save directly to the root of their C drive.
-TP

Similar Messages

  • I'm unable to save the local news setting (BBCPostcoder cookie) in the BBC Home Page although my Firefox Privacy settings to accept cookies are correct.

    I'm unable to save my Local News settings (BBCPostcoder cookie) in the BBC Home Page although my Firefox Privacy settings are set for accepting cookies from sites(there are no exceptions), accept 3rd party cookies and until they expire. The cookie is shown as being stored under the bbc.co.uk menu in the stored cookies folder.

    Also, contacted the BBC with this problem and they advised it was an issue with their software that was corrected with a software patch released on 28 Jun 2010.

  • Commands to copy apps to local drive from networkshare and installing via unattend install

    Hi Everyone,
    I'm in the process of deploying and testing Windows 8.1 with different settings via unattended answer file. I would like to test out with another settings during unattended install but I'm having a hard time to implement it. Here is the scenario, I've a
    server named WDS-DEP-SERV with a hard drive portioned into 2. One is C and other is E. On my E drive, I've a bunch of .exe apps saved. I would like my unattended answer file to pull those .exe apps over to the local drive from network share and install them
    as the unattended install takes place. I'm looking for a command that can help me achieve it in a silent mode. During testing before, I was able to have my unattended file to pull VMware tools drivers from network share under RunSynchronousCommand parameter
    with domain credentials of the network share and it installed successfully. For example, like this below.
    \\WDS-DEP-SERV\E\Distribution\Drivers\setup64.exe /s /v "/qn REBOOT=ReallySuppress" /l C:\Windows\Temp\vmware_tools_install.log
    I was searching online and came across a lot of things but none answered what I'm looking for. Can someone please reply back with the answers on how can I implement it in my unattended file.
    1) To be able to have unattended file pulling drivers from network share, copy them over to local drive during unattended installation process and execute them silently. I need a command to pull this off.
    2) What pass should I use in unattended file?
    3) So far, I've used RunSynchronouscommand  under Windows Deployement Neutral during "Specialize" pass to install just VMware tools. Is there a way to execute all apps in one go instead of doing it one at a time via Synchronouscommand? Please
    correct me if I'm wrong, Is it true every time you use Synchronouscommands for various different apps or scripts to pull from network share, you'll have to use network credentials under each and every Synchronouscommands section. Like, if I add 4 SyncrhonousCommands
    to the unattended file to pull 4 different apps or scripts from network share, I must provide network share credentials for each of those. Can it be just one time network share credentials under those and they all get pulled and executed during unattended
    install?
    Again, please if someone can get back to help me out. I would really appreciate it. Hope to hear from someone soon. Below is my unattended answer file in case someone would like to see it to understand better.
    ?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComputerName>WIN-8-DEPL</ComputerName>
                <ProductKey>MHF9N-XY6XB-WVXMC-BTDCT-MKKG7</ProductKey>
                <RegisteredOrganization>Microsoft</RegisteredOrganization>
                <RegisteredOwner>Microsoft</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>eastern standard time</TimeZone>
                <CopyProfile>true</CopyProfile>
                <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
            </component>
            <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <RunSynchronous>
                    <RunSynchronousCommand wcm:action="add">
                        <Order>1</Order>
                        <Path>net user administrator /active:no</Path>
                        <Description>Enabling Built in Administrator Account</Description>
                        <WillReboot>Never</WillReboot>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Description>DisableNetworkLocationPrompt</Description>
                        <Order>2</Order>
                        <Path>REG ADD &quot;HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork&quot; /v Category
    /t REG_DWORD /d 00000000 /f</Path>
                        <WillReboot>Never</WillReboot>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Path>REG ADD HKLM\System\CurrentControlSet\Services\Tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 0xFF /f</Path>
                        <Order>3</Order>
                        <Description>Diasbling IPV6</Description>
                        <WillReboot>Never</WillReboot>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Credentials>
                            <Domain>Mikasa.local</Domain>
                            <Password>Ghtwhts2015</Password>
                            <Username>Administrator</Username>
                        </Credentials>
                        <Path>\\WDS-DEP-SERV\E\Distribution\Drivers\setup64.exe /s /v &quot;/qn REBOOT=ReallySuppress&quot; /l C:\Windows\Temp\vmware_tools_install.log</Path>
                        <Order>4</Order>
                        <Description>Vmware Tools Installation</Description>
                        <WillReboot>Always</WillReboot>
                    </RunSynchronousCommand>
                </RunSynchronous>
            </component>
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DisableAccelerators>true</DisableAccelerators>
                <DisableFirstRunWizard>true</DisableFirstRunWizard>
                <Home_Page>www.marca.com</Home_Page>
                <BlockPopups>yes</BlockPopups>
            </component>
            <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <fDenyTSConnections>false</fDenyTSConnections>
            </component>
            <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <FirewallGroups>
                    <FirewallGroup wcm:action="add" wcm:keyValue="Remote Desktop">
                        <Active>true</Active>
                        <Group>Remote Desktop</Group>
                        <Profile>all</Profile>
                    </FirewallGroup>
                </FirewallGroups>
            </component>
            <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <UserAuthentication>0</UserAuthentication>
                <SecurityLayer>1</SecurityLayer>
            </component>
            <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipAutoActivation>true</SkipAutoActivation>
            </component>
            <component name="Microsoft-Windows-TCPIP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Interfaces>
                    <Interface wcm:action="add">
                        <Identifier>00-50-56-30-85-87</Identifier>
                        <Ipv4Settings>
                            <DhcpEnabled>false</DhcpEnabled>
                            <Metric>10</Metric>
                            <RouterDiscoveryEnabled>true</RouterDiscoveryEnabled>
                        </Ipv4Settings>
                        <UnicastIpAddresses>
                            <IpAddress wcm:action="add" wcm:keyValue="1">172.16.5.120/24</IpAddress>
                        </UnicastIpAddresses>
                        <Routes>
                            <Route wcm:action="add">
                                <Identifier>0</Identifier>
                                <Prefix>0.0.0.0/0</Prefix>
                                <Metric>10</Metric>
                                <NextHopAddress>172.16.5.1</NextHopAddress>
                            </Route>
                        </Routes>
                    </Interface>
                </Interfaces>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <AutoLogon>
                    <Password>
                        <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <Enabled>true</Enabled>
                    <LogonCount>10</LogonCount>
                    <Username>DarkKnight</Username>
                    <Domain></Domain>
                </AutoLogon>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <NetworkLocation>Home</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                    <HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
                </OOBE>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>
                        <PlainText>false</PlainText>
                    </AdministratorPassword>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Description>Admin User Account</Description>
                            <DisplayName>DarkKnight</DisplayName>
                            <Group>Administrators</Group>
                            <Name>DarkKnight</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <RegisteredOrganization>Mikasa</RegisteredOrganization>
                <RegisteredOwner>Mikasa</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>eastern standard time</TimeZone>
            </component>
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
                <UILanguageFallback></UILanguageFallback>
            </component>
            <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Reseal>
                    <Mode>Audit</Mode>
                    <ForceShutdownNow>false</ForceShutdownNow>
                </Reseal>
            </component>
        </settings>
        <settings pass="generalize">
            <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipRearm>1</SkipRearm>
            </component>
        </settings>
        <settings pass="offlineServicing">
            <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <EnableLUA>false</EnableLUA>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:e:/windows-os-images/win8.1x86ent-wimfiles/install.wim#Windows 8.1 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>
    Thanks
    Omar

    My script on my network share failed to run during unattend install right before the first login. Can someone take a look at my unattend xml file and suggest me a solution?
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ComputerName>WIN-8-DEPL</ComputerName>
    <ProductKey>MHF9N-XY6XB-WVXMC-BTDCT-MKKG7</ProductKey>
    <RegisteredOrganization>Microsoft</RegisteredOrganization>
    <RegisteredOwner>Microsoft</RegisteredOwner>
    <ShowWindowsLive>false</ShowWindowsLive>
    <TimeZone>eastern standard time</TimeZone>
    <CopyProfile>true</CopyProfile>
    <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
    </component>
    <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <RunSynchronous>
    <RunSynchronousCommand wcm:action="add">
    <Order>1</Order>
    <Path>net user administrator /active:no</Path>
    <Description>Enabling Built in Administrator Account</Description>
    <WillReboot>Never</WillReboot>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Description>DisableNetworkLocationPrompt</Description>
    <Order>2</Order>
    <Path>REG ADD &quot;HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork&quot; /v Category /t REG_DWORD /d 00000000 /f</Path>
    <WillReboot>Never</WillReboot>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Path>REG ADD HKLM\System\CurrentControlSet\Services\Tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 0xFF /f</Path>
    <Order>3</Order>
    <Description>Diasbling IPV6</Description>
    <WillReboot>Never</WillReboot>
    </RunSynchronousCommand>
    <RunSynchronousCommand wcm:action="add">
    <Credentials>
    <Domain>Mikasa.local</Domain>
    <Password>Ghtwhts2015</Password>
    <Username>Administrator</Username>
    </Credentials>
    <Path>\\WDS-DEP-SERV\E\Distribution\Drivers\setup64.exe /s /v &quot;/qn REBOOT=ReallySuppress&quot; /l C:\Windows\Temp\vmware_tools_install.log</Path>
    <Order>4</Order>
    <Description>Vmware Tools Installation</Description>
    <WillReboot>Always</WillReboot>
    </RunSynchronousCommand>
    </RunSynchronous>
    </component>
    <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DisableAccelerators>true</DisableAccelerators>
    <DisableFirstRunWizard>true</DisableFirstRunWizard>
    <Home_Page>www.marca.com</Home_Page>
    <BlockPopups>yes</BlockPopups>
    </component>
    <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <fDenyTSConnections>false</fDenyTSConnections>
    </component>
    <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <FirewallGroups>
    <FirewallGroup wcm:action="add" wcm:keyValue="Remote Desktop">
    <Active>true</Active>
    <Group>Remote Desktop</Group>
    <Profile>all</Profile>
    </FirewallGroup>
    </FirewallGroups>
    </component>
    <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <UserAuthentication>0</UserAuthentication>
    <SecurityLayer>1</SecurityLayer>
    </component>
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SkipAutoActivation>true</SkipAutoActivation>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <AutoLogon>
    <Password>
    <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
    <PlainText>false</PlainText>
    </Password>
    <Enabled>true</Enabled>
    <LogonCount>10</LogonCount>
    <Username>DarkKnight</Username>
    <Domain></Domain>
    </AutoLogon>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <NetworkLocation>Home</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
    <HideWirelessSetupInOOBE>false</HideWirelessSetupInOOBE>
    </OOBE>
    <UserAccounts>
    <AdministratorPassword>
    <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>
    <PlainText>false</PlainText>
    </AdministratorPassword>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Password>
    <Value>RwBoAHQAdwBoAHQAcwAyADAAMQA2AFAAYQBzAHMAdwBvAHIAZAA=</Value>
    <PlainText>false</PlainText>
    </Password>
    <Description>Admin User Account</Description>
    <DisplayName>DarkKnight</DisplayName>
    <Group>Administrators</Group>
    <Name>DarkKnight</Name>
    </LocalAccount>
    </LocalAccounts>
    </UserAccounts>
    <RegisteredOrganization>Mikasa</RegisteredOrganization>
    <RegisteredOwner>Mikasa</RegisteredOwner>
    <ShowWindowsLive>false</ShowWindowsLive>
    <TimeZone>eastern standard time</TimeZone>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <CommandLine>cmd /C start /wait E:\RemoteInstall\Images\Windows8\install\$OEM$\$$\Setup\Scripts\SetupComplete.cmd</CommandLine>
    <Description>Various Apps Installation</Description>
    <Order>1</Order>
    <RequiresUserInput>false</RequiresUserInput>
    </SynchronousCommand>
    </FirstLogonCommands>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <InputLocale>en-US</InputLocale>
    <SystemLocale>en-US</SystemLocale>
    <UILanguage>en-US</UILanguage>
    <UserLocale>en-US</UserLocale>
    <UILanguageFallback></UILanguageFallback>
    </component>
    </settings>
    <settings pass="generalize">
    <component name="Microsoft-Windows-Security-SPP" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SkipRearm>1</SkipRearm>
    </component>
    </settings>
    <settings pass="offlineServicing">
    <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <EnableLUA>false</EnableLUA>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:e:/windows-os-images/win8.1x86ent-wimfiles/install.wim#Windows 8.1 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

  • Execute report from local drive from Forms 9i Apps

    Hi - I have a requirement to run the report saved in windows network drive from FORMS 9i which is installed on AIX. looking forward for your help.
    Requirement:
    Forms application is invoked through the APPS server installed on AIX.
    Report code RDF, REP is saved in Windows drive.
    When i press a button in FORMS, reports in the windows drive should be executed and displayed to the users.
    Thanks in advance.
    regards,
    Vikram.

    This is not possible. Forms/Reports 9i is web based, so the forms and reports need to be on the app server. You cannot run a report on a local drive (I assume you mean your own PC). Why don't you copy the report to the server?
    You can try to map a directory on the AIX server to a shared Windows directory and put this directory in the reports_path variable.
    However, you cannot run a Windows compiled REP file on an AIX server, so you need to save the RDF only.

  • Download Text file to Local drive from BSP Application

    Hi Guys,
    I am new to BSP, and I am doing a BSP application in which i want to download a text file to local drive C: on click of button. For that I am having a data in Internal table and Onclick event, in model class method DO_HANDLE_EVENT i want to download text file to local machine drive.
    Can anybody provide me full code with all data declaration and all?
    Your help would be appriciable. Thanks in Advance.

    Hi Jessy ,
    You can download the file from BSP pages using the method
    CL_BSP_UTILITY=>download.
    Please follow the below mentioned steps.
    1.Convert the text to a text table ie Internal table with a line type char255 or some others.
    2.Convert the text table into a string.
    3.Convert the string to XSTRING.
    4.Download that XSTRING as text file using the method
       CL_BSP_UTILITY=>download.
    Parameters:
    OBJECT_S    - XSTRING data
    CONTENT_TYPE  =  ' application/download'
    CONTENT_DISPOSITION = 'attachment; file=test.txt'
    RESPONSE                   = runtime->server->response
    NAVIGATION                   = navigation
    OBJECT_T
    I dont have system to give a programatical explanation to u.
    If you have any doubt kindly post.
    Reward for every useful solutions..
    Best Regards
    Renga

  • Cannot save to local drive in Numbers or Pages

    When attempting to name and save a document in Numbers or Pages, iCloud appears by default as the target folder. When I change it to my local drive and select the local target folder, the file name automatically changes to the target folder name and I can't save anything.
    Has anyone had this problem? Thanks for any help on this - sure looks like a bug to me.
    BTW, I'm running Mountain Lion/10.8.1 and up-to-date versions of Numbers and Pages...

    CMD-S now defaults to my local drive, but folder names are greyed out. If I click on one, then it tries to name the file with the folder name! Any ideas about that?
    Thanks again.

  • Unable to save a PDF created from a secure webpage in Acrobat X

    Hi,
    Our Acrobat X standard won't 'save' or 'save as' PDFs created from a password secured website. Same symptom on two machines here. Other PDFs work fine.
    The workflow we're using is opening acrobat, selecting create pdf from website, and then specifying a website with an https address and entering a username and password to access the site. This generates a pdf which looks great, all the links work etc... but when you click 'save as,' absolutely nothing happens. You're left just looking at your PDF with no save window or anything opening.
    This gets done every day in the office here. I suspect the latest update may have caused the issue?

    Hi Bill@VT,
    Thanks for your reply!
    I checked document properties and security is off. I've also unticked "Enhanced Security" under Security (Enhanced) in the Edit > Preferences menu.
    This issue is only affecting our acrobat 10 and acrobat 11 users. I still have a couple acrobat 9 users here and they're unaffected.
    The Save As button is not greyed out -- it's available but clicking on it just closes the file menu and does not open the save as dialog box.

  • Unable to save reports to enterprise from Crystal Reports 2013 and Crystal Reports for Enterprise

    Dear Expert,
    when we tried to save report to enterprise, error happened:
    "Failed to find a Report Application Server."
    We closed BO server firewall.
    We could check report from PC by browser.
    But when we save report from CR 2013, then error happened.
    Then we install CR enterprise and save report is ok from same PC.
    We launch latest patches too.
    Anyone see this before? Please kindly help~
    Environment:
    SAP Crystal Reports 2013
    SAP Business Intelligence 4.0
    Regards,
    April.

    April, since you have CR4E, you also have BI and thus free phone support included. My suggestion would be to create a phone incident and work with an SAP engineer on the issue. Only saying because it looks like you're somewhat anxious to get this going(?).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Unable to save PDF file to local drive from sap after Above reader XI update.(Not as sap issue ,this is related to Adobe)

    Hi All,
    Users are unable to download/save file from sap after a adobe XI update.(no pop comes to save/open)
    Surprisingly,i am able to do so on my system without any adobe plug ins disabled or any registry editing.
    This is a strange behaviour and need to be resolved Asap....
    I contacted sap..this is not sap issue..this is a pure adobe reader bug.
    Please need help on this experts
    Feel free to comment for further details
    kind Regards,
    Sumit
    Mail me at [email protected]

    Hi ,
    Please tell us a lot more.
    - Is SAP running a local process, or something in a web browser?
       sap is running via SAPGUI ,no java system
    - What system?
      Users facing issue in all system
    - What browser?
    IE 9.0.28
    - Can PDFs from other sources be downloaded?
    Yes,they are downloaded.
    More Details-I did some tricks below which resulted in open/save popup......tht is not recomended by IT team...i need a permanent solution
    In IE, goto menu Options -> "Manage
    Addons", select in box "Show:" "Run without
    permission", then you see the Adobe PDF plugin
      Ichanged status to "Disabled
    Also, if i change the registry key settings for users as
    HKEY_CLASSES_ROOT\AcroExch.Document.11
    Value: EditFlags
    Changed: 0x00000100
    to 0x00000000
    (Remove the "Open always with this
    program" option)
    ITS WORKING.....
    But,in my system i need not to do all this settings and surprisingly it is working  only for me,rest all users are facing this issue.....
    If any one using Lync ,communicator ..do let me know..i wil show  the actual scnerio.
    Kind Regards,
    Sumit

  • Since I have updated my iOS to iOS 7 I'm unable to save the photo attachments from email. It this a bug? Please look into the issue.

    Unable to to save photo attachments from emails in ios7

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • How Do I Copy Files to MS Windows Local Drive From ASM

    All,
    How to I refer to a Windows drive letter in the cp command? When I use C:\my_path\my_file ASMCMD gives me an ASMCMD-08010 no user name is specified in remote instance because it thinks the colon is part of a connect string. I've spent a whole afternoon trying to figure this out and am stumped> :-(
    TIA,
    Bob S.

    Vikash Jain (DBA Trainee) wrote:
    Hi EdStevens ,
    I came to know this thread is too old .. but posted my problem here so that i can the solution ..
    still i m not getting any solution for this problem.
    here i am trying to copy file from ASM file system to Window drive ..am anable to do .
    ASMCMD [+FRA/ASMDB/autobackup/2012_04_10] > cp +FRA/ASMDB/autobackup/2012_04_10/s_780262450.307.780262451 d:\olam\s_780262450.307.780262451.bak
    ASMCMD-08010: no usr name is specified in remote instance connect_string->'d'ASMCMD [+FRA/ASMDB/autobackup/2012_04_10] > cp +FRA/ASMDB/autobackup/2012_04_10/s_780262450.307.780262451 d:/olam/s_780262450.307.780262451.bak
    ASMCMD-08010: no usr name is specified in remote instance connect_string->'d'
    You can see i have tried both back slash and forward slash.. but unfortunately nothing working for me.
    Do you any solution for my problem ?
    Thanks and regards,
    Vikash Jain(Junior DBA)I don't have the answer you are looking for. Never tried to do this myself. I see lots of hits on 'ASMCMD-08010" on google.

  • Unable to save images linked to from InDesign CS4

    A very annoying issue.  If images are linked to from InDesign, and a user on the network has opened that InDesign file, changes to the image cannot be saved.  On a mac we get a warning that the file is 'in use'.  The PCs give no warning, and apprently save the changes made in Photoshop or Illustrator.  However, the changes are not saved.  It make no difference whether the InDesign file is still open or has been closed.  The only way to get round this problem that we have found is to either save as a new image name and re-link to that, or to close down InDesign on the offending workstation and then re-open after the image has been saved.
    This might be a similar issue to that described in this discussion:
    http://forums.adobe.com/message/2015431
    I've opened a new discussion, as the one in the link above is shown as partially answered, but I cannot see an answer which helps us.
    Anyone got a solution?

    I'm not sure if it sounds the same or not, but it sure doesn't sound "normal," but I don't work much with network-stored images and other users who might have linked to them. As far as I know there is nothing in link in ID that would cause it to appear to be open, but as I see inthe other thread I once had the problem myself, so who knows.
    Are you patched to 6.0.6? I don't see anything in the release notes specifically related to the can't save problem, but there were a number of image and link related fixes.

  • A few pages (seemingly random) have gone grey and I am unable to save or export anything from the document this is a 200+ page document, how may i fix it?

    This is how it appears with several pages.

    Try creating a new document with the same page size and margins.
    In the troubled document use the Layout>Pages>Move Pages
    Select all pages - and choose the destination to be your new document.
    If you can move all your pages - see if you can export/save that document.

  • Adobe Forms in ABAP Image upload from a local drive

    Hello,
    Can anybody suggest me the procedure, how to upload the image field dynamically of an employee which is existing in PA30 to SAP interactive forms (SFP). I have gone through many forums but could not able to find any right solution on it.. and hence my development is required to design the layout and call this not through WDP but using ABAP report SE38 in order to generate the employee CV, the programming logic completed till downlaoding the employee photo to local drive from PA30 and I need the same to upload the picture which is downloaded earlier by my driver program into adobe form. Can anyboby help me on this mentioned issue will be appreciated.
    Thanks in advance.
    Regards,
    Murali.

    Thanks Kittu for your speedy response, I have already checked the link which was sent by you...But I couldn't able to find any helpful solution to my requirement. Can you please suggest me any new procedure to solve my problem.

  • I'm unable to save PDFs from bank sites or print them. Only started recently.Is anyone else having this problem?

    I'm unable to save or print PDFs from bank sites. This only began recently. Is anyone else having same problem?

    Do you have Adobe Reader installed and its accompanying browser plug-in enabled?
    Clinton

Maybe you are looking for

  • Templates Not Updating .ASPX Files in Dreamweaver CC

    I have website based on .ASPX pages. I have successfully used templates (.DWTs) to update .ASPX pages page in Dreamweaver versions through CS6. I installed CC and updating the templates no longer seems to update .ASPX pages. It seems I have to open e

  • Complex discount issue

    i have below situation Client has many discount payment terms.and client does not want to take discount, if theyare running paymen program in last two weeks of each quarter end. as there are four quarters inthe year and at the end of each quarter, in

  • Same problem in JDBC to RFC

    Hi Experts, I have an requirement is that, we are fetching the data from database table through PI, and mapping to synchronous RFC. Then, this RFC response message is mapping with the another Asynch function module and the same RFC response message i

  • Stopping Photo in Ken Burns Fade

    I am creating a photo montage in IMovie 10. I like the Ken Burns effect, but want the photo to stop for a second or two before the fade. By the time the effect gets to the closeup, it goes right into the next fade. Help!

  • TS1292 CODE DOES NOT WORK

    I am trying to redeem a gift card for $15 and it is saying that the card is not validated.  The code under the scratch off area is not working.  I bought it a few hours ago for a birthday gift?