This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires AutoHotkey v2.0 | |
UseGDIP() | |
IBStyles := Map() | |
IBStyles["slider"] := [ [0xFF1F1F1F,, 0xFFF7F7F7, 0, 0xFF1F1F1F, 1] ; normal | |
, [0x803C3C3C,, 0xFFF7F7F7, 0, 0x803C3C3C, 1] ; hover | |
, [0x8075768F,, 0xFFF7F7F7, 0, 0x8075768F, 1] ; pressed | |
, [0x806265A2,, 0xFFF7F7F7, 0, 0x806265A2, 1] ] ; disabled (default) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires AutoHotkey v2.0 | |
#DllLoad "GdiPlus.dll" | |
#DllLoad "shlwapi.dll" | |
s := Map("w", 800, "h", 600, "a", 0, "b", 0, "hue", 0, "x0", 0, "x1", 0, "y1", 0, "y2", 0) | |
NumPut("UInt", 1, SI := Buffer(24, 0)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.WINDOWS 10 ENTERPRISE N | |
todo todo todo | |
.UNZIP ISO | |
-> | |
.RUN .PS1 SCRIPT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; GLOBAL SETTINGS =============================================================================================================== | |
#NoEnv | |
#SingleInstance Force | |
#NoTrayIcon | |
SetBatchLines -1 | |
global app := { name: "NvAPI_Debug", version: "2016.375.00025", author: "jNizM", licence: "MIT" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; GLOBAL SETTINGS =============================================================================================================== | |
#NoEnv | |
#SingleInstance Force | |
SetBatchLines -1 | |
; GUI =========================================================================================================================== | |
Gui, +LastFound +hwndhMyGUI | |
Gui, Margin, 0, 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; =============================================================================================================================== | |
; Title .........: ProcessExplorer | |
; AHK Version ...: 1.1.23.05 x64 Unicode | |
; Win Version ...: Windows 10 Professional - x64 | |
; Description ...: Log Remote Session Information | |
; Version .......: v0.07 Beta | |
; Modified ......: 2016.04.20-1653 | |
; Author(s) .....: jNizM | |
; =============================================================================================================================== | |
;@Ahk2Exe-SetName ProcessExplorer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://www.exploit-monday.com/2013/06/undocumented-ntquerysysteminformation.html | |
// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
enum _SYSTEM_INFORMATION_CLASS | |
{ | |
SystemBasicInformation = 0x0000, | |
SystemProcessorInformation = 0x0001, | |
SystemPerformanceInformation = 0x0002, | |
SystemTimeOfDayInformation = 0x0003, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; License: Unlicense (http://unlicense.org/) | |
/* | |
* Function DropBox.GetPath() | |
* | |
* Parameters | |
* Account: can be "personal" or "business" (personal if omitted) | |
* | |
* Return Values | |
* if the function succeeds ==> PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; http://ahkscript.org/boards/viewtopic.php?f=17&t=9057 | |
; 2015-07-30 10:52 | |
; TODO ========================================================================================================================== | |
; - add child | |
; GLOBAL SETTINGS =============================================================================================================== | |
#Warn | |
#NoEnv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; http://ahkscript.org/boards/viewtopic.php?f=7&t=8846 | |
; https://dl.dropboxusercontent.com/u/186419968/Scripte/Gui/Gui_Draw_Line.png | |
; GLOBAL SETTINGS =============================================================================================================== | |
#Warn | |
#NoEnv | |
#SingleInstance Force | |
SetBatchLines -1 |
NewerOlder