Firmwaredateien:
RIKA_a_017_229_Application_PARO_V2.29.585.12.bin
RIKA_d_017_229_001_TOUCH_PARO.BIN
RIKA_g_ImageVersion202.bin
RIKA_r_017_229_ComponentTest_PARO_V2.29.243.02.bin
RIKA_t_TouchApplication_V2.29.534.04.bin
AutoDatum = CALENDARAUTO() | |
Jahr Y = YEAR (AutoDatum[Date]) | |
JahrMonat = YEAR (AutoDatum[Date]) * 100 + MONTH( AutoDatum[Date]) | |
JahrKW = YEAR (AutoDatum[Date]) * 100 + WEEKNUM(AutoDatum[Date], 21) | |
# DISKPART> | |
list disk | |
list volume | |
select volume X | |
delete volume | |
list volume |
$webmDirectory = Get-Location | |
# Get all *.webm files in the current directory | |
$webmFiles = Get-ChildItem -Path $webmDirectory -Filter *.webm | |
# Loop through each *.webm file and convert it to *.gif | |
foreach ($webmFile in $webmFiles) { | |
# Build the ffmpeg command | |
$ffmpegCommand = "ffmpeg.exe -i `"$($webmFile.FullName)`" -vf `"fps=15,scale=498:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse`" -loop 1 `"$($webmFile.FullName).gif`"" |
function Get-ConfigurationfromJSON { | |
<# | |
.SYNOPSIS | |
json array config file | |
.DESCRIPTION | |
use a json config file | |
.EXAMPLE | |
# $config = Get-Configuration -match "2" -config .\mandant.json | |
# $config.ConfigValue | |
#> |
# rename files recurse to leading 2 digit zeros: | |
# from "1 - name.mp3" | |
# to 01 - name.mp3 | |
$path = Get-Location | |
$files = Get-ChildItem -Path $path -Filter "*.mp3" -recurse | Sort-Object | |
foreach ($file in $files) { |
Firmwaredateien:
RIKA_a_017_229_Application_PARO_V2.29.585.12.bin
RIKA_d_017_229_001_TOUCH_PARO.BIN
RIKA_g_ImageVersion202.bin
RIKA_r_017_229_ComponentTest_PARO_V2.29.243.02.bin
RIKA_t_TouchApplication_V2.29.534.04.bin
# CREDIT: | |
# CODE SAMPLE FROM: https://github.com/EsOsO/RRDTool | |
# GERMAN Get-Counter Values | |
# Database | |
$DataSource1 = New-RRDDataSource -Name cpu_kernel -DataSourceType GAUGE -Heartbeat 120 -Min 0 -Max 100 | |
$DataSource2 = New-RRDDataSource -Name cpu_user -DataSourceType GAUGE -Heartbeat 120 -Min 0 -Max 100 | |
$DataSource3 = New-RRDDataSource -Name cpu_queue -DataSourceType GAUGE -Heartbeat 120 -Min 0 |
#!/usr/bin/perl | |
# | |
# place in /opt/otrs/bin/cgi-bin/azureadenv.pl | |
# call https://otrs.example.com/otrs/azureadenv.pl | |
# tested in #otrs6 #centos7 | |
# reference: https://gist.github.com/josy1024/84853e1a72f5631f697ee324b93264fe | |
### | |
### printenv -- demo CGI program which just prints its environment | |
### |
# -- | |
# Copyright (C) 2001-2020 OTRS AG, https://otrs.com/ | |
# -- | |
# This software comes with ABSOLUTELY NO WARRANTY. For details, see | |
# the enclosed file COPYING for license information (GPL). If you | |
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt. | |
# -- | |
# $Self->{'AuthModule'} = 'Kernel::System::Auth::AzureADAuth'; | |
# SOURCE: copy from HTTPBasicAuth.pm from OTRS6 | |
# Place FILE IN: /opt/otrs/Kernel/System/Auth |