Windows 8.1 32bit Autounattend.xml, disabling touch screen functionality

This is quite a strange problem and I do not have the slightest clue why this is happening.
I am trying to make an unattended Windows 8.1 Pro32 bit install for a touch screen PC. I have made an answer file which appears to work correctly (it skips all user interaction during the install). The issue is that when using this Autounattend.xml to install
Windows the device stops responding to touch. The touch function works throughout the install process (so I know the screen is not broken) but once it has completed the install and loads the OS for the first time there is no touch function available.
I have removed the Autounattend file from the disk image and installed the OS manually. Touch function works fine once it has completed without the use of an unattend file, which is why I'm fairly sure it is the xml file causing the issue.
I have been able to make unattend.xml files for Windows 8.1 64bit as we as Windows 7 32 & 64bit but cannot make it work with Windows 8.1 32bit. I have made these .xml files using the Windows System Image Manager, I have made sure I have newest version
downloaded and installed.
Is this a common issue with Windows 8.1 32bit? 
Any help would be greatly appreciated, I'm open to trying anything at this point.
Below is my Autounattend file:
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
        <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <SetupUILanguage>
                <UILanguage>en-US</UILanguage>
            </SetupUILanguage>
            <InputLocale>en-US</InputLocale>
            <SystemLocale>en-US</SystemLocale>
            <UILanguage>en-US</UILanguage>
            <UserLocale>en-US</UserLocale>
        </component>
        <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <DiskConfiguration>
                <Disk wcm:action="add">
                    <CreatePartitions>
                        <CreatePartition wcm:action="add">
                            <Extend>true</Extend>
                            <Order>1</Order>
                            <Type>Primary</Type>
                        </CreatePartition>
                    </CreatePartitions>
                    <ModifyPartitions>
                        <ModifyPartition wcm:action="add">
                            <Active>true</Active>
                            <Format>NTFS</Format>
                            <Label>Windows</Label>
                            <Order>1</Order>
                            <PartitionID>1</PartitionID>
                        </ModifyPartition>
                    </ModifyPartitions>
                    <DiskID>0</DiskID>
                    <WillWipeDisk>true</WillWipeDisk>
                </Disk>
            </DiskConfiguration>
            <ImageInstall>
                <OSImage>
                    <InstallFrom>
                        <MetaData wcm:action="add">
                            <Key>/image/name</Key>
                            <Value>Windows 8.1 Pro</Value>
                        </MetaData>
                    </InstallFrom>
                    <InstallTo>
                        <DiskID>0</DiskID>
                        <PartitionID>1</PartitionID>
                    </InstallTo>
                    <InstallToAvailablePartition>false</InstallToAvailablePartition>
                    <WillShowUI>OnError</WillShowUI>
                </OSImage>
            </ImageInstall>
            <UserData>
                <ProductKey>
                    <Key>*****-*****-*****-*****-*****</Key>
                    <WillShowUI>OnError</WillShowUI>
                </ProductKey>
                <AcceptEula>true</AcceptEula>
            </UserData>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                <NetworkLocation>Work</NetworkLocation>
                <ProtectYourPC>1</ProtectYourPC>
            </OOBE>
            <UserAccounts>
                <LocalAccounts>
                    <LocalAccount wcm:action="add">
                        <Description>Administrator account</Description>
                        <DisplayName>Administrator</DisplayName>
                        <Group>Administrators</Group>
                        <Name>Admin</Name>
                    </LocalAccount>
                </LocalAccounts>
            </UserAccounts>
            <VisualEffects>
                <SystemDefaultBackgroundColor>14</SystemDefaultBackgroundColor>
            </VisualEffects>
        </component>
    </settings>
    <settings pass="specialize">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" 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>
                <Enabled>true</Enabled>
                <LogonCount>5</LogonCount>
                <Username>Admin</Username>
            </AutoLogon>
            <OEMInformation>
                <Manufacturer>****** ************</Manufacturer>
                <SupportHours>Mon - Fri, 9am - 5pm</SupportHours>
                <SupportPhone>**** **** ***</SupportPhone>
                <SupportURL>www.******************.com</SupportURL>
            </OEMInformation>
            <ComputerName>Admin-PC</ComputerName>
            <OEMName>Tablet Technologies</OEMName>
            <TimeZone>UTC</TimeZone>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="wim://tech1/users/support/desktop/updates/new%20iso&apos;s/win%208.1%2064%20bit/updated%20win%208-1%20pro%20sp1%2064%20bit/sources/install.wim#Windows 8.1 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi"
/>
</unattend>

Hello TwistedDTM,
Based on my knowledge, I can't find out that this Autounattend.xml has configuration to block the touch screen.
I want to confirm if you use the Windows 8.1 x86 image to create the catalog file.
Best regards,
Fangzhou CHEN
Fangzhou CHEN
TechNet Community Support

Similar Messages

  • Is it possible to disable touch screen function of...

    Tomorrow I will buy a Nokia smartphone to my wife and she likes non-touch screen though among the available models I only liked some phones that are of touch and type style.
    I was wondering whether it would be possible to turn off the touch screen. I know she would use exclusively the keypad but the availability of the touch screen, especially when touches mistakenly, can cause some problems.

    You can also think of touch and type devices like Nokia Asha series nokia 303 etc.....these devices can be operated via either keypad or from screen
    while on higher end of segment Nokia E7 is great smartphone with its physical qwerty keyboard

  • How can I disable touch screen for HP Pavillion DV3-2310ea

    Howdy
    The touchscreen on this laptop can be annoying - even though I've reduced the sensitivity, living in a cat rescue home is challenging to say the least when a strand of cat fur gets on the screen or when a tail brushes the screen, not to mention a cat sneeze -_-
    I've been looking around for solutions and I found one stating unchecking the box in "Pen and Touch" in the control panel - however on this laptop there's no box to uncheck  
    I can't find any settings to disable touch screen, so would anyone know if there's a driver I can temporaraily disable (I'd like to KEEP the option to enable the touch screen - just to show off to friends ) 
    Thanks for your time - Gypsy
    P.S I'm sorry if this topic has already been discussed I've just joined to ask this question 

    Hello,
    Would like to leave my contibution on this post:
    In order to disable the touchscreen, you have to go to control panel, select Tablet PC settings, then select Pen and touch and do what the print screens below show you:
    Let me know if this sorted out your question.
    Thanks,
    I work for HP! Please remember to provide and if this helped click ON
    Attachments:
    12513771_image7.png ‏35 KB
    windows-8-tablet-pen-and-touch-settings.png ‏154 KB

  • I was restoring my Iphone 4S and the touch screen function is disabled and I cannot use my Iphone anymore

    I was using my wife's account on my Iphone. I wanted to separate and tried to restore my Iphone with my new account and wanted to restore. The touch screen function stopped working. It does not let me start the set up.

    what are you trying to do?

  • My iphones touch screen function is not working. I cannot do anything because it is passcode locked and i cant swipe to enter the code...pls help

    my iphone 5 touch screen function is not working. I cannot do anything right now even reset it because i cannot disable the Find my Iphone feature which is needed in resetting your iphone thru itunes. Please help. My phone is already out of warranty and i cannot just rely on techinicians here in our place since it is possible they might switch the original parts to something else...please help me thanks

    Log in to https://icloud.com/find using your Apple ID. Erase and then disconnect your phone from your account.  You can then restore it using iTunes.

  • HT204168 touch screen function not working when using facetime

    Why is my iPad touch screen function not working when using FaceTime?

    Hi megascones,
    I apologize, I'm a bit unclear on the exact nature or scope of the issue you are describing. If you are having issues with the touch screen on your iPad, you may find the troubleshooting steps outlined in the following article helpful:
    If the screen on your iPhone, iPad, or iPod touch doesn't respond to touch - Apple Support
    Regards,
    - Brenden

  • Why is my touch screen function not working when using facetime

    Why is my touch screen function not working when using facetime

    Hello megascones,
    After reviewing your post, it sounds like the screen is not responding to touch in one app. I would recommend that you read this article, it may be able to help the issue.
    If the screen on your iPhone, iPad, or iPod touch doesn't respond to touch - Apple Support
    Restart your device. If you can't restart, reset your device.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Feature to disable touch screen when pen is detected is no longer available in windows 7

    In N-trig drivers  with windows vista there was an option where one could select the option to disable the touch input when pen in near the screen.  That feature is no longer available when I installed new n-trig drivers in win7.
    I use my tablet a lot to take notes. But with dual mode on it detects input where I rest my palm on the screen to write. Every time I have to go and disable touch input completely before I start writing and enable after I finish. 
    I there any way to enable auto mode with Windows 7 n-trig drivers?
    This question was solved.
    View Solution.

    Thanks for your reply.
    I talked about this with HP tech support and they don't know anything about it. I don't even know whether they are qualified enough to provide support. They were just blaming the problems on Microsoft and N-Trig. I knew the problem is with the drivers and I wanted them to let N-Trig know that people like us are waiting to the Auto feature. But instead of considering my complaint they hung up on me not once but twice.

  • How do I disable touch screen temporarlily in command promt?

    I had been Starting a Command prompt, and here's what I have So far
    @echo off
    title YELLOW_BEAR
    mode 166,68
    :BEGIN
    color 6E
    echo ITS ME
    shutdown.exe /r /c "IT'S ME" /t 60
    (disabling mouse, touch screen, ect. line would be here)
    goto GOLDEN_BEAR
    :GOLDEN_BEAR
    "C:\Users\[USERNAME]\Videos\[FILENAME].mp4"
    TIMEOUT 20
    pause
    goto GOLDEN_BEAR
    I have one teeny question- Is there Any way I can add on to this so it can also disable ALL user actions? (touching the screen, typing, mouse pad) BUT, for only temporary purposes so it can be enabled again when restarted? (note line #7, "shutdown.exe
    /r /c "IT'S ME" /t 30)
    so it would be like this-
    user clicks on prompt
    user sees ITS ME on command prompt window
    user is notified windows will shutdown, with comment of IT'S ME
    [FILENAME].mp4 (around 20 seconds, note "TIMEOUT 20") would play, user cannot pause because off  
             all actions would be disabled
    after 20 seconds, [FILENAME].mp4 would play again, in fact 2 more times ,total of three the user.        
            not being able to do anything], until  it restarts and the
            touch screen would be working again
    by the way, I run windows RT 8.1 on surface 1

    Open it in iTunes and restore your device.

  • How to disable touch screen for touchsmart 610

    HP TouchSmart 610
    Windows 7 64-bit
    I need to touch the screen without causing stuff to move.

    Not sure what you ? is since your subjet says : how to disable then your statement in the body of the form says " touch the screen without causing stuff to move" so confused.
    What I suggest is pick your model here from the Model 610 page and look for what your asking within that page on your system.
    http://h10025.www1.hp.com/ewfrf/wc/pfinder?cc=us&d​lc=en&lc=en&tool=&query=touchsmart+610#N194
    Hope it helps

  • HP Stream 7 5701 Tablet - disable touch screen for toddler

    I have a toddler who likes to watch iTunes movies on the HP Stream 5701 Tablet but he touches the screen and stops the movie.  Is there a simple and easy way to disable the touch screen and let the movie continue to play?

    You don't disable the touch screen persay.. it simply disables buttons except sleep, and the only control on the screen is a box to unlock the screen (The movie is in full screen playback). The unlock button can be as simple as a push button, to something as complex as a gesture. So the kid is free to put his hands all over the screen with little fear of stoping or exiting the movie. 

  • Brand New Carbon X1 loses Touch Screen function!!!!

    Hi there
    I just purchased Carbon X1 touch screen version for less than a week and all of a sudden I found out the touch screen was not working any more.
    I checked the system property and it shows "No pen or touch input is available for this display". That's totally wierd because when the time I received this product it worked very well. 
    I also checked the device manager. It shows "
    Currently, this hardware device is not connected to the computer. (Code 45)
    To fix this problem, reconnect this hardware device to the computer.
    I tried almost every method mentioned about touch screen malfunction and none of them worked. I even refresh this laptop and this issue still exists. 
    Could some one here help me figure out this problem? I don't want send my laptop back to lenovo because I just purchased for less than one week and I'm really need it now.

    Can someone tell me if this is not under warranty?
    Image 1
    Image 2
    Image 3
    Moderator edit: Moderator edit: Large pic converted to link, per the Community Rules.

  • How do I restrict access to touch screen functions on M401dn printer

    I have just received a Laserjet pro (M401dn) printer for use in a classroom. It is now set up for network printing but is there any way I can stop students changing settings like IP address from the touch screen console. Our previous printers (P2055dn) had all the settings accessible but through an unattractive 2 line LED console. The new printer with its colour touch screen is just too tempting for inquisitive fingers.

    Put some duct tape over it.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • Windows 8.1 hyperlinks not responding to touch screen

    I was running with the beta version 3 34. Running on surface pro 2 windows 8.1. Hyperlinks on pages do not respond to touch, however I am able to scroll up and down and do other things. Under mouse control the hyperlinks are slow to respond. I just uninstalled the beta and downloaded the current version of the site. Having the same problem. Explorer works find, both the app and the full version. Firefox was working fine until an update yesterday. Suggestions please.

    Hello, try '''disabling graphics hardware acceleration'''.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    Open Firefox ''Options'' window as follows:
    * Click the menu button [[Image:New Fx Menu]] and select ''Options''
    * In the Firefox Options window, click the ''Advanced'' tab, then select ''General''.
    * In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    * Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • How does one change touch screen functions within Photoshop?

    I have an HP TouchSmart all-in-one desktop PC and in Photoshop CC, the touch input pans acreoss the canvas instead of drawing/using the selected tool. How may I work around this?

    Google's your friend. Do a search for login screen mac and peruse the many hits.

Maybe you are looking for