I did uninstall the old deprecated snipping tool from windows 11. But now I see "snip & sketch" is uninstalled too!
I removed it via right-clicking on the snipping tool in the start and pressing "uninstall".
I don't know how can I reinstall it! I searched in the Microsoft store but I didn't find it. When I search "Snip & Sketch" or "Snip and Sketch" it won't show up.
21 Answer
I don't know how can I reinstall it! I searched in the Microsoft store but I didn't find it.
(A) Using the Store: Go to the Microsoft Store and type:
Snip and Sketch
Snip 'n Sketch comes up and you can install it.
Should work just fine
(B) Power Shell: You can also try Powershell
Install Snip and Sketch with Powershell
You could use the following command to reinstall using PowerShell, if you know package name:
Add-AppxPackage -register “C:\Program Files\WindowsApps<PackageFullName>” –DisableDevelopmentMode
To get package name try this command in PowerShell:
Get-Appxpackage –Allusers
And find package name in the list.
Also look at the next post down in the article.
0