SDL Trados Studio PlugIn - not needed SDL signature at all
It bypasses the STUPID SDL's signature warning window.
It, actually, presses the Enter key instead of you.
I've made a Icon at my DeskTop and click it, not the original SDL Icon never.
If you want the same Icon, go to;
"C:\Program Files (x86)\SDL\SDL Trados Studio\Studio5\Product.ico"
It is a AutoHotkey Code not C#.
#NoTrayIcon
SDLmain := "C:\Program Files (x86)\SDL\SDL Trados Studio\Studio5\SDLTradosStudio.exe"
SDLwarn := "Unsigned SDL Trados Studio Plug-in Found"
Run, % SDLmain,, Max
WinWait, % SDLwarn,, 10
While WinExist( SDLwarn )
{
While ! WinActive( SDLwarn )
WinActivate, % SDLwarn
SendInput, {Enter}
WinWait, % SDLwarn,, 2
If ( A_Index > 30 )
ExitApp
}
It bypasses the STUPID SDL's signature warning window.
It, actually, presses the Enter key instead of you.
I've made a Icon at my DeskTop and click it, not the original SDL Icon never.
If you want the same Icon, go to;
"C:\Program Files (x86)\SDL\SDL Trados Studio\Studio5\Product.ico"
It is a AutoHotkey Code not C#.
#NoTrayIcon
SDLmain := "C:\Program Files (x86)\SDL\SDL Trados Studio\Studio5\SDLTradosStudio.exe"
SDLwarn := "Unsigned SDL Trados Studio Plug-in Found"
Run, % SDLmain,, Max
WinWait, % SDLwarn,, 10
While WinExist( SDLwarn )
{
While ! WinActive( SDLwarn )
WinActivate, % SDLwarn
SendInput, {Enter}
WinWait, % SDLwarn,, 2
If ( A_Index > 30 )
ExitApp
}