Maybe it's just me... but is 10 a little slow to respond?

It can be laggy sometimes until you kill all those silly windows store apps, which have online integration.

You can do it in one shot with this command: Get-AppXPackage | Remove-AppxPackage

But do note it will kill ALL the default store apps for your local account (even the calculator!), and even the windows store itself. It may get rid of onedrive as well, but I had already removed it by this point so don't know :P
 
Last edited:
It can be laggy sometimes until you kill all those silly windows store apps, which have online integration.

You can do it in one shot with this command: Get-AppXPackage | Remove-AppxPackage

But do note it will kill ALL the default store apps for your local account (even the calculator!), and even the windows store itself. It may get rid of onedrive as well, but I had already removed it by this point so don't know :P

Intersting. Going to have a look at this.
How did you remove Onedrive though?
 
Gah, restored back to 8.1, only to find that install has been killed too - same black screen after entering the pin code...

Looks like this laptop is now shafted, so clean install of 10 is next...
 
Think some of the above have PC issues. Dont have any delays at all.

Though I think its marginally slower to boot than 8.1 was. 6 seconds vs 5.....
 
Intersting. Going to have a look at this.
How did you remove Onedrive though?

You have to use a script. I'll paste it here.

Make it in to a batch file and run as administrator.

@Echo off
cls

set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe"
set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe"

echo Closing OneDrive process.
echo.
taskkill /f /im OneDrive.exe > NUL 2>&1
ping 127.0.0.1 -n 5 > NUL 2>&1

echo Uninstalling OneDrive.
echo.
if exist %x64% (
%x64% /uninstall
) else (
%x86% /uninstall
)
ping 127.0.0.1 -n 5 > NUL 2>&1

echo Removing OneDrive leftovers.
echo.
rd "%USERPROFILE%\OneDrive" /Q /S > NUL 2>&1
rd "C:\OneDriveTemp" /Q /S > NUL 2>&1
rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S > NUL 2>&1
rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S > NUL 2>&1

echo Removeing OneDrive from the Explorer Side Panel.
echo.
REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1
REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1

pause

I've also noticed the command I posted earlier doesn't remove the xbox app. But it can be done :)

In powershell: "Get-AppxPackage | Select Name,PackageFullname", then find the Microsoft Xbox app on the list. Remove it with: "Remove-AppXPackage <Paste PackageFullname here>"
 
Last edited:
Back
Top Bottom