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
################################################################################################################ | |
### ### | |
### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ### | |
### ### | |
################################################################################################################ | |
<# | |
.NOTES | |
Author : Chris Titus @christitustech | |
Runspace Author: @DeveloperDurp | |
GitHub : https://github.com/ChrisTitusTech |
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
param ( | |
[Parameter(Mandatory=$false)] | |
[string]$ExampleParam = "default", | |
[string[]]$StringArrayParam = @("default1", "default2"), | |
[int]$IntParam = 42, | |
[bool]$BoolParam = $true | |
) |
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 | |
# Check if the system is Ubuntu | |
if [[ -f /etc/os-release ]]; then | |
. /etc/os-release | |
if [[ "$ID" == "ubuntu" ]]; then | |
echo "Ubuntu detected: $PRETTY_NAME" | |
else | |
echo "This script is only for Ubuntu systems." | |
exit 1 |
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
<# | |
.SYNOPSIS | |
This script searches for certificates with a specific description pattern, exports them, installs them in WSL, and checks the response using curl. | |
.DESCRIPTION | |
The script searches for certificates with a specific description pattern. It exports each certificate, installs them in WSL, and checks the response using curl. If the response is not correct, it tries the next certificate from the results. If the list is exhausted and WSL still responds with an incorrect answer, it throws an error. | |
.PARAMETER DescriptionPattern | |
The pattern to search for in the certificate description. Default is "CA". |
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
<# | |
.SYNOPSIS | |
This script searches for certificates by thumbprint or issuer, exports them to Base-64 encoded .crt files, and optionally installs them in WSL. | |
.DESCRIPTION | |
The script searches for certificates with the specified thumbprints or issuers. If found, it exports the certificates to Base-64 encoded .crt files. The script can also install the certificates in WSL if the --install parameter is provided. | |
.PARAMETER Thumbprint | |
The thumbprints of the certificates to search for. Default is an array of predefined thumbprints. |
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
<# | |
.SYNOPSIS | |
This PowerShell script ensures it is run with administrator privileges, then installs the necessary Visual C++ Redistributables and DirectX 9 End-User Runtime silently. It provides progress updates throughout the installation process and handles errors gracefully. | |
.DESCRIPTION | |
This script performs the following tasks: | |
- Checks if it is run with administrator privileges and relaunches with elevated permissions if necessary. | |
- Downloads and installs the latest Visual C++ Redistributables from a GitHub repository. | |
- Downloads and installs the DirectX 9 End-User Runtime from Microsoft's official website. | |
- Provides verbose logging for detailed output, including the URLs being accessed, the files being downloaded, and the installation progress. |
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
<# | |
.SYNOPSIS | |
This PowerShell script verifies the status of Zscaler by checking if it is installed, if the required services are running, if the necessary registry entries exist and have the correct values, and by making HTTP requests to verify Zscaler authentication. | |
.DESCRIPTION | |
The Test-ZscalerStatus function performs the following checks: | |
- If Zscaler is installed by querying the registry. | |
- If the required Zscaler services are installed and running. | |
- If the necessary registry entries exist and have the correct values. | |
- Makes HTTP requests to ip.zscaler.com to verify Zscaler authentication. |
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
<# | |
.SYNOPSIS | |
This script automates the detection of an NVIDIA GPU, retrieves the latest NVIDIA App installer (either Enterprise or Public edition), and facilitates its download and installation with customizable parameters. | |
.DESCRIPTION | |
This script efficiently manages the process of downloading and installing the latest NVIDIA App by: | |
- Scraping the NVIDIA App webpage to locate the most recent installer. | |
- Verifying the existence and size of the installer file locally. | |
- Confirming the presence of an NVIDIA GPU on the machine prior to installation. | |
- Supporting a dry run mode to simulate operations without actual downloading or installation. | |
- Allowing the user to choose between the Enterprise and Public editions of the NVIDIA App. |
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
The MIT License (MIT) | |
Copyright (c) 2015 Felix Hummel | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | |
of the Software, and to permit persons to whom the Software is furnished to do | |
so, subject to the following conditions: |
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
all: alfa.pdf | |
alfa.pdf: alfa.latex | |
latexmk -pdf $< | |
alfa.png: alfa.pdf | |
convert -density 150 -flatten $< $@ | |
clean: alfa.latex | |
latexmk -CA $< |