There are 2 registry keys you need to remove.
HKEY_CLASSES_ROOT\Directory\Background\shell\AnyCode
HKEY_CLASSES_ROOT\Directory\shell\AnyCode
using System.Collections.Concurrent; | |
using System.Text.Json; | |
using System.Text.Json.Serialization; | |
using System.Xml.Linq; | |
var path = @"output.json"; | |
var bytes = File.ReadAllText(path); | |
var packages = JsonSerializer.Deserialize<DotnetCliListPackages>(bytes); | |
ArgumentNullException.ThrowIfNull(packages); | |
var licenses = new ConcurrentBag<DotnetLicense>(); |
#!/bin/bash | |
set -euo pipefail | |
terraform graph -type=apply | docker run --rm -i --name terraform-graph-beautifier ghcr.io/pcasteran/terraform-graph-beautifier:latest-linux --embed-modules=false --output-type=cyto-html > config1.html |
using System; | |
using System.Linq; | |
using System.Text; | |
using Amazon; | |
using Amazon.Runtime; | |
using Amazon.Runtime.CredentialManagement; | |
using Amazon.Runtime.Internal; | |
using Amazon.Runtime.Internal.Auth; | |
using Amazon.Runtime.Internal.Util; | |
using Npgsql; |
mkdir ./run && cd ./run
# copy files into directory...
npm install octokit
node ./app.js
#/bin/bash | |
set -euo pipefaiil | |
echo "| Name | Path | Schedule (UTC) |" | |
echo "| ---- | ---- | ---- |" | |
json=$(gh workflow list --json name,path,state --limit 300) | |
echo "$json" | jq -c '.[] | select(.state == "active") | {name: .name, path: .path}' | sort | while read -r item; do | |
name=$(echo "$item" | jq -r '.name') | |
path=$(echo "$item" | jq -r '.path') | |
if [[ ! -f "$path" ]]; then continue; fi |
#!/bin/bash | |
for nsfull in $(kubectl get ns -o name | grep -v -E "kube.*"); do | |
ns=$(echo $nsfull | cut -d "/" -f 2) | |
deploy="" | |
echo "# Running $ns" | |
for deploy in $(kubectl get deploy -o name | grep -E ".*"); do | |
if [[ "$deploy" == "" ]]; then | |
continue | |
fi | |
kubectl rollout restart $deploy -n $ns |
# ./aws/versions.tf | |
terraform { | |
required_providers { | |
aws = { | |
version = "= 5.55.0" | |
source = "hashicorp/aws" | |
} | |
} | |
required_version = "~> 1.8.0" # use latest 1.8.x | |
# required_version = "= 1.8.4" # use 1.8.4 |