Stop-Process -Name "Adobe Desktop Service" -force
Get-Process | Where-Object { $_.Path -eq "C:\Program Files\Common Files\Adobe\Creative Cloud Libraries\CCLibrary.exe" } | Stop-Process -Force
rem --------------------------------------------------------------------------- | |
rem MY ULTIMATE WINDOWS 11 CUSTOMIZATION SCRIPT | |
rem --------------------------------------------------------------------------- | |
rem Tested on Windows 11 IoT Enterprise LTSC 24H2 Build 26100.2033 | |
rem Most of these hacks require signing out and in again. | |
rem ___ | |
rem Explanation of registry flags: | |
rem /f = Overwrite | |
rem /d = Assigns the specified data to the registry value. |
{ | |
"PresetList": [ | |
{ | |
"AlignAVStart": false, | |
"AudioCopyMask": [ | |
"copy:aac" | |
], | |
"AudioEncoderFallback": "av_aac", | |
"AudioLanguageList": [], | |
"AudioList": [ |
📂 Projects | |
├── 📂 Project_A | |
│ ├── 📁 Documentation | |
│ │ ├── 📄 Readme.md | |
│ │ ├── 📄 Project_Spec.pdf | |
│ │ └── 📄 Changelog.txt | |
│ ├── 📁 Source_Code | |
│ │ ├── 📄 main.py | |
│ │ ├── 📁 modules | |
│ │ │ ├── 📄 module1.py |
import csv | |
import html | |
def csv_to_html_bookmarks(csv_file_path, html_file_path): | |
header = '''<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<!-- This is an automatically generated file. | |
It will be read and overwritten. | |
DO NOT EDIT! --> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<TITLE>Bookmarks</TITLE> |
<# | |
.SYNOPSIS | |
This script blocks multiple programs by adding them to the Windows Firewall both as inbound and outbound rules. | |
It also checks if a rule is already made. If it exists it will remove it and replace it with the new. | |
.NOTES | |
1. List of the programs you want to block in Windows Firewall in $programs. | |
2. Remember quotation marks and a comma at the last program in the list. | |
3. You can change the rule names by changing ruleNameInbound and ruleNameOutbound. |
<?xml version="1.0" encoding="utf-8"?> | |
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"> | |
<!-- | |
Selects Windows 11 Pro version with a generic key. | |
Step 1: You have to select which drive to install on. This is a good thing so that Windows does not wipe your drives randomly. | |
Step 2: Boots into "Who's going to use this device?". You jst enter a username and a password (you can skip the password by leaving it blank). | |
Then boots into the user account. | |
--> | |
<settings pass="offlineServicing"></settings> | |
<settings pass="windowsPE"> |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Script to generate GIFs from PNG sequences, video files, or folders containing PNGs. | |
Requirements: | |
- FFmpeg and Gifski in PATH. | |
Usage: | |
1. Drag and drop files/folders onto this script. | |
2. Follow the on-screen instructions. |
ffmpeg -i %input% -vn -filter_complex amix=inputs=2:duration=longest -ac 2 -c:a libfdk_aac -cutoff 20000 -afterburner 1 -vbr 0 output.m4a |
for ($i=1; $i -le 34; $i++){$out = new-object byte[] 1073742000; (new-object Random).NextBytes($out);[IO.File]::WriteAllBytes("random_data_file$i.txt", $out)} |