This file contains hidden or 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
`[24Jan2022 22:08:10.271] [User Authenticator #3/INFO] [net.minecraft.network.login.ServerLoginNetHandler/]: UUID of player EvilGrin is edfe398d-24c4-47ef-bca2-a68639e49ec9 | |
[24Jan2022 22:08:11.842] [Server thread/INFO] [com.dynamic_view.DynView/]: Mean tick: 22ms increasing chunk view distance to: 9 | |
[24Jan2022 22:08:15.223] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: null | |
Index: 2 | |
Listeners: | |
0: NORMAL | |
1: ASM: class com.vulp.druidcraft.events.EventHandler onPlayerWakeUp(Lnet/minecraftforge/event/entity/player/PlayerWakeUpEvent;)V | |
2: ASM: class net.yezon.theabyss.procedures.SaveHomeLocationProcedure$GlobalTrigger onEntityEndSleep(Lnet/minecraftforge/event/entity/player/PlayerWakeUpEvent;)V | |
3: ASM: class net.yezon.theabyss.procedures.SleepEventProcedure$GlobalTrigger onEntityEndSleep(Lnet/minecraftforge/event/entity/player/PlayerWakeUpEvent;)V | |
4: ASM: class net.yezon.theabyss.procedures.SleepEvent2Procedure$GlobalTrigger onEntityEndSleep(Lnet/minec |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
[24/01/2022 21:48:12 PM] Organising filesystem | |
[24/01/2022 21:48:12 PM] ATLauncher Version: 3.4.10.15 | |
[24/01/2022 21:48:12 PM] App Arguments: [] | |
[24/01/2022 21:48:12 PM] JVM Arguments: ["-Djna.nosys\u003dtrue","-Djava.net.preferIPv4Stack\u003dtrue","-Dawt.useSystemAAFontSettings\u003don","-Dswing.aatext\u003dtrue"] | |
[24/01/2022 21:48:12 PM] Java Version: Java 8 (1.8.0_311) | |
[24/01/2022 21:48:12 PM] Java Path: C:\Program Files\Java\jre1.8.0_311 | |
[24/01/2022 21:48:12 PM] 64 Bit Java: true | |
[24/01/2022 21:48:12 PM] RAM Available: 32723MB | |
[24/01/2022 21:48:12 PM] Launcher Directory: **USERSDIR** | |
[24/01/2022 21:48:12 PM] GPU: Citrix Indirect Display Adapter (Citrix Systems Inc. (0x5853)) DriverVersion=12.40.44.247 0MB VRAM |
This file contains hidden or 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
[08May2021 00:00:00.096] [Server thread/INFO] [tombstone/]: All players have been successfully backed up | |
[08May2021 00:04:09.852] [RCON Listener #2/INFO] [net.minecraft.network.rcon.RConThread/]: Thread RCON Client /127.0.0.1 started | |
[08May2021 00:04:09.991] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: [Rcon: Reloaded the whitelist] | |
[08May2021 00:04:09.995] [RCON Client /127.0.0.1 #5/INFO] [net.minecraft.network.rcon.ClientThread/]: Thread RCON Client /127.0.0.1 shutting down | |
[08May2021 00:13:08.063] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: johmanni has made the advancement [Floral Arrangements] | |
[08May2021 00:13:08.065] [Server thread/INFO] [minecolonies/]: WorkOrderBuild at location BlockPos{x=-466, y=42, z=-303} is using schematics/cave/florist1 instead of schematics/cave/florist1 | |
[08May2021 00:13:21.190] [Server thread/INFO] [minecolonies/]: WorkOrderBuild at location BlockPos{x=-466, y=42, z=-303} is using schematics/cave/florist2 instead of schema |
This file contains hidden or 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
#Import AD module - Installed as part of Windows Server Admin Tools | |
Import-Module ActiveDirectory | |
#Email settings | |
$To = @("IT Alerts <[email protected]>") | |
$Subject = "Inactive AD Computer Accounts" | |
$SmtpServer = "mail.company.com" | |
$From = "SCCM <[email protected]>" |
This file contains hidden or 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 | |
VG_NAME="vg0" | |
SNAPSHOT_SIZE="+2G" | |
BACKUP_LOCATION="/backups" | |
DAYSTOKEEP=7 | |
for lv in $(lvs --noheadings --nosuffix --aligned --separator , -o lv_name,lv_attr | grep -v ,s | cut -d, -f1) | |
do | |
LV_SIZE="$(lvs --units m --noheadings --nosuffix --aligned --separator , -o lv_name,lv_size | grep "$lv" | cut -d',' -f2 | cut -d. -f 1)" # LV size in MB |
This file contains hidden or 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
## SQL Powershell Module | |
Import-Module "sqlps" -DisableNameChecking | |
## AD Powershell Module | |
import-module "ActiveDirectory" -DisableNameChecking | |
## Uncomment for Verbose output | |
# $VerbosePreference = "Continue" |