Hi there,
Yes, you can try out the steps as per the forum as the steps in the article still help you to disable the Store.
If you are familiar with Powershell then you can try the below steps.Right-click your Start Button, then choose Powershell (admin)
Paste this into Powershell and hit Enter, to uninstall the Store App from Windows 10:
Get-AppxPackage -allusers WindowsStore | Remove-AppxPackage
If you want to re-install the Store App at a later stage, you can use this command:
Get-AppxPackage -allusers WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
Hope this resolves your Query !!
-------------------------------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept it as an answer–