update packages
sudo apt update
go to tmp folder
cd /tmp/
*PPD-Adobe: "4.3" | |
*cupsMandatory: attributes-charset attributes-natural-language printer-uri | |
*% PPD created by ipp2ppd (v2:Feb 1 2018) | |
*FormatVersion: "4.3" | |
*FileVersion: "2.0" | |
*LanguageVersion: English | |
*LanguageEncoding: ISOLatin1 | |
*PSVersion: "(3010.000) 0" | |
*LanguageLevel: "3" | |
*FileSystem: False |
# Load the necessary user32.dll functions | |
Add-Type @" | |
using System; | |
using System.Runtime.InteropServices; | |
public class User32 { | |
[DllImport("user32.dll")] | |
[return: MarshalAs(UnmanagedType.Bool)] | |
public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect); | |
[DllImport("user32.dll")] |
#!/bin/bash | |
############################################################ | |
# Script META # | |
############################################################ | |
MetaName="secs.sh" | |
MetaDesc="Add publicly accessible GitHub user SSH public keys to 'authorized_keys'" | |
MetaVersion="2023.6.1" | |
# Some functions may require PS v6 or later - so let`s install it first | |
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" | |
# ------------------------------------------------------------ | |
# add local service account | |
$username = "svc_passwordsecure" | |
$password = Read-Host -AsSecureString | |
New-LocalUser -Name $username -Password $password -FullName "Netwrix Password Secure" -Description "Service account" | |
Add-LocalGroupMember -Group Administrators -Member $username |
version: '3.7' | |
services: | |
mailpit-server: | |
image: axllent/mailpit:latest | |
container_name: mailpit-server | |
hostname: mailpit-server | |
restart: unless-stopped | |
volumes: |