Tuesday, December 20, 2022

Windows 10 calculator missing after sysprep free - Post navigation

Looking for:

Windows 10 calculator missing after sysprep free 













































    ❿  

Customizing Windows 11 and 10 in Audit Mode with Sysprep - Windows 10 calculator missing after sysprep free



  Ensuring that each admin adds notes in the Change Log with their name, date, and other pertinent information helps to track who is doing what.❿    

 

Windows 10 calculator missing after sysprep free



   

The most common reason why sysprep fails with this error message is because you are trying to sysprep an upgraded system. Maybe you try this. I found several threads from people having same issue in the internet including MS forums — no solution. I ended up like this. Can I just delete them? You never know if the file is needed by a fancy process. There are countless of files on a Windows system that you probably will never need.

I am afraid we have to live with that. PackageName ———— Microsoft. Do you know I had removed all provisioned packages using remove command, now I want to get them back. Is there a way to get them back? This is the best one yet! I took out all the apps. And so much more simple that most scripts I have come across. This ran perfectly for me.

Now how do I get Windows calculator back? Moving between the branches each Feature upgrade would reinstall the Appx Applications that you previously removed.

I have a solution:. I am trying to build a bat that removes both AppX provisioned and normal based on Exception List. Save as the Generalize. Run sysprep Generalize and see if that works for you. Your email address will not be published. Notify me of followup comments via e-mail. You can also subscribe without commenting.

Receive new post notifications. Please ask IT administration questions in the forums. Any other messages are welcome. Receive news updates via email from this site. Toggle navigation. Remove provisioned built-in apps in Windows 10 Home Blog Remove provisioned built-in apps in Windows Author Recent Posts. Michael Pietroforte. Michael Pietroforte is the founder and editor in chief of 4sysops. He has more than 35 years of experience in IT management and system administration.

Latest posts by Michael Pietroforte see all. Related Articles. Redirect user profile folders documents, pictures, etc. John Philipson 5 years ago. Michael Pietroforte 5 years ago. Did you try removing the user account that installed the apps? Which entry are you referring to that shows that situation, please? Metoo 5 years ago. Keith K 5 years ago. Shamster 5 years ago.

Yes, I did. What error message does the sysprep GUI display? Slava 5 years ago. James H 5 years ago. Any other alternatives? Tim 5 years ago. Hi All, Do you know I had removed all provisioned packages using remove command, now I want to get them back.

As far I know there is no officially supported way to bring back removed provisioned apps. PaulaJava 5 years ago. How do I apply this to a mounted image? Maybe it worked too well then. As far as I know there is no way to restore an unprovisioned app. Paula Vivian White 5 years ago. Is there a way to run this and make calculator an exception? Jonathan 5 years ago.

Name 4 years ago. Bellow is a bat file. Whilst there may be a lot of plus points to UWP apps around security and portability, most administrators and consultants are just trying to achieve their Windows 10 deployments with a minimum of fuss, rather than reinvent the wheel while they are at it.

In my experience, this is where most people are at, and the users — they just want to get on with their work. So how can we remove the UWP apps from our image? The first option is to remove the UWP apps from a device either during the build in Audit Mode , or when the image is already running.

Also, as I will mention later, you can remove the apps in supported or unsupported ways. The second option is to remove the UWP apps from your actual ISO image that you are using for Windows 10 builds and then deploy from there. There are some UWP apps that you may need to keep in the image. Microsoft Edge is the first one people think of, but the main one that you probably actually may need is the Windows Calculator, which Microsoft saw fit to make into a UWP app.

So you need to identify the apps like Calculator which users may well need and which are now UWP apps. We will attack this in two ways — firstly I will show you how to remove as many as possible without breaking anything, and then I will show you a couple of ways in which you can hack the rest out but be warned, this is totally unsupported and may well give you issues when applying updates.

The idea is though that whichever machine you perform this on would then become your base reference image for deployment. Now, here is some nifty PowerShell that will allow you to pick which apps you want to remove from a list, by using the little-known to me anyway out-gridview cmdlet.

Run this command from an elevated PowerShell prompt. Now what you need to do is simply highlight the apps you want to remove — remember, we are working on the provisioned apps from the online current image, so removing apps here will stop them being deployed to new users.

I normally get quite gung-ho here — I tend to leave the Store and Calculator behind as a rule. Not all of the apps you select will be successfully removed, some may be OS-dependent so will fail. Occasionally you may get a COM exception error and the process will stop. If this happens, run the command again and remove the packages individually until you find the errant one.

In this instance it was the Skype app which was throwing the error, for some reason. In some cases, trying after all the other apps have been removed may get rid of the one throwing the error. Next I will run the same style of PowerShell for the packages installed for the current user. Not entirely sure this step is required, but I like to be thorough. You will see there are many more app options here!

Realistically, without digging into unsupported areas, this is as much as you can remove. You can also dig even further into the guts of your Windows 10 image by using the PowerShell cmdlet below. If you want to remove any you can do this through the GUI as well you can run the following PowerShell once you have copied the name from the Get-WindowsCapability output. You may have noticed something here — that, namely, we have a few more UWP apps than we were expecting!

Mail, Calendar and Skype appear to have resurrected themselves! This is to demonstrate how easy it is, with the odd names of UWP apps, to miss things out.

What I have done is failed to successfully get rid of everything I was aiming for. Windows Mail and Calendar both sit under the confusing name of microsoft.

You will remember Skype gave us the COM exception error when trying to remove it earlier, but when I do it this time, it removes successfully. Not sure why this happened — possibly just an anomalous error. But the lesson is — go back and check before we finish up — you may need to remove more apps here! This is as far as you can go without getting into dodgy territory. What if you really wanted to remove them? There are a couple of, and I need to stress this, probably completely unsupported ways of doing this….

This service controls the provisioning of the UWP apps to new users. So if you disable it, none of them will be deployed. Sounds good, right? Is there any way we could load them back in? Could we use PowerShell to just load the apps we want as the user logs in? Hat tip to Jack Smith over at LiquidWare for pointing me to his script which is hosted here. When a user logs on with App Readiness disabled, we could maybe load the apps we want back in by using this bit of PowerShell?

Cortana, windows. However, adding apps needs admin privileges, which frankly I find a bit bizarre. Could we manage this with a Scheduled Task? What we need is a way to make our logged-on interactive user an elevated admin temporarily, in order for this to work. We need to use Ivanti Application Control formerly Application Manager to apply a Builtin Elevate to the interactive non-admin account. Next use Ivanti Application Control to allow the user in this case we applied it for Everyone to get the Builtin Elevate on running this script file, which means it runs as an administrator.

Before you do any Windows 10 Cumulative Updates, the App Readiness service needs to be running or it will fail the update. So before updates are deployed, the GPO will need to be temporarily reversed — bit of a pain, although you could probably do something clever with a shutdown script, which turns the service back on as the machine goes down for maintenance and then it gets disabled again at startup, maybe again, I might revisit this bit later.

First, download psexec from the PSTools suite into your image. Log on as an administrator and fire up an admin command prompt, then run these commands. This will rename a set of source folders that seem to be the genesis of the shortcuts in the Start Menu. If you neglect to do this second folder rename i. You can repeat this process for the Connect app by identifying it and repeating the same process we have outlined above. The Connect app is titled Microsoft. So with this in hand, we are now down to the maximum possible strimming of UWP apps that can be done well, unless you want to take out Edge and Calculator too, but we might need those.

Would I use this second method personally, renaming the folders and setting up dummy ones? Much as though I am loth to see useless stuff like the Mixed Reality Portal cluttering up the Start Menu and wasting valuable logon time as it is dumped on there, fiddling with the Windows 10 app folders does give you problems with updates. Hopefully Microsoft might actually deprecate the Mixed Reality Portal and stop shoveling it in our faces.

The script you have downloaded from the link above, make sure this sits in the same folder as the install. Within the script there is a whitelist section which will list the apps that are going to be retained.

The default version retains Calculator and the Store. This is the whitelist section from the script Next, you need to run the downloaded PowerShell script from an elevated session, which as I said previously needs to sit in the same folder as your install.

The syntax is as below. This will then run through the apps in the install files and remove the ones you specified, leaving those in the whitelist. Once completed, you simply need to save the modified install files back into an ISO file.

I normally do this by using ImgBurn , although if you have other software that can create a bootable ISO that will work fine as well. ImgBurn is quite easy to use, just remember to set the options as shown in the two images below. Once this is done, you can use your new modified ISO image to create a Windows 10 device in the usual fashion, but without the UWP apps you have removed.

As noted previously, though, you need to create a custom Start Tiles layout or your screen will look messy as in the above image. The above methods allow you to get rid of as many of the UWP apps as you want. Otherwise, you may give yourself a large overhead of maintenance. Combining these processes with my article on creating a custom default user profile in Windows 10, and my set of Windows 10 logon optimizations, should allow you to get your Windows 10 image as streamlined as humanly possible.

Excellent article!!! I need to know something, is good idea apply this how-to in the mandatory profile creation, in the deploy image, or both? Thanks for your passion. I normally do this in the image as it is device that is key rather than user. I will have an article out soon that deals with mandatory profile creation, which is very similar to dealing with a default profile. Hi Daniel, unfortunately this happens to me occasionally, but if you can find the one app that seems to trigger the error, it usually improves afterwards.

Amazingly thorough, thank you so much! While waiting for the re-release of Windows 10 LTSC I am under a little time pressure to roll out 80 new computers for the faculty users at my college. Then I create an autounattend. So, since that bootable USB drive has a writable install.

Great article, this is exactly what I was looking for. Is there a way to install the Microsoft Store but make it hidden so that we can add apps if need be? If we can make it hidden but then run the exe from the location that would be great but still stuck at trying to run that as well. Thank you again for a great tutorial. This article really helped us in our school, because of the stupid login times on windows 10 for a new user.

The issue we are now facing is Windows Updates fail and machines every morning is reverting changes for about 20 minutes due to the failing updates, found out that disabling App Readiness is causing this. Has anyone else come across this and is there a way around this issue? Been looking around now for a few months and still getting nowhere. This is awesome. It was very frustrating considering it worked great with versions and below.

But the bigger question remains…Why would MS force those apps on you in an Enterprise installation? So annoying.



No comments:

Post a Comment

Microsoft office professional plus 2016 crack + serial key free free download.Updated Features of Microsoft Office 2016

Looking for: Fifa 2005 game download for pc  Click here to DOWNLOAD     ❿   Fifa Football 2005 - Fifa 2005 game download for pc   FIF...