Skip to content

Instantly share code, notes, and snippets.

View emilwojcik93's full-sized avatar

Emil Wójcik emilwojcik93

View GitHub Profile
@emilwojcik93
emilwojcik93 / new-winutil.ps1
Last active March 1, 2025 23:50
new-winutil
################################################################################################################
### ###
### 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
@emilwojcik93
emilwojcik93 / admin-script.ps1
Last active March 1, 2025 12:39
admin-script
param (
[Parameter(Mandatory=$false)]
[string]$ExampleParam = "default",
[string[]]$StringArrayParam = @("default1", "default2"),
[int]$IntParam = 42,
[bool]$BoolParam = $true
)
@emilwojcik93
emilwojcik93 / JaKooLit_Ubuntu-Hyprland.sh
Created February 27, 2025 22:14
Script to run JaKooLit_Ubuntu-Hyprland
#!/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
@emilwojcik93
emilwojcik93 / Auto-Install-CertificatesInWSL.ps1
Last active March 17, 2025 13:51
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 done and WSL still responds with an incorrect answer, it throws an error.
<#
.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".
@emilwojcik93
emilwojcik93 / Manage-Certificates.ps1
Last active February 11, 2025 16:26
This script searches for a certificate by thumbprint or issuer, exports it to a Base-64 encoded .crt file, and optionally installs it in WSL.
<#
.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.
@emilwojcik93
emilwojcik93 / Install-VCRedistAndDirectX.ps1
Last active February 2, 2025 21:55
PowerShell script to ensure admin privileges, install Visual C++ Redistributables, and silently install DirectX 9 End-User Runtime with progress updates.
<#
.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.
@emilwojcik93
emilwojcik93 / Test-ZscalerStatus.ps1
Created January 10, 2025 11:03
This PowerShell script verifies Zscaler status by checking installation, required services, registry entries, and authentication via HTTP requests. It ensures Zscaler is operational and authenticated. For more details, visit Zscaler documentation and community links.
<#
.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.
@emilwojcik93
emilwojcik93 / Install-NvidiaApp.ps1
Last active March 13, 2025 16:02
Install-NvidiaApp
<#
.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.
@emilwojcik93
emilwojcik93 / LICENSE.txt
Created May 12, 2021 21:44 — forked from felixhummel/LICENSE.txt
openWRT automatic Wake on LAN
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:
all: alfa.pdf
alfa.pdf: alfa.latex
latexmk -pdf $<
alfa.png: alfa.pdf
convert -density 150 -flatten $< $@
clean: alfa.latex
latexmk -CA $<