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>

Similar Messages

  • Is it possible to remove hard drive from G5 and install it on new MacPro?

    My G5 will not power up and I have files that are not backed up. Can I install the hard drive from the G5 into an empty bay onto my new MacPro and copy them over on the MacPro? Is this something that can be done or do I need to just take the G5 into the Apple repair store and have the files copied on a DVD?
    Thank you.

    Your new Mac Pro uses GUID, which will required for insalling OS X, good idea to reformat the drive again afterwards.
    I'd put it in a FW case, use that (reformatted) as external system backup and emergencies.
    The manuals, specs, help articles, Mac Pro forum -
    http://www.apple.com/support/macpro

  • 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

  • Can i copy my entire hard drive from one computer to another?

    I am buying a used ibook 900gh 640ram 40gb hd using 300mh clamshell now - i would like to copy my entire hard drive from the clamshell to the new ibook OS and all so when i use it everything will look and work exactly like it does on the clamshell - can i do this easily? disc copy when booted from a CD?

    Hi, not on Tiger at the moment, so I can't be certain, but...
    I may be wrong, but I thought the Networked Mac only came about in Leopard's Migration assistant.
    http://support.apple.com/kb/HT1554
    Setup Assistant, included with computers that have Mac OS X 10.3.4 or later preinstalled, can transfer data (including account settings and home folders) from a previous Mac (that's using Mac OS X 10.1 or later) to your newer computer. You'll need a FireWire cable to connect the two computers together. The Assistant offers to transfer (or "migrate") data from your older computer when you turn on your new computer for the first time. Make sure the older computer's firmware is up-to-date first.
    The only way I see this is going to happen is with a USB/FW external drive, and painfully Clone the Clamshell via USB 1.1 to the external drive, move the drive to the iBook and connect via FW.
    More info...
    http://www.oreillynet.com/pub/a/mac/2005/05/17/tiger.html

  • HT1727 i copied itune music from old hard drive to memory disk the copied onto new hard drive into itunes and music wont play unless removalbe disk is inserted

    i copied itune music from old hard drive to memory disk the copied onto new hard drive into itunes and music wont play unless removalbe disk is inserted

    Then your iTunes must be looking at the removable disc, not your hard drive. Did you actually copy the songs onto your computer, or simply tell iTunes to look at the removable drive?
    Highlight a song and click on File/Get Info/Summary>Where and check the location that iTunes has listed for the song. What does it say?

  • I just got my MacBook Pro a month ago. However I am realizing I need more hard drive space due to aps and programs.  I use am external but am concerned about the space. Is there a way to upgrade my hard drive from apple and keep my warranty valid?

    I just got my MacBook Pro a month ago. However I am realizing I need more hard drive space due to aps and programs.  I use am external but am concerned about the space. Is there a way to upgrade my hard drive from apple and keep my warranty valid?

    That would depend on whether your model actually has a hard drive. If you have the new 2013 Retina model, then you have a fixed storage device built-in that cannot be modified after purchase.

  • Any app to block number from calling and texting me

    Any app to block number from calling and texting me?

    Thank you BobHarris for your input.
    It seems like there were a few seconds difference between your post and my second post.
    "... and I asked my carrier (FIDO) and they said that they do not have any thing at their end that can be done to blcok any number from calling or texting.
    Help please!"

  • I have bought a single App Premiere Pro in creative cloud and installed and downloaded my app, but the App will not launch

    I have bought a single App Premiere Pro in creative cloud and installed and downloaded Premiere Pro, but the App will not launch.

    Hi There,
    We would appreciate if you could provide us the below mentioned information so that we can assist you appropriately.
    OS Version:
    Have you used Premier Pro as trial before?:
    Error message/screenshot<if any>:
    Thanks,
    Atul Saini

  • 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.

  • How do I copy the removed SSD drive from a water-damaged MB Pro to another Mac?

    My son's MacBook Pro (early 2012) was ruined by a pint of water. The insurance company kept the laptop but returned its 256GB SSD drive. I've looked everywhere online – Apple's telephone support is as good as useless given they want a serial number and want to charge me £35 – for a caddy or SATA adaptor of some sort to copy files from the Sandisk SSD drive. I basically need something I can plug the SSD drive into that has a USB lead to plug it into another Mac so I can copy photos, word docs and MP3s. I can't believe it could be so difficult - it's just a hard drive, after all. Your help greatly appreciated.

    Keetle wrote:
    ...I basically need something I can plug the SSD drive into that has a USB lead to plug it into another Mac so I can copy photos, word docs and MP3s. I can't believe it could be so difficult - it's just a hard drive, after all. Your help greatly appreciated.
    This should do the trick, and will work with laptop and desktop drives too. And it doesn't rely on power from the USB port to make the drive work, which can sometimes be an issue.

  • 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

  • Not able to debug Provider Hosted App in local (Deployed in Azure and Hosted in Office 365)

    I have Provider Hosted App - Deployed in Azure and Hosted in Office 365. 
    Deployed successfully on azure after attaching publishing profile of azure.
    Now I wish to debug app in local?

    Hi,
    According to your post, my understanding is that you want to debug SharePoint provider hosted app in local.
    Per the previous thread, to debug SharePoint provider hosted app in local, we should configure S2S authentication.
    You can follow the article below to build the high trust app, then you can debug the app locally.
    http://blog.karstein-consulting.com/2013/01/08/create-provider-hosted-high-trust-app-for-sharepoint-2013-short-guide/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Known issue: Cortana terminates when typing a voice command for an app (Windows 10 Insider Preview SDK and tools, April 2015 release)

    When typing a voice command for an app, e.g., "Find mom on MyApp", Cortana terminates without executing the voice command.

    Use the microphone to input voice commands for your app.

  • Do I need a support app to show videos from iPad to HDTV via hdmi cable?

    Do need a support app to play videos from my iPad to a HDTV via hdmi cable?

    No.  The Videos app should work fine.

  • How to re-install a specific print driver from my SL install disk?

    Have SL and mistakenly deleted my printer and it's drive. The driver installed w/ SL is a newer version than is available at Xerox online.
    How can I re-install the newer driver on the SL install disk?

    open snow leopard DVD in finder and double-click on optional installs->optional installs.mpkg. follow the instructions and on the screen with the choice of things to install select 'printer support'.

Maybe you are looking for