Windows To Go Device using Windows Technical Preview

I have successfully made a Windows To Go Device by the steps in this Technet forum post:
http://social.technet.microsoft.com/wiki/contents/articles/6991.windows-to-go-step-by-step.aspx
Note: I used a host machine running Windows Technical Preview already to make this device, since older versions (Windows 8/8.1) of DISM don't work for imaging Windows Technical Preview Installation.
Everything works fine. The device on which Windows To Go is running is a high-speed USB 3.0 HDD, so there is no significant performance difference. However, while updating to the new build 9860, the upgrade fails stating that you can't install it to a USB
Flash Drive.
Question 1) Does this problem has anything to do with the fact that I am NOT using the enterprise version of Windows Technical Preview, the only version which "technically" supports Windows To Go feature.
Question 2) My host machine (which I used to create Windows TP) has been updated to Build 9860. Should I use DISM to capture the image of this updated build and use it to image the WTG HDD device? Can I get detailed instructions on how to do this?

Hi G.One1,
In current time, there is no direct way to perform the upgrade, in both Native Boot to VHD and Windows To Go.
I was thinking a way to create a ISO file also, but the method would be a bit of complicated.
Here is my thought and steps.
First, if we update our Windows 10 Technical Preview for Enterprise to 9860 build, we would get a install.esd file, in Windows 8.1, here is a tool called update advisor, which would
convert the esd file to ISO file, but in Windows 10 Technical Preview, there is no such thing. So my thought is to use the install.esd to create an install.wim or bootable ISO file.
In my first thought, I want to sysprep an updated OS, but it failed without doubt. So, I choose to use Reset option. Install.esd would be recognized a compressed install.wim.
I copy the install.esd to a 9841 build OS, for example, I copy it to C:\RecoveryImage, and run
reagentc.exe /setosimage /path C:\RecoveryImage /target c:Windows /Index 1 , it cannot reset the Windows OS.
I use Reset option in 9860 build OS, when it is finished, run sysprep, it ran well, I can capture 9860 build wim file (WDS server capture or dism command). We rename it as install.wim.
Use the captured install.wim to set recovery image in 9841 build(copy install.wim to C:\RecoveryImage, and run
reagentc.exe /setosimage /path C:\RecoveryImage /target c:Windows /Index 1), 9841 build succeed upgrade to 9860 build via Reset and Refresh options.
For Windows To Go, Yes, you can use all Windows features with your Windows To Go workspace. The only currently unsupported features are using the Windows Recovery Environment and PC Reset &
Refresh. So this way is not appropriate in your situation. But here we use these steps can convert the install.esd to install.wim, and use reset and refresh option to upgrade current build.
Refresh would upgrade without losing setting and data. For your scenario, use dism to apply 9860 install.wim would be your option.
Alex Zhao
TechNet Community Support

Similar Messages

  • Add Folder to Library option is not available in the latest version of iTunes for Windows. I am using Windows 7 64 bit. Any suggestion ?

    Add Folder to Library option is not available in the latest version of iTunes for Windows. I am using Windows 7 64 bit. Any suggestion ?

    CTRL + B will bring up the menu bar, on which is File/Add Folder...

  • Figuring out how to access a device using Windows.Devices.HumanInterfaceDevice?

    Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
    http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
    After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
    if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
    Public Class VirtualMouseDeviceOpen
    Class Enumeration
    ' Enumerate HID devices
    Public Async Function EnumerateHidDevices() As Task
    Dim vendorId As UInt32 = &HBEEF
    Dim productId As UInt32 = &HFEED
    Dim usagePage As UInt32 = &HFF
    Dim usageId As UInt32 = &H1
    ' Create a selector that gets a HID device using VID/PID and a
    ' VendorDefined usage
    Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
    ' Enumerate devices using the selector
    Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
    Dim count As Integer = devices.GetResults.Count
    If count > 0 Then
    ' Open the target HID device
    ' At this point the device is available to communicate with
    ' So we can send/receive HID reports from it or
    ' query it for control descriptions
    Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
    Await Vendor.ReadWriteToHidDevice(device)
    Else
    ' There were no HID devices that met the selector criteria
    MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
    End If
    End Function
    Class Vendor
    Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
    If device IsNot Nothing Then
    ' construct a HID output report to send to the device
    Dim outReport As HidOutputReport = device.CreateOutputReport()
    ' Initialize the data buffer and fill it in
    Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
    Dim dataWriter As New DataWriter()
    dataWriter.WriteBytes(buffer)
    outReport.Data = dataWriter.DetachBuffer()
    ' Send the output report asynchronously
    Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
    ' Sent output report successfully
    ' Now lets try read an input report
    Dim inReport As HidInputReport = device.GetInputReportAsync()
    If inReport IsNot Nothing Then
    Dim id As UInt16 = inReport.Id
    Dim bytes = New Byte(3) {}
    Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
    dataReader__1.ReadBytes(bytes)
    Else
    MsgBox("Invalid input report received")
    End If
    Else
    MsgBox("device is NULL")
    End If
    End Function
    End Class
    End Class
    Here's my report descriptor to avoid scrimmaging through everything trying to find it:
    HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
    0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0xA1,0x01, // COLLECTION (Application)
    0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x15,0x00, // LOGICAL_MINIMUM(0)
    0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0xB1,0x00, // FEATURE (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x81,0x00, // INPUT (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x91,0x00, // OUTPUT (Data,Ary,Abs)
    0xC0, // END_COLLECTION
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x02, // USAGE (Mouse)
    0xa1, 0x01, // COLLECTION (Application)
    0x85, 0x02, // REPORT_ID (2)
    0x09, 0x01, // USAGE (Pointer)
    0xa1, 0x00, // COLLECTION (Physical)
    0x05, 0x09, // USAGE_PAGE (Button)
    0x19, 0x01, // USAGE_MINIMUM (Button 1)
    0x29, 0x03, // USAGE_MAXIMUM (Button 3)
    0x15, 0x00, // LOGICAL_MINIMUM (0)
    0x25, 0x01, // LOGICAL_MAXIMUM (1)
    0x95, 0x03, // REPORT_COUNT (3)
    0x75, 0x01, // REPORT_SIZE (1)
    0x81, 0x02, // INPUT (Data,Var,Abs)
    0x95, 0x01, // REPORT_COUNT (1)
    0x75, 0x05, // REPORT_SIZE (5)
    0x81, 0x03, // INPUT (Cnst,Var,Abs)
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x30, // USAGE (X)
    0x09, 0x31, // USAGE (Y)
    0x15, 0x81, // LOGICAL_MINIMUM (-127)
    0x25, 0x7f, // LOGICAL_MAXIMUM (127)
    0x75, 0x08, // REPORT_SIZE (8)
    0x95, 0x02, // REPORT_COUNT (2)
    0x81, 0x06, // INPUT (Data,Var,Rel)
    0xc0, // END_COLLECTION
    0xc0 // END_COLLECTION
    My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
    Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us

    Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
    http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
    After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
    if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
    Public Class VirtualMouseDeviceOpen
    Class Enumeration
    ' Enumerate HID devices
    Public Async Function EnumerateHidDevices() As Task
    Dim vendorId As UInt32 = &HBEEF
    Dim productId As UInt32 = &HFEED
    Dim usagePage As UInt32 = &HFF
    Dim usageId As UInt32 = &H1
    ' Create a selector that gets a HID device using VID/PID and a
    ' VendorDefined usage
    Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
    ' Enumerate devices using the selector
    Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
    Dim count As Integer = devices.GetResults.Count
    If count > 0 Then
    ' Open the target HID device
    ' At this point the device is available to communicate with
    ' So we can send/receive HID reports from it or
    ' query it for control descriptions
    Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
    Await Vendor.ReadWriteToHidDevice(device)
    Else
    ' There were no HID devices that met the selector criteria
    MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
    End If
    End Function
    Class Vendor
    Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
    If device IsNot Nothing Then
    ' construct a HID output report to send to the device
    Dim outReport As HidOutputReport = device.CreateOutputReport()
    ' Initialize the data buffer and fill it in
    Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
    Dim dataWriter As New DataWriter()
    dataWriter.WriteBytes(buffer)
    outReport.Data = dataWriter.DetachBuffer()
    ' Send the output report asynchronously
    Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
    ' Sent output report successfully
    ' Now lets try read an input report
    Dim inReport As HidInputReport = device.GetInputReportAsync()
    If inReport IsNot Nothing Then
    Dim id As UInt16 = inReport.Id
    Dim bytes = New Byte(3) {}
    Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
    dataReader__1.ReadBytes(bytes)
    Else
    MsgBox("Invalid input report received")
    End If
    Else
    MsgBox("device is NULL")
    End If
    End Function
    End Class
    End Class
    Here's my report descriptor to avoid scrimmaging through everything trying to find it:
    HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
    0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0xA1,0x01, // COLLECTION (Application)
    0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x15,0x00, // LOGICAL_MINIMUM(0)
    0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0xB1,0x00, // FEATURE (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x81,0x00, // INPUT (Data,Ary,Abs)
    0x09,0x01, // USAGE (Vendor Usage 0x01)
    0x75,0x08, // REPORT_SIZE (0x08)
    //0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
    0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
    0x91,0x00, // OUTPUT (Data,Ary,Abs)
    0xC0, // END_COLLECTION
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x02, // USAGE (Mouse)
    0xa1, 0x01, // COLLECTION (Application)
    0x85, 0x02, // REPORT_ID (2)
    0x09, 0x01, // USAGE (Pointer)
    0xa1, 0x00, // COLLECTION (Physical)
    0x05, 0x09, // USAGE_PAGE (Button)
    0x19, 0x01, // USAGE_MINIMUM (Button 1)
    0x29, 0x03, // USAGE_MAXIMUM (Button 3)
    0x15, 0x00, // LOGICAL_MINIMUM (0)
    0x25, 0x01, // LOGICAL_MAXIMUM (1)
    0x95, 0x03, // REPORT_COUNT (3)
    0x75, 0x01, // REPORT_SIZE (1)
    0x81, 0x02, // INPUT (Data,Var,Abs)
    0x95, 0x01, // REPORT_COUNT (1)
    0x75, 0x05, // REPORT_SIZE (5)
    0x81, 0x03, // INPUT (Cnst,Var,Abs)
    0x05, 0x01, // USAGE_PAGE (Generic Desktop)
    0x09, 0x30, // USAGE (X)
    0x09, 0x31, // USAGE (Y)
    0x15, 0x81, // LOGICAL_MINIMUM (-127)
    0x25, 0x7f, // LOGICAL_MAXIMUM (127)
    0x75, 0x08, // REPORT_SIZE (8)
    0x95, 0x02, // REPORT_COUNT (2)
    0x81, 0x06, // INPUT (Data,Var,Rel)
    0xc0, // END_COLLECTION
    0xc0 // END_COLLECTION
    My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
    Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us
    I forgot anyone wanting a picture of what the device hierarchy looks like in control panel here it is (HID compliant vendor device is the first one in the report descriptor above I want to access and then the mouse device): 
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
    http://www.computerprofessions.us

  • Bit Locker Implementation in Windows 8.1 machine using Windows server 2008 r2 server group policy.

    is it possible to enable the bit locker only for windows 8.1 machines through windows 2008 r2 server group policy ?
    Thanx and Regards,
    Shanif

    Hi Shanif,
    Yes, we can do this.
    Regarding how to enable Bitlocker via group policy, the following article can be referred to as reference.
    Cannot Save Recovery Information for Bitlocker in Windows 7
    http://blogs.technet.com/b/askcore/archive/2010/02/16/cannot-save-recovery-information-for-bitlocker-in-windows-7.aspx
    After configuring the settings, we can use security filtering or WMI filtering to apply the policy to specific computers.
    Regarding this point, the following blog can be referred to for more information.
    Security Filtering, WMI Filtering, and Item-level Targeting in Group Policy Preferences
    http://blogs.technet.com/b/grouppolicy/archive/2009/07/30/security-filtering-wmi-filtering-and-item-level-targeting-in-group-policy-preferences.aspx
    Best regards,
    Frank Shen

  • Bought a new Sony Vaio Windows 7. After using Windows easy transfer Adobe X will not open.

    I purchased a Sony Vaio laptop and after using Windows 7 Easy Transfer, Adobe X will not open. I have tried uninstalling and reinstalling a number of times with no resolve. I get a nessage that says Adobe has stopped working and a further message that says Incompatible application

    Did you already try to delete the photo cache? iTunes: Understanding the iPod Photo Cache folder

  • No network devices using Windows 7 and Boot Camp

    I've tried downloading on the Mac the Boot Camp Assistant drivers file, but it won't write to the USB drive and balks at using a DVD. 
    I've tried downloading from www.apple.com the Boot Camp Support Software for Windows 7 but when I try to open the zip file and copy to a USB, it keeps saying to provide the last volume, as if the downloaded files weren't complete.  Almost to the point of giving up.  Help!

    Try this.
    http://support.apple.com/kb/DL1638
    You can also us a Windows PC to download them, extract the ZIP file and copy them to a USB thumb drive if your Mac can't handle that simple task.

  • Muvo slim,What is displayed in window and does it use windows explorer drag and drop to trans

    Im about to buy a muvo slim and already own a zen xtra.Does muvo slim allow for recharge using plug accessory I got with my zen or can i only charge using usb cord and computer?What is displayed in screen and can i use drag and drop transfer method from windows explorer?Finally can i use the mediasource 3.20 softwear update i now use with my zen or must i input different mediasource version for slim than one i use with the zen? thanks matt

    mattg3 wrote:
    Im about to buy a muvo slim and already own a zen xtra.Does muvo slim allow for recharge using plug accessory I got with my zen or can i only charge using usb cord and computer?
    It charges via its USB socket, so you can't use the Xtra's power supply.
    What is displayed in screen and can i use drag and drop transfer method from windows explorer?
    It works as a flash dri've, so appears as a dri've letter in Windows Explorer.
    Finally can i use the mediasource 3.20 softwear update i now use with my zen or must i input different mediasource version for slim than one i use with the zen? thanks matt
    Go to Nomadworld.com downloads and you'll see the Slim listed there with MediaSource and the MuVo plugin.

  • When I jhave firefox on my computer weather I am using it or not windows crashes I am using windows vista on a toshiba laptop

    My 4 year old Toshiba laptop with windows Vista crashes when ever I have firefox installed on my computer. When I uninstall firefox the crashes stop weird.

    Please try Firefox in Safe Mode. To access Safe Mode - Click Start Menu > All Programs > Mozilla Firefox > Mozilla Firefox (Safe Mode).

  • Firefox crashes after I close a 'sent email' window. I am using Windows 7 and have recently updated to Firefox 4.0.1, using AOL toolbar 2.1. ID: 9dafea24-ccbc-4c76-b3ea-fddeb2110430 Signature: JSObject::nativeSearch(int, bool)

    Firefox crashes every 2nd or 3rd email I send.

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • When I started up Firefox after a 30 seconds de connection with my wifi disconnected. The connection can not starting also not when I had starting find problems in windows. I'm using windows 7 and firefox 7.0.

    When I than starting IE the connection will starting en is oké.

    You should actually be using Flash 10.3 (11.2 is insecure).[[Flash 11.3 doesn't load video in Firefox#w_solution-2-downgrade-flash|Solution 2: Downgrade Flash]].
    Also, is there a reason you are using Firefox ESR? It's mean for organizations, and doesn't include all the security and stability fixes that Firefox latest (15.0.1) has.

  • Pavilion dm3 AMD switchable graphics (HD4000&HD5000) in Windows 10 Technical Preview

    Basically it is a continuation of my previous topic:
    http://h30434.www3.hp.com/t5/Notebook-Display-and-Video/Pavilion-dm3-AMD-switchable-graphics-HD4000-...
    Users of HP laptops with switchable graphics HD4000/HD5000 will face the same problem after upgrade to Windows 10.
    The earlier we'll start to discuss and find the solution for this sort of laptops the higher chance that we will be able to use our laptops in Windows 10.
    I use Windows 10 Technical Preview now and I try to find the correct driver for my laptop.

    Hello there mate got g510 iam on windows 10 insider preview build 10159 and it runs smooth! about the driver thingy i found it the most easy to do beyond all the other devices out there  all u have to do is downlaod and install the last build from here : https://mega.nz/#!hUc2SSDI!9VRPiak8tS90rKbbVEEA0MCn5QbI8YgWRA_gCkFmcrY make sure to clean install it by 8gb at least flash driver and u are good to go ps: upgrading from older builds can make crashes and black screens after the amd driver installed so just make clean install for ur own good after u are done u can check for windows updates and it will take the intel and amd drivers that supports the wddm 2.0 plus the conexant audio and bluetooth ,Elan touchpad ,  the last stable ones comes with the updates and trust me its the most stable ones ive used so far the remaining unknown device and the pci is for the power manager and the intel imanagement engine u can use windows 8.1 x64 drivers for those sorry for the bad english tho xD  

  • Hardware Development Kits for Windows 10 Technical Preview now available!

    Install the latest tools to build, test, and deploy drivers; test and measure your hardware running Windows; and customize, assess, and deploy Windows 10 on your hardware.
     These tools are now available for Windows 10 Technical Preview:
    Visual Studio 2015 CTP 6
    Visual Studio Tools for Windows 10 Technical Preview
    Windows SDK for Windows 10 Technical Preview
    Windows Driver kit (WDK) 10 Technical Preview
    Windows Hardware Lab Kit (HLK) Technical Preview
    Windows Assessment and Deployment kit (ADK) Technical Preview
    Become a
    Windows Insider to get the latest Windows 10 technical preview and the latest hardware development kits and tools.
    Get
    the WDK samples from GitHub
    Check out the
    Windows Driver Framework source code. It’s now open source and available on GitHub!
    Known issues
    Be aware of these known issues (as of 3/23) in this release:
    Windows SDK
    After you install the Windows SDK, Windows 10 apps might not build successfully with
    Visual Studio 2015 Community Technology Preview (CTP) 6 due to a of a metadata problem. Although you should not install the Windows SDK if you are doing app development, you can use the following workaround to build an app
    successfully:
    Exit Visual Studio.
    Open a command prompt as administrator.
    Run the \Program Files (x86)\Windows Kits\10\bin\x86\GenerateUnionWinMD.cmd script. 
    Windows ADK
    When installing to Windows 7 PCs, run ADKSetup.exe in administrator mode.
    WDK
    Currently, WDM templates do not build
    Driver deployment to target PCs won’t work if the
    Display name used in the Device Configuration dialog is different than the
    Network host name. In this release, verify that these names are the same.
    Target creation of mobile devices causes Visual Studio to become non-responsive.

    Hello ,
    May I know ,where is the HLK download link
    Is it likely HLKSetup.exe ??thanks
    Windows Hardware Lab Kit (HLK) Technical Preview

  • [Forum FAQ] How to show Windows Update in Control Panel in Clean Installation of Windows 10 Technical Preview Build 9926

    Scenario
    If you performed a clean installation of the new Windows 10 Technical Preview Build 9926, you would find Windows Update is only available in
    Settings and is hidden in Control Panel by default. However, Windows Update is still available in Control Panel if it is an upgrade version of Windows 10 Technical Preview Build 9926.
    Solution
    After the comparison of the two different version, the differences is the following registry:
    HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\IsConvergedUpdateStackEnabled
    In clean installation version:
    In upgrade version:
    The method to make Windows Update show in Control Panel in the clean installation of Windows 10 Technical Preview Build 9926:
    Edit the REG_DWORD value of IsConvergedUpdateStackEnabled from 1 to 0.
    Applies to
    Clean installation of Windows 10 Technical Preview Build 9926
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    We’ve seen a few forum posts talking about changing registry keys to alter the update experience we shipped in Technical Preview build 9926. There are a couple of reasons that we don’t recommend doing things like that.
    First, the default experience is what we’ve tested across not just the Windows 10 team, but across all of Microsoft before we released it to you. That doesn’t mean that you won’t still find bugs, but it’s definitely the code that’s been most thoroughly
    tested. Changing things back to older versions is risky because the combination of those old settings with the rest of Windows 10 is not something that’s been validated or supported, so we can’t predict the side effects. It’s possible that changing registry
    settings related to update could cause a machine to no longer be able to get new updates or Technical Preview builds.
    The other reason to avoid changing the default update experience is that a lot of update-related code is actually being re-written in order to scale across the variety of different device types Windows 10 will support. Since Technical Previews are
    a work-in-progress, some code that may still be in build 9926 won’t actually ship in the final version of Windows 10 that we provide to all our customers, so trying to re-enable that code temporarily won’t provide a way to accurately assess Windows 10’s update
    capabilities.
    We want to hear your feedback! We’re sharing Technical Preview releases early so we can understand exactly how customers are using our software and make sure we are designing our experiences to address those scenarios. The more
    specific the feedback, the more helpful it is for us – saying “I hate the new Windows Update UI” isn’t very useful, but when we see “I need to be able to tell Windows Update to grab updates from WU itself and not from my internal corporate server, so the new
    Windows Update UI is painful for me”, we can actually understand what changes we could make to solve those specific problems. We can’t promise to fix everything that everyone asks for – and sometimes what one customer wants is exactly what another customer
    doesn’t want – but the more you can help us understand why you want something changed, the better we can try to meet those needs.
    Thanks for listening, and we look forward to hearing your responses.
    http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_update/warning-disabling-the-new-windows-update-ui-may/dc846517-eca0-4960-b0ff-1eb7227223f5

  • Windows phone emulator not working with windows 10 technical preview 9926

    I recently updated my computer to technical preview 9926 and now when I launch the windows phone emulator in 2013 visual studio for windows. It says "Starting windows phone OS" for like 10 minutes. Then it gives me an error message:
    windows phone emulator is unable to connect to the windows phone operating system: The phone did not respond to the connect request. Some functionality might be disabled. And then it will boot up for a little and the home search and back
    button wont work and it will never deploy my app then it will crash and bring me back to visual studio. My hyper v is turned on I have checked all the network switches. The emulator used to work with the technical preview but ever since the newest update
    it stopped working. 
    Any help would be appreciated.
     

    Hi mavese,
    >>I recently updated my computer to technical preview 9926 and now when I launch the windows phone emulator in 2013 visual studio for windows
    Currently, Windows 10 is still in the Technical Preview stage, it is not official supported in this forum, and I would suggest you sending feedback using build-in way, please refer to this link:
    http://windows.microsoft.com/en-us/windows/preview-how-to#how-to=tab7
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • X-Fi Titanium on Windows 10 Technical Preview 2 (build 9926) - anyone made it work?

    As in title - was anyone able to make this soundcard work on latest build of windows 10? Installing windows 8.1 driver on previous technical preview was making the card work, installing on current build is close to pointless as card is not working properly and creative control panel can't start as it can't find device.

    Originally Posted by jmacguire
    pmc64:
    While I understand your frustration, there is simply no reason for Creative to make drivers for this card any longer. The fact that Windows 8 drivers were made was surprising, but Windows 10? I just do not think that would happen. It is simply not economically feasible, regardless of any "good will" that it may create. Good will does not keep the lights on if you know what I mean.
    That had better not be an official response from this company, because the backlash may well be more than they can bear.
    Yea, we'll update our cards if we have to, but it won't be to another creative product.
    In their case, "good will" is the only **** thing that will keep the lights on...

Maybe you are looking for

  • Can I get back up discs for adobe software that is pre-installed on a computer?

    I am thinking of buying a used Mac, with Master Collection pre-installed on it. Trouble is, it doesn't come with the discs. Can I get a back-up disc of the Adobe software if I have the license? I have bought used Adobe software before and had the lic

  • Modyfing plant in a service pr created by a PM order.

    Dear all, We have found an issue at the system when we try to change the plant in a PM order with external services. For this items it is determined automatically the Maintenance Planning Plant as the Logistics Plant. We wish to choose the plant that

  • Is javascript in HTML e-mail possible ?

    Hi mates, I'm trying to send an HTML e-mail with a piece javascript code which is an Action handler for the buttons in the HTML mail. Using MailPackage in my mapping, I made sure that javascript and html code is rendered in the output XML message. Bu

  • Aperture 2.1.1 Won't Vault

    I haven't been able to vault since upgrading to 2.1.1. I did a vault immediately before the upgrade and it only took a couple minutes to update the vault. I upgraded and added a few photos, and tried to vault and it popped up an error screen saying "

  • Whose post was removed?

    Dear moderators, I just received 3 "Apple Discussions - Post Removed by Host" messages. Personally, I don't think any of them deserved to be removed. They directly answered the questions posed by the original posters. No doubt the original posters di