API documentation of noip.com: https://www.noip.com/integrate/request
import base64
auth_str = 'your-user:your-password'
byte_str = auth_str.encode('ascii')
auth_b64 = base64.b64encode(byte_str)
API documentation of noip.com: https://www.noip.com/integrate/request
import base64
auth_str = 'your-user:your-password'
byte_str = auth_str.encode('ascii')
auth_b64 = base64.b64encode(byte_str)
The following programs need to be downloaded:
Equalizer APO - A system-wide equalizer for Windows 7 / 8 / 8.1 / 10 / 11
https://sourceforge.net/projects/equalizerapo/
Peace Equalizer, interface Equalizer APO
https://sourceforge.net/projects/peace-equalizer-apo-extension/
I want to run a scheduler task using an sMSA user. The user can only be used on the destination machine and the password is managed by the domain.
Standalone managed service accounts (sMSAs) are managed domain accounts that help secure services running on a server.
This procedur describes how an sMSA user is created and how to assign it to a scheduler task.
Import-Module ActiveDirectory
#requires -RunAsAdministrator | |
# Note: Since the *-ScheduledTask* cmdlets are implemented as | |
# CDXML-based *script* modules, they only see preference vars. | |
# in the *global* scope - see https://github.com/PowerShell/PowerShell/issues/4568 | |
$prevEaPref = $global:ErrorActionPreference | |
$global:ErrorActionPreference = 'Stop' | |
# Setup the scheduled task: |
I was trying to run TrackGpo from the Windows Task Scheduler by executing the following:
Program/Script: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Parameter: -ExecutionPolicy Bypass -Command "Invoke-GpoTracking -GpoRepo C:\GPO_Repo -WorkingDir C:\GPO_WorkingDir"
Running the task resulted in the following error:
Task Scheduler successfully completed task "\Backup GPOs" , instance "{300bfea1-ba81-4a4a-9350-205a9fd27d76}" , action "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" with return code 2147942401.
#!/usr/bin/env python | |
""" | |
Adds a printing margin to pdf files by scaling down the content and moving it to the center. | |
Scale factor must be adapted to the needs. | |
Usage: pdfmargin.py file1.pdf file2.pdf ... | |
""" | |
import os | |
import sys |
# ---------------------------------------------------------------------------------------- | |
# Restoring the database of the development system with a backup from the live system. | |
# Using Trivadis BasEnv as standardization tool for setting Oracle environment variables. | |
# ---------------------------------------------------------------------------------------- | |
# 1. Stop the database. | |
TYPE (Cluster|DG) : SID/PROCESS STATUS HOME [2021-03-18 10:01:34] | |
---------------------------------------------------------------------------------------- | |
Dummy rdbms : OraDB19Home1 n/a D:\app\oracle\product\19.0.0a |
#!/bin/bash | |
# Author: flandersen | |
# Date: 29.03.2020 | |
# https://gist.github.com/flandersen/6d33c609de80247c9059bf8c3e2ade05 | |
# | |
# Backups the repositories to a backup directory and syncronizes | |
# the backup dir to a backup server using rsync. | |
# | |
# Example usage: |