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
$vm_name = "shred" | |
$iso_path = "C:\...\shredos-2021.08.2_23_x86-64_0.34_20221231.iso" | |
$directory = "C:\...\VirtualBox VMs\shred\vmdks" | |
# Stop the virtual machine if it's running | |
if ((VBoxManage.exe showvminfo $vm_name | Select-String 'State' | Select-String 'running') -ne $null) { | |
VBoxManage.exe controlvm $vm_name poweroff -forc | |
} | |
# Remove all existing VMDK files from the directory |
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
7zip|24.7.0 | |
7zip.install|24.7.0 | |
altdrag|1.461.0 | |
androidstudio|2024.1.1.11 | |
autodesk-fusion360|2.0.19440 | |
bitwarden|2024.8.1 | |
brave|1.67.123 | |
chocolatey|2.3.0 | |
chocolatey-compatibility.extension|1.0.0 | |
chocolatey-core.extension|1.4.0 |
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
# Chocolatey Package Export Script | |
# Get the list of installed Chocolatey packages | |
$chocoList = choco list --local-only --limit-output | |
$packageList = $chocoList -join "`n" | |
# GitHub Personal Access Token (replace with your own) | |
# https://github.com/settings/tokens?type=beta | |
$token = "xxxxx" |
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
groups: | |
- name: ProxySQL_Cluster | |
rules: | |
# Alert for cluster sync conflicts | |
- alert: ProxySQLClusterSyncConflicts | |
expr: | | |
sum by (module_name) ( | |
rate(proxysql_cluster_syn_conflict_total[5m]) | |
) > 0 | |
for: 5m |
OlderNewer