First, open Notepad and paste the below PowerShell code into it (tweak the milliseconds sleep to your liking, "50" is very aggressive):
Code:
---------
add-type -AssemblyName microsoft.VisualBasic
add-type -AssemblyName System.Windows.Forms
C:\Windows\System32\SnippingTool.exe
start-sleep -Milliseconds 50
[Microsoft.VisualBasic.Interaction]::AppActivate(“Snipping Tool”)
[System.Windows.Forms.SendKeys]::SendWait(“^{n}”)
---------
Save this file as something like "snipping_tool_workaround.ps1" in your C:\Users\<username>\Documents directory (or where ever you want).
Then create a desktop shortcut with the following (replace "<username>" with your user name or full path, of course):
Code:
---------
%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -File "C:\Users\<username>\Documents\snipping_tool_workaround.ps1"
---------
Name the shortcut whatever you want.
Now when you double-click on that shortcut, the snipping tool opens and defaults to Ctrl-N (a new snip).