I'm trying to send a shortcut with VB.NET 4.5 (ALT + SCROLLOCK).
Option Strict On
Imports System.Windows.Forms
Module Module1
Sub Main()
SendKeys.SendWait("%{SCROLLLOCK}")
End Sub
End Module
When I execute it, nothing happens. I read something about security issues of Windows, but didn't found a solution so far.
Is there a way to do it? It is also okay for me to use something like AutoIT. I'm using Windows 7 64Bit.