Jump to content


stage3roush

Established Members
  • Posts

    3
  • Joined

  • Last visited

stage3roush's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I'm creating a reference Windows 10 x64 reference image in MDT 2013 Update 2 and need to make the IE as the default browser. I'm facing two issues: - When I suspend the TS and set the IE as the default browser on the Administrator's profile, set the http and https to open with IE the changes are made to the Administrator's profile, but not to All user's profile. I'm using the copyprofile and every settings works except the IE being the default browser. - Removing the Edge from the Task bar for All users: I want to remove the Edge and Store from the task bar for all users. During the OSD when the TS is suspended, I remove the Edge from the task bar and make the other changes I want, then resume the TS. When the image is capture and deployed and a user logs on to the system, both the Edge and Store icons pinned back on the task bar. I found a way to remove the Store icon from the task bar with group policy, but no option to remove the Edge. After researching it, I found an article on how to do this with importing a registry key with command prompt, but it seems to be working with SCCM and not MDT. Any help is greatly appreciated. Thanks.
  2. Hello, I'm trying to create a reference image for Window 10 Enterprise 64-bit on my Hyper-V VM and need to remove all the built-in apps for All Users, so I have a PoSh script that I run before syspreping it. I'm having a lot of issues when I try to Sysprep and capture it. It fails. When I check the logs in the sysprep folder on the reference PC, it shows "Sysprep failed to remove the apps for the current user , ( or for the user ) 0x80073cf2. The reference image has no Microsoft account associated with any account, and the only user is Administrator. AThe PoSH script I'm using is: Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Microsoft.WindowsStore*"} | where-object {$_.name -notlike "*Microsoft.Appconnector*"} | Remove-AppxPackage To uninstall all "Provisioned Apps" Get-AppxProvisionedPackage -online | where-object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | where-object {$_.packagename -notlike "*Microsoft.Appconnector*"} | Remove-AppxProvisionedPackage -online According to Microsoft, the issue does not occur if you are servicing an offline image, per the KB below. https://support.microsoft.com/en-us/kb/2769827 How can I sysprep and capture a reference image if it cannot be on the network? Thanks.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.