View Minecraft Backup.bat
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
@echo off | |
::set async mode | |
setlocal EnableDelayedExpansion | |
::check for input | |
if !heartbeat! equ 1 ( | |
goto initial_Section | |
) else ( | |
goto no_input | |
) |
View mc 1.19.2 modded.bat
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
@echo off | |
:initial_Section | |
::var defaults | |
set debugmode=0 | |
::0 = Normally | |
::1 = Normally + Debug Skip Intro | |
::2 = Normally + Backup Debug Skip Intro | |
::3 = Only Backup Normally | |
::4 = Only Backup + Debug Skip Intro | |
::5 = Backup + delete old date file |
View sinusbot_update.sh
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
#!/bin/bash | |
# SinusBot installer by Philipp Eßwein - DAThosting.eu philipp.esswein@dathosting.eu | |
# Vars | |
MACHINE=$(uname -m) | |
Instversion="1.5" | |
USE_SYSTEMD=true |
View Tasklist PID Check.bat
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
@echo off | |
:initial_Section | |
::set async mode | |
setlocal EnableDelayedExpansion | |
:start_Section | |
::Process looking for: cmd as admin named "Local Date Time Generator" | |
for /f "TOKENS=2" %%a in ('tasklist /nh /fi "WINDOWTITLE eq Administrator: Local Date Time Generator"') do Set PID=%%a | |
if %PID% gtr 0 ( |
View Fileinfo UI.bat
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
@echo off | |
:initial_Section | |
::set UI | |
mode con lines=21 cols=100 | |
title Fileinfo Debugger | |
color 0a | |
set heartbeat=1 | |
::important for Script working properly |
View Fileinfo Script.bat
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
@echo off | |
:initial_Section | |
::set async mode | |
setlocal EnableDelayedExpansion | |
::check for input | |
if !heartbeat! equ 1 ( | |
goto start_Section | |
) else ( | |
goto no_input |
View ldt.bat
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
@echo off | |
:initial_Section | |
::set async mode | |
setlocal EnableDelayedExpansion | |
::var | |
set templates="C:\_templates\_ldt" | |
set title=Local Date Time Generator | |
set cmd_width=50 |
View 7dtd-backup.bat
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
@echo off | |
::set async mode | |
setlocal EnableDelayedExpansion | |
::check for input | |
if !heartbeat! equ 1 ( | |
goto initial_Section | |
) else ( | |
goto no_input | |
) |
View 7dtd-server.bat
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
@echo off | |
:initial_Section | |
::var defaults | |
set debugmode=0 | |
::0 = Normally | |
::1 = Normally + Debug Skip Intro | |
::2 = Normally + Backup Debug Skip Intro | |
::3 = Only Backup Normally | |
::4 = Only Backup + Debug Skip Intro | |
::5 = Backup + delete old date file |