Skip to content

Instantly share code, notes, and snippets.

@Ragnar-F
Ragnar-F / afgc.user.js
Last active November 25, 2023 19:33
Userscript for AutoHotkey Forum German Codeboxes
// ==UserScript==
// @name AutoHotkey Forum German Codeboxes
// @namespace https://www.autohotkey.com/boards/*
// @version 0.4
// @description Replaces english doc links in the codeboxes with the german counterparts
// @author Ragnar-F
// @match https://www.autohotkey.com/boards/*
// @grant none
// ==/UserScript==
@Ragnar-F
Ragnar-F / update_german_help_files.ahk
Last active August 1, 2023 05:09
Lädt die neuesten deutschen Hilfedateien für AutoHotkey herunter und ersetzt die Hilfedateien im Installationsverzeichnis von AutoHotkey. Eine angepasste Version von https://www.autohotkey.com/boards/viewtopic.php?f=10&t=34
#SingleInstance ignore
#NoEnv
if not A_IsAdmin {
Run *RunAs "%A_ScriptFullPath%",, UseErrorLevel
if ErrorLevel {
MsgBox, 53, % "Adminrechte benötigt", % "Du musst den Updater mit Adminrechten starten, damit er richtig funktioniert!"
IfMsgBox, Retry
Reload
else